X-Git-Url: http://git.monstr.eu/?a=blobdiff_plain;f=kernel%2Fgroups.c;h=6ee6691f6839f64554aceeb1bbeca0785feda08d;hb=c5d6c13843880ad0112f0513f3eb041b258be66e;hp=daae2f2dc6d4f64565112f0d7fea9c984887ce26;hpb=664b0bae0b87f69bc9deb098f5e0158b9cf18e04;p=linux-2.6-microblaze.git diff --git a/kernel/groups.c b/kernel/groups.c index daae2f2dc6d4..6ee6691f6839 100644 --- a/kernel/groups.c +++ b/kernel/groups.c @@ -20,7 +20,7 @@ struct group_info *groups_alloc(int gidsetsize) len = sizeof(struct group_info) + sizeof(kgid_t) * gidsetsize; gi = kmalloc(len, GFP_KERNEL_ACCOUNT|__GFP_NOWARN|__GFP_NORETRY); if (!gi) - gi = __vmalloc(len, GFP_KERNEL_ACCOUNT, PAGE_KERNEL); + gi = __vmalloc(len, GFP_KERNEL_ACCOUNT); if (!gi) return NULL;