linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: David Rientjes <rientjes@google.com>
To: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-mm <linux-mm@kvack.org>
Subject: Re: [PATCH 2.6.24-mm1]  Mempolicy:  silently restrict nodemask to allowed nodes V3
Date: Tue, 12 Feb 2008 16:42:58 -0800 (PST)	[thread overview]
Message-ID: <alpine.DEB.1.00.0802121632170.3291@chino.kir.corp.google.com> (raw)
In-Reply-To: <1202861240.4974.25.camel@localhost>

On Tue, 12 Feb 2008, Lee Schermerhorn wrote:

> > MPOL_DEFAULT is the default system-wide policy that does not require a 
> > nodemask as a parameter.  Both the man page (set_mempolicy(2)) and the 
> > documentation (Documentation/vm/numa_memory_policy.txt) state that.
> > 
> > It makes no sense in the future to assign a meaning to a nodemask passed 
> > along with MPOL_DEFAULT.  None at all.  
> 
> Again, you're stating an opinion, to which you're entitled, or
> expressing a limitation to your clairvoyance, for which I can't fault
> you.  Indeed, I tend to agree with you on this particular point--my own
> opinion and/or lack of vision.  However, I've been burned in the past by
> just this scenario--wanting to assign meaning to something that was
> ignored--because it could break existing applications.  So, on general
> principle, I like to be fairly strict with argument checking [despite my
> natural libertarian tendencies].
> 

It's currently undefined behavior.  Neither the Linux documentation 
(Documentation/vm/numa_memory_policy.txt) nor the man page 
(set_mempolicy(2)) state the meaning of a nodemask passed with 
MPOL_DEFAULT.

The man page simply says the nodemask should be passed as NULL and the 
documentation state that MPOL_DEFAULT "does not use the optional set of 
nodes."

So what we do with that nodemask is an implementation detail that does not 
need to conform to any pre-defined API or even the possibility that one 
day it will become useful.  In the context of the documentation, it is 
logical that any nodemask that is passed with MPOL_DEFAULT is valid since 
it's not used at all.

As you know, mempolicies can already morph into being effected over a 
subset of nodes that was passed with set_mempolicy() or mbind() without 
knowledge to the user.  That requires get_mempolicy() to determine.  
Changing a non-empty nodemask passed with MPOL_DEFAULT to an empty 
nodemask because it has no logical meaning is nothing new.

> > The policy is simply the 
> > equivalent of default_policy and, as the system default, a nodemask 
> > parameter to the system default policy is wrong be definition.  
> > 
> > So, logically, we can either allow all nodemasks to be passed with a 
> > MPOL_DEFAULT policy or none at all (it must be NULL).  Empty nodemasks 
> > don't have any logical relationship with MPOL_DEFAULT.
> 
> Ah, maybe this explains our disconnect.  Internally, a NULL nodemask
> pointer specified by the application is equivalent to an empty nodemask
> is equivalent to maxnode == 0.  See get_nodes().  By the time
> mpol_check_policy() or mpol_new() get called, all they have is a pointer
> to the cleared nodemask in the stack frame of sys_set_mempolicy() or
> sys_mbind().  So, the existing code's error checking doesn't require one
> to specify a non-NULL, but empty nodemask.  It just requires that one
> does not specify any nodes with MPOL_DEFAULT.  
> 

You were previously arguing from an API or "reserved for future-use" 
standpoint and now you're arguing from an implementation standpoint.  Both 
of which are very different from each other.

The implementation can change to deal with this however we want (as I did 
in my patchset), so arguing in support of what mpol_new() or 
mpol_check_policy() currently do is irrelevant.

		David

--
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>

  reply	other threads:[~2008-02-13  0:42 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-02  8:12 [2.6.24-rc8-mm1][regression?] numactl --interleave=all doesn't works on memoryless node KOSAKI Motohiro
2008-02-02  9:09 ` Andi Kleen
2008-02-02  9:37   ` KOSAKI Motohiro
2008-02-02 11:30     ` Andi Kleen
2008-02-04 19:03       ` Christoph Lameter
2008-02-04 18:20     ` Lee Schermerhorn
2008-02-05  9:26       ` [2.6.24 regression][BUGFIX] " KOSAKI Motohiro
2008-02-08 19:45         ` [PATCH 2.6.24-mm1] Mempolicy: silently restrict nodemask to allowed nodes V3 Lee Schermerhorn
2008-02-09 18:11           ` KOSAKI Motohiro
2008-02-10  5:29           ` KOSAKI Motohiro
2008-02-10  5:49             ` Greg KH
2008-02-10  7:42               ` Linus Torvalds
2008-02-10 10:31                 ` Andrew Morton
2008-02-11 16:47                 ` Lee Schermerhorn
2008-02-12  0:43                   ` KOSAKI Motohiro
2008-02-12  1:00                     ` David Rientjes
2008-02-12  1:56                       ` KOSAKI Motohiro
2008-02-12  2:05                         ` David Rientjes
2008-02-12  3:05                           ` KOSAKI Motohiro
2008-02-12  3:17                             ` David Rientjes
2008-02-12 15:08                       ` Lee Schermerhorn
2008-02-12 19:06                         ` David Rientjes
2008-02-13  0:07                           ` Lee Schermerhorn
2008-02-13  0:42                             ` David Rientjes [this message]
2008-02-13 16:32                               ` Lee Schermerhorn
2008-02-13 18:32                                 ` David Rientjes
2008-02-13 18:56                                   ` Lee Schermerhorn
2008-02-12  4:30                   ` [PATCH for 2.6.24][regression fix] " KOSAKI Motohiro
2008-02-12  5:06                     ` David Rientjes
2008-02-12  5:07                     ` Andrew Morton
2008-02-12 13:18                       ` KOSAKI Motohiro
2008-02-05 10:17       ` [2.6.24-rc8-mm1][regression?] numactl --interleave=all doesn't works on memoryless node Paul Jackson
2008-02-05 11:14         ` KOSAKI Motohiro
2008-02-05 19:56         ` David Rientjes
2008-02-05 20:51           ` Paul Jackson
2008-02-05 21:03             ` David Rientjes
2008-02-05 21:33               ` Paul Jackson
2008-02-05 22:04                 ` Lee Schermerhorn
2008-02-05 22:44                   ` David Rientjes
2008-02-05 22:50                   ` Paul Jackson
2008-02-05 14:31       ` Mel Gorman
2008-02-05 15:23         ` Lee Schermerhorn
2008-02-05 18:12           ` Christoph Lameter
2008-02-05 18:27             ` Lee Schermerhorn
2008-02-05 19:04               ` Christoph Lameter
2008-02-05 19:15                 ` Paul Jackson
2008-02-05 20:06                   ` David Rientjes

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=alpine.DEB.1.00.0802121632170.3291@chino.kir.corp.google.com \
    --to=rientjes@google.com \
    --cc=Lee.Schermerhorn@hp.com \
    --cc=akpm@linux-foundation.org \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --cc=linux-mm@kvack.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox