lkml.org 
[lkml]   [2008]   [Feb]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [patch 5/6] mempolicy: add MPOL_F_RELATIVE_NODES flag
On Wed, 27 Feb 2008, Lee Schermerhorn wrote:

> > Here's some examples of the functional changes between the default
> > actions of the various mempolicy modes and the new behavior with
> > MPOL_F_STATIC_NODES or MPOL_F_RELATIVE_NODES.
>
> Nice work. Would you consider adding this [with the corrections you
> note below] to the memory policy doc under the "interaction with
> cpusets" section?
>

I think it's overly verbose for adding to documentation. Other than
describing the effects of MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES, I
don't think much more in the way of examples need to be provided (they
were here to show that the patchset actually works on creation and
rebind).

> > MPOL_INTERLEAVE
> > ---------------
> > mems nodemask result rebind result
> > 1-3 0-2 1-2[*] 4-6 4-5
> > 1-3 1-2 1-2 0-2 0-1
> > 1-3 1-3 1-3 4-7 4-6
> > 1-3 2-4 2-3 0-2 1-2
> > 1-3 2-6 2-3 4-7 5-6
> > 1-3 4-7 EINVAL
> > 1-3 0-7 1-3 4-7 4-6
> >
> > MPOL_PREFERRED
> > --------------
> > mems nodemask result rebind result
> > 1-3 0 EINVAL
> > 1-3 2 2 4-7 5
> > 1-3 5 EINVAL
> >
> > MPOL_BIND
> > ---------
> > mems nodemask result rebind result
> > 1-3 0-2 1-2 0-2 0-1
> > 1-3 1-2 1-2 2-7 2-3
> > 1-3 1-3 1-3 0-1 0-1
> > 1-3 2-4 2-3 3-6 4-5
> > 1-3 2-6 2-3 5 5
> > 1-3 4-7 EINVAL
> > 1-3 0-7 1-3 1-3 1-3
>
> Just a note here: If you had used the same set of "rebind targets" for
> _BIND as you did for _INTERLEAVE, I would expect the same results,
> because were just remapping bit masks in both cases. Do you agree?
>

Yes, the results are the same for both interleave and bind and that's
actually why I didn't use the same rebind targets.

> > [*] Notice how the resulting nodemask for all of these examples when
> > creating the mempolicy is intersected with mems_allowed. This is
> > the current behavior, with contextualize_policy(), and is identical
> > to the initial result of the MPOL_F_STATIC_NODES case.
> >
> > Perhaps it would make more sense to remap the nodemask when it is
> > created, as well, in the ~MPOL_F_STATIC_NODES case. For example, in
> > this case, the "result" would be 1-3 instead.
> >
> > That is a departure from what is currently implemented in HEAD (and,
> > thus, can be used as ample justification for the above behavior) but
> > makes more sense. Thoughts?
>
> Thoughts:
>
> 1) this IS a change in behavior, right? My first inclination is to shy
> away from this. However, ...
>

Yes, it's the current behavior as a result of contextualize_policy()
before mpol_new() is ever reached.

> 2) the current interaction of mempolicies with cpusets is not well
> documented--until Paul's cpuset.4 man page hits the streets, anyway.
> That doc does say that mempolicy is not allowed to use a node outside
> the cpuset. It does NOT say how this is enforced--reject vs masking vs
> remap. The set_mempolicy(2) and mbind(2) man pages [in at least 2.70
> man pages] says that you get EINVAL if you specify a node outside the
> current cpuset constraints. This was relaxed by the recent patch to
> "silently restrict" the nodes to mems allowed.
>
> Since we update the man pages anyway, we COULD change it to say that we
> remap policy to allowed nodes. However, the application may have chosen
> the nodes based on some knowledge of hardware topology, such as IO
> attachement, interrupt handling cpus, ... In this case, remapping
> doesn't make so much sense to me.
>
> If you need/want a mode that remaps policy to mems allowed on
> installation--e.g., to provide the maximum number of interleave
> nodes--how about yet another flag, such as '_REMAP, to effect this
> behavior?
>

MPOL_F_RELATIVE_NODES actually does map onto and fold the passed nodemask
when the mempolicy is created. That flag specifically refers to relative
nodes within a task's mems_allowed all the time; MPOL_F_STATIC_NODES
refers specifically to physical node ids.

So adding MPOL_F_REMAP doesn't make sense for MPOL_F_RELATIVE_NODES since
its already mapped onto and folded, and doesn't make sense for
MPOL_F_STATIC_NODES since the nodemask is explicitly never remapped.

It would make sense as an optional third flag that would be disjoint from
the other two and would only be useful when the mempolicy is created.

> > MPOL_INTERLEAVE | MPOL_F_STATIC_NODES
> > -------------------------------------
> > mems nodemask result rebind result
> > 1-3 0-2 1-2 4-6 nil
> > 1-3 1-2 1-2 0-2 1-2
> > 1-3 1-3 1-3 4-7 nil
> > 1-3 2-4 2-3 0-2 2
> > 1-3 2-6 2-3 4-7 4-6
> > 1-3 4-7 EINVAL
> > 1-3 0-7 1-3 4-7 4-7
>
> 'nil' falls back to local allocation, right?
>

Yes, it's an interleave over no nodes and is thus a local allocation
(current->il_next is numa_node_id()).

David


\
 
 \ /
  Last update: 2008-02-28 22:11    [W:0.166 / U:0.160 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site