All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Rik van Riel <riel@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
	Andrea Arcangeli <aarcange@redhat.com>,
	Linux Memory Management List <linux-mm@kvack.org>,
	Mel Gorman <mel@csn.ul.ie>, Thomas Gleixner <tglx@linutronix.de>,
	Linux kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: question on NUMA page migration
Date: Sun, 21 Oct 2012 14:30:08 +0200	[thread overview]
Message-ID: <20121021123008.GA19229@gmail.com> (raw)
In-Reply-To: <5082CB18.6060300@redhat.com>


* Rik van Riel <riel@redhat.com> wrote:

> On 10/19/2012 09:23 PM, Ingo Molnar wrote:
> >
> >* Rik van Riel <riel@redhat.com> wrote:
> >
> >>On 10/19/2012 01:53 PM, Peter Zijlstra wrote:
> >>>On Fri, 2012-10-19 at 13:13 -0400, Rik van Riel wrote:
> >>
> >>>>Another alternative might be to do the put_page inside
> >>>>do_prot_none_numa().  That would be analogous to do_wp_page
> >>>>disposing of the old page for the caller.
> >>>
> >>>It'd have to be inside migrate_misplaced_page(), can't do before
> >>>isolate_lru_page() or the page might disappear. Doing it after is
> >>>(obviously) too late.
> >>
> >>Keeping an extra refcount on the page might _still_
> >>result in it disappearing from the process by some
> >>other means, in-between you grabbing the refcount
> >>and invoking migration of the page.
> >>
> >>>>I am not real happy about NUMA migration introducing its own
> >>>>migration mode...
> >>>
> >>>You didn't seem to mind too much earlier, but I can remove it if you
> >>>want.
> >>
> >>Could have been reviewing fatigue :)
> >
> >:-)
> >
> >>And yes, it would have been nice to not have a special
> >>migration mode for sched/numa.
> >>
> >>Speaking of, when do you guys plan to submit a (cleaned up)
> >>version of the sched/numa patch series for review on lkml?
> >
> >Which commit(s) worry you specifically?
> 
> One of them would be the commit that introduces MIGRATE_FAULT.

MIGRATE_FAULT is still used.

> Adding it in one patch, and removing it into a next just makes
> things harder on the reviewers.

Yes.

> 03a040f6c17ab81659579ba6abe267c0562097e4

It's still used:

comet:~/tip> git grep MIGRATE_FAULT
include/linux/migrate_mode.h: * MIGRATE_FAULT called from the fault path to migrate-on-fault for mempolicy
include/linux/migrate_mode.h:	MIGRATE_FAULT,
mm/migrate.c:	if (mode != MIGRATE_ASYNC && mode != MIGRATE_FAULT) {
mm/migrate.c:	if (mode == MIGRATE_FAULT) {
mm/migrate.c:		 * MIGRATE_FAULT has an extra reference on the page and
mm/migrate.c:	if ((mode == MIGRATE_ASYNC || mode == MIGRATE_FAULT) && head &&
mm/migrate.c:	if (mode != MIGRATE_ASYNC && mode != MIGRATE_FAULT)
mm/migrate.c:		if (!force || mode == MIGRATE_ASYNC || mode == MIGRATE_FAULT)
mm/migrate.c:	ret = __unmap_and_move(page, newpage, 0, 0, MIGRATE_FAULT);

> If the changesets with NUMA syscalls are still in your tree's 
> history, they should not be submitted as part of the patch 
> series, either.

No, the syscalls have not been there for quite some time.

If you have trouble with any specific commit, please quote the 
specific SHA1 so that I can have a look and resolve any specific 
concerns.

Otherwise, lets continue with the integration?

Thanks,

	Ingo

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Ingo Molnar <mingo@kernel.org>
To: Rik van Riel <riel@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
	Andrea Arcangeli <aarcange@redhat.com>,
	Linux Memory Management List <linux-mm@kvack.org>,
	Mel Gorman <mel@csn.ul.ie>, Thomas Gleixner <tglx@linutronix.de>,
	Linux kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: question on NUMA page migration
Date: Sun, 21 Oct 2012 14:30:08 +0200	[thread overview]
Message-ID: <20121021123008.GA19229@gmail.com> (raw)
In-Reply-To: <5082CB18.6060300@redhat.com>


* Rik van Riel <riel@redhat.com> wrote:

> On 10/19/2012 09:23 PM, Ingo Molnar wrote:
> >
> >* Rik van Riel <riel@redhat.com> wrote:
> >
> >>On 10/19/2012 01:53 PM, Peter Zijlstra wrote:
> >>>On Fri, 2012-10-19 at 13:13 -0400, Rik van Riel wrote:
> >>
> >>>>Another alternative might be to do the put_page inside
> >>>>do_prot_none_numa().  That would be analogous to do_wp_page
> >>>>disposing of the old page for the caller.
> >>>
> >>>It'd have to be inside migrate_misplaced_page(), can't do before
> >>>isolate_lru_page() or the page might disappear. Doing it after is
> >>>(obviously) too late.
> >>
> >>Keeping an extra refcount on the page might _still_
> >>result in it disappearing from the process by some
> >>other means, in-between you grabbing the refcount
> >>and invoking migration of the page.
> >>
> >>>>I am not real happy about NUMA migration introducing its own
> >>>>migration mode...
> >>>
> >>>You didn't seem to mind too much earlier, but I can remove it if you
> >>>want.
> >>
> >>Could have been reviewing fatigue :)
> >
> >:-)
> >
> >>And yes, it would have been nice to not have a special
> >>migration mode for sched/numa.
> >>
> >>Speaking of, when do you guys plan to submit a (cleaned up)
> >>version of the sched/numa patch series for review on lkml?
> >
> >Which commit(s) worry you specifically?
> 
> One of them would be the commit that introduces MIGRATE_FAULT.

MIGRATE_FAULT is still used.

> Adding it in one patch, and removing it into a next just makes
> things harder on the reviewers.

Yes.

> 03a040f6c17ab81659579ba6abe267c0562097e4

It's still used:

comet:~/tip> git grep MIGRATE_FAULT
include/linux/migrate_mode.h: * MIGRATE_FAULT called from the fault path to migrate-on-fault for mempolicy
include/linux/migrate_mode.h:	MIGRATE_FAULT,
mm/migrate.c:	if (mode != MIGRATE_ASYNC && mode != MIGRATE_FAULT) {
mm/migrate.c:	if (mode == MIGRATE_FAULT) {
mm/migrate.c:		 * MIGRATE_FAULT has an extra reference on the page and
mm/migrate.c:	if ((mode == MIGRATE_ASYNC || mode == MIGRATE_FAULT) && head &&
mm/migrate.c:	if (mode != MIGRATE_ASYNC && mode != MIGRATE_FAULT)
mm/migrate.c:		if (!force || mode == MIGRATE_ASYNC || mode == MIGRATE_FAULT)
mm/migrate.c:	ret = __unmap_and_move(page, newpage, 0, 0, MIGRATE_FAULT);

> If the changesets with NUMA syscalls are still in your tree's 
> history, they should not be submitted as part of the patch 
> series, either.

No, the syscalls have not been there for quite some time.

If you have trouble with any specific commit, please quote the 
specific SHA1 so that I can have a look and resolve any specific 
concerns.

Otherwise, lets continue with the integration?

Thanks,

	Ingo

  reply	other threads:[~2012-10-21 12:30 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-19 15:53 question on NUMA page migration Rik van Riel
2012-10-19 15:53 ` Rik van Riel
2012-10-19 16:39 ` Peter Zijlstra
2012-10-19 16:39   ` Peter Zijlstra
2012-10-19 17:13   ` Rik van Riel
2012-10-19 17:13     ` Rik van Riel
2012-10-19 17:53     ` Peter Zijlstra
2012-10-19 17:53       ` Peter Zijlstra
2012-10-19 18:33       ` Rik van Riel
2012-10-19 18:33         ` Rik van Riel
2012-10-20  1:23         ` Ingo Molnar
2012-10-20  1:23           ` Ingo Molnar
2012-10-20 16:02           ` Rik van Riel
2012-10-20 16:02             ` Rik van Riel
2012-10-21 12:30             ` Ingo Molnar [this message]
2012-10-21 12:30               ` Ingo Molnar
2012-10-21  2:39 ` Ni zhan Chen
2012-10-21  2:39   ` Ni zhan Chen
2012-10-21  2:40   ` Rik van Riel
2012-10-21  2:40     ` Rik van Riel
2012-10-21 12:31     ` Ingo Molnar
2012-10-21 12:31       ` Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20121021123008.GA19229@gmail.com \
    --to=mingo@kernel.org \
    --cc=aarcange@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mel@csn.ul.ie \
    --cc=peterz@infradead.org \
    --cc=riel@redhat.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.