x86: Move init_gbpages() to setup_arch()
authorPekka J Enberg <penberg@cs.helsinki.fi>
Mon, 22 Jun 2009 14:39:41 +0000 (17:39 +0300)
committerIngo Molnar <mingo@elte.hu>
Tue, 23 Jun 2009 08:33:32 +0000 (10:33 +0200)
commit854c879f5abf309ebd378bea1ee41acf4ddf7194
tree4bdaddf034e7d825a9ea857e195b18bb01427a22
parentb7f797cb600fa88de04903be4df3c8a6cb1cb35c
x86: Move init_gbpages() to setup_arch()

The init_gbpages() function is conditionally called from
init_memory_mapping() function. There are two call-sites where
this 'after_bootmem' condition can be true: setup_arch() and
mem_init() via pci_iommu_alloc().

Therefore, it's safe to move the call to init_gbpages() to
setup_arch() as it's always called before mem_init().

This removes an after_bootmem use - paving the way to remove
all uses of that state variable.

Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Acked-by: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <Pine.LNX.4.64.0906221731210.19474@melkki.cs.Helsinki.FI>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/setup.c
arch/x86/mm/init.c