diff options
author | Ingo Molnar | 2010-05-03 09:19:43 +0200 |
---|---|---|
committer | Ingo Molnar | 2010-05-03 09:22:19 +0200 |
commit | 56f0e74c9cf98941af700b61466648a2d06277bb (patch) | |
tree | 627f2b472022cfcb2c8af6a64fac8f30b8220167 /arch/x86/mm | |
parent | x86: Fix NULL pointer access in irq_force_complete_move() for Xen guests (diff) | |
download | kernel-qcow2-linux-56f0e74c9cf98941af700b61466648a2d06277bb.tar.gz kernel-qcow2-linux-56f0e74c9cf98941af700b61466648a2d06277bb.tar.xz kernel-qcow2-linux-56f0e74c9cf98941af700b61466648a2d06277bb.zip |
x86: Fix parse_reservetop() build failure on certain configs
Commit e67a807 ("x86: Fix 'reservetop=' functionality") added a
fixup_early_ioremap() call to parse_reservetop() and declared it
in io.h.
But asm/io.h was only included indirectly - and on some configs
not at all, causing a build failure on those configs.
Cc: Liang Li <liang.li@windriver.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Wang Chen <wangchen@cn.fujitsu.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
LKML-Reference: <1272621711-8683-1-git-send-email-liang.li@windriver.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r-- | arch/x86/mm/pgtable_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/mm/pgtable_32.c b/arch/x86/mm/pgtable_32.c index 26eadaa60e6c..792854003ed3 100644 --- a/arch/x86/mm/pgtable_32.c +++ b/arch/x86/mm/pgtable_32.c @@ -18,6 +18,7 @@ #include <asm/e820.h> #include <asm/tlb.h> #include <asm/tlbflush.h> +#include <asm/io.h> unsigned int __VMALLOC_RESERVE = 128 << 20; |