Commit b8c1c5da authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

slab: correctly handle __GFP_ZERO

Use the correct local variable when calling into the page allocator.  Local
`flags' can have __GFP_ZERO set, which causes us to pass __GFP_ZERO into the
page allocator, possibly from illegal contexts.  The page allocator will later
do prep_zero_page()->kmap_atomic(..., KM_USER0) from irq contexts and will
then go BUG.

Cc: Mike Galbraith <efault@gmx.de>
Acked-by: default avatarChristoph Lameter <clameter@sgi.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 01e457cf
...@@ -2776,7 +2776,7 @@ static int cache_grow(struct kmem_cache *cachep, ...@@ -2776,7 +2776,7 @@ static int cache_grow(struct kmem_cache *cachep,
* 'nodeid'. * 'nodeid'.
*/ */
if (!objp) if (!objp)
objp = kmem_getpages(cachep, flags, nodeid); objp = kmem_getpages(cachep, local_flags, nodeid);
if (!objp) if (!objp)
goto failed; goto failed;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment