diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-17 23:24:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-18 16:12:57 -0400 |
commit | dcce284a259373f9e5570f2e33f79eca84fcf565 (patch) | |
tree | afc4b23208974f17c080ea3d2ecfbaca4254c010 /init/main.c | |
parent | 9729a6eb5878a3daa18395f2b5fb38bf9359a761 (diff) |
mm: Extend gfp masking to the page allocator
The page allocator also needs the masking of gfp flags during boot,
so this moves it out of slab/slub and uses it with the page allocator
as well.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init/main.c')
-rw-r--r-- | init/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c index 1a65fdd06318..09131ec090c1 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -642,6 +642,10 @@ asmlinkage void __init start_kernel(void) | |||
642 | "enabled early\n"); | 642 | "enabled early\n"); |
643 | early_boot_irqs_on(); | 643 | early_boot_irqs_on(); |
644 | local_irq_enable(); | 644 | local_irq_enable(); |
645 | |||
646 | /* Interrupts are enabled now so all GFP allocations are safe. */ | ||
647 | set_gfp_allowed_mask(__GFP_BITS_MASK); | ||
648 | |||
645 | kmem_cache_init_late(); | 649 | kmem_cache_init_late(); |
646 | 650 | ||
647 | /* | 651 | /* |