diff options
author | David Rientjes <rientjes@google.com> | 2011-01-13 15:46:01 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 17:32:34 -0800 |
commit | ec3f64fc9c196a304c4b7db3e1ff56d640628509 (patch) | |
tree | 43de86d9fbb6543b99e1f450b1a3c15a3f151fa0 /mm/percpu-vm.c | |
parent | e5a5623b28198aa91ea71ee5d3846757fc76bc87 (diff) | |
download | kernel_goldelico_gta04-ec3f64fc9c196a304c4b7db3e1ff56d640628509.zip kernel_goldelico_gta04-ec3f64fc9c196a304c4b7db3e1ff56d640628509.tar.gz kernel_goldelico_gta04-ec3f64fc9c196a304c4b7db3e1ff56d640628509.tar.bz2 |
mm: remove gfp mask from pcpu_get_vm_areas
pcpu_get_vm_areas() only uses GFP_KERNEL allocations, so remove the gfp_t
formal and use the mask internally.
Signed-off-by: David Rientjes <rientjes@google.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/percpu-vm.c')
-rw-r--r-- | mm/percpu-vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/percpu-vm.c b/mm/percpu-vm.c index 7d9c1d0..ea53496 100644 --- a/mm/percpu-vm.c +++ b/mm/percpu-vm.c @@ -421,7 +421,7 @@ static struct pcpu_chunk *pcpu_create_chunk(void) return NULL; vms = pcpu_get_vm_areas(pcpu_group_offsets, pcpu_group_sizes, - pcpu_nr_groups, pcpu_atom_size, GFP_KERNEL); + pcpu_nr_groups, pcpu_atom_size); if (!vms) { pcpu_free_chunk(chunk); return NULL; |