mm/sl[au]b: correct allocation type check in kmalloc_slab()
authorJoonsoo Kim <js1304@gmail.com>
Mon, 4 Feb 2013 14:46:46 +0000 (23:46 +0900)
committerPekka Enberg <penberg@kernel.org>
Wed, 6 Feb 2013 18:37:55 +0000 (20:37 +0200)
commitb1e0541674904db00e17ce646b0a1d54f59136a5
tree2d53f1ffcca5fcb72fe22e0797c7d829c7bd28c2
parentdb8450673458e724229e91050ac9a92253b01234
mm/sl[au]b: correct allocation type check in kmalloc_slab()

commit "slab: Common Kmalloc cache determination" made mistake
in kmalloc_slab(). SLAB_CACHE_DMA is for kmem_cache creation,
not for allocation. For allocation, we should use GFP_XXX to identify
type of allocation. So, change SLAB_CACHE_DMA to GFP_DMA.

Acked-by: Christoph Lameter <cl@linux.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Joonsoo Kim <js1304@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
mm/slab_common.c