On Wed, 19 Jun 2013, Joonsoo Kim wrote: > > +#ifndef CONFIG_SLOB > > + if (__builtin_constant_p(size) && > > + size <= KMALLOC_MAX_CACHE_SIZE && !(flags & SLAB_CACHE_DMA)) { > > s/SLAB_CACHE_DMA/GFP_DMA Ok. Could you remove the rest of the email in the future? Its difficult to find your comment in the long diff. Subject: slab.h: Use the correct GFP flag. Signed-off-by: Christoph Lameter <cl@xxxxxxxxx> Index: linux/include/linux/slab.h =================================================================== --- linux.orig/include/linux/slab.h 2013-06-18 11:53:29.000000000 -0500 +++ linux/include/linux/slab.h 2013-06-19 09:31:58.303069398 -0500 @@ -421,7 +421,7 @@ static __always_inline void *kmalloc_nod { #ifndef CONFIG_SLOB if (__builtin_constant_p(size) && - size <= KMALLOC_MAX_CACHE_SIZE && !(flags & SLAB_CACHE_DMA)) { + size <= KMALLOC_MAX_CACHE_SIZE && !(flags & GFP_DMA)) { int i = kmalloc_index(size); if (!i) -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>