Index: linux-2.6.19-rc6-mm1/mm/slab.c =================================================================== --- linux-2.6.19-rc6-mm1.orig/mm/slab.c 2006-11-27 16:23:06.000000000 -0600 +++ linux-2.6.19-rc6-mm1/mm/slab.c 2006-11-28 13:07:29.958533963 -0600 @@ -3006,7 +3006,7 @@ alloc_done: if (unlikely(!ac->avail)) { int x; - x = cache_grow(cachep, flags | __GFP_THISNODE, node, NULL); + x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL); /* cache_grow can reenable interrupts, then ac could change. */ ac = cpu_cache_get(cachep); @@ -3268,7 +3268,7 @@ retry: cache->nodelists[nid] && cache->nodelists[nid]->free_objects) obj = ____cache_alloc_node(cache, - flags | __GFP_THISNODE, nid); + flags | GFP_THISNODE, nid); } if (!obj) { @@ -3286,7 +3286,7 @@ retry: nid = page_to_nid(virt_to_page(obj)); if (cache_grow(cache, flags, nid, obj)) { obj = ____cache_alloc_node(cache, - flags | __GFP_THISNODE, nid); + flags | GFP_THISNODE, nid); if (!obj) /* * Another processor may allocate the @@ -3355,7 +3355,7 @@ retry: must_grow: spin_unlock(&l3->list_lock); - x = cache_grow(cachep, flags | __GFP_THISNODE, nodeid, NULL); + x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL); if (x) goto retry;