[PATCH] cpuset: mempolicy one more nodemask conversion
Finish converting mm/mempolicy.c from bitmaps to nodemasks. The previous conversion had left one routine using bitmaps, since it involved a corresponding change to kernel/cpuset.c Fix that interface by replacing with a simple macro that calls nodes_subset(), or if !CONFIG_CPUSET, returns (1). Signed-off-by: Paul Jackson <pj@sgi.com> Cc: Christoph Lameter <christoph@lameter.com> Cc: Andi Kleen <ak@muc.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:

committed by
Linus Torvalds

parent
96b7f34143
commit
5966514db6
@@ -1749,16 +1749,6 @@ done:
|
||||
refresh_mems();
|
||||
}
|
||||
|
||||
/**
|
||||
* cpuset_restrict_to_mems_allowed - limit nodes to current mems_allowed
|
||||
* @nodes: pointer to a node bitmap that is and-ed with mems_allowed
|
||||
*/
|
||||
void cpuset_restrict_to_mems_allowed(unsigned long *nodes)
|
||||
{
|
||||
bitmap_and(nodes, nodes, nodes_addr(current->mems_allowed),
|
||||
MAX_NUMNODES);
|
||||
}
|
||||
|
||||
/**
|
||||
* cpuset_zonelist_valid_mems_allowed - check zonelist vs. curremt mems_allowed
|
||||
* @zl: the zonelist to be checked
|
||||
|
Reference in New Issue
Block a user