Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2776,7 +2776,7 @@ static int cache_grow(struct kmem_cache *cachep,
	 * 'nodeid'.
	 */
	if (!objp)
		objp = kmem_getpages(cachep, flags, nodeid);
		objp = kmem_getpages(cachep, local_flags, nodeid);
	if (!objp)
		goto failed;