summaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorAl Viro2005-04-24 21:28:34 +0200
committerLinus Torvalds2005-04-24 21:28:34 +0200
commit01424961e621737c638e489b6a0b5e6602b02612 (patch)
treeae51380febe42e40d09375648b0d379325b905a7 /mm
parent[PATCH] SCSI GFP fixes (diff)
downloadkernel-qcow2-linux-01424961e621737c638e489b6a0b5e6602b02612.tar.gz
kernel-qcow2-linux-01424961e621737c638e489b6a0b5e6602b02612.tar.xz
kernel-qcow2-linux-01424961e621737c638e489b6a0b5e6602b02612.zip
[PATCH] mempolicy.c GFP fix
zonelist_policy() forgot to mask non-zone bits from gfp when comparing zone number with policy_zone. ACKed-by: Andi Kleen <ak@suse.de> Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/mempolicy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index a3b44a671cec..08c41da429cf 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -661,7 +661,7 @@ static struct zonelist *zonelist_policy(unsigned int __nocast gfp, struct mempol
case MPOL_BIND:
/* Lower zones don't get a policy applied */
/* Careful: current->mems_allowed might have moved */
- if (gfp >= policy_zone)
+ if ((gfp & GFP_ZONEMASK) >= policy_zone)
if (cpuset_zonelist_valid_mems_allowed(policy->v.zonelist))
return policy->v.zonelist;
/*FALL THROUGH*/