diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:45 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:45 -0500 |
commit | a8efa1cd51d6f6407df5f42d8f1a7e9fc7178d1a (patch) | |
tree | decb91faf3345002d2fc42fed109b54f38a9dc0f | |
parent | 1b42f51630c7eebce6fb780b480731eb81afd325 (diff) |
x86: increase the number of boot-mappings
increase max early_ioremap() remapping size from 64K to 256K.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | include/asm-x86/fixmap_32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/fixmap_32.h b/include/asm-x86/fixmap_32.h index 0e990218a09c..46bedb7b5426 100644 --- a/include/asm-x86/fixmap_32.h +++ b/include/asm-x86/fixmap_32.h | |||
@@ -91,7 +91,7 @@ enum fixed_addresses { | |||
91 | #endif | 91 | #endif |
92 | __end_of_permanent_fixed_addresses, | 92 | __end_of_permanent_fixed_addresses, |
93 | /* temporary boot-time mappings, used before ioremap() is functional */ | 93 | /* temporary boot-time mappings, used before ioremap() is functional */ |
94 | #define NR_FIX_BTMAPS 16 | 94 | #define NR_FIX_BTMAPS 64 |
95 | #define FIX_BTMAPS_NESTING 4 | 95 | #define FIX_BTMAPS_NESTING 4 |
96 | FIX_BTMAP_END = __end_of_permanent_fixed_addresses, | 96 | FIX_BTMAP_END = __end_of_permanent_fixed_addresses, |
97 | FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_NESTING - 1, | 97 | FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_NESTING - 1, |