From: Andrew Morton Date: Tue, 24 Jul 2007 19:02:40 +0000 (-0700) Subject: slab: correctly handle __GFP_ZERO X-Git-Tag: v2.6.23-rc2~299 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8c1c5da1520977cb55a358f20fc09567d40cad9;p=pandora-kernel.git 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 Acked-by: Christoph Lameter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed