Skip to content

Commit d0de0f6

Browse files
amlutoIngo Molnar
authored andcommitted
x86/boot: Defer setup_real_mode() to early_initcall time
There's no need to run setup_real_mode() as early as we run it. Defer it to the same early_initcall that sets up the page permissions for the real mode code. This should be a code size reduction. More importantly, it give us a longer window in which we can allocate the real mode trampoline. Signed-off-by: Andy Lutomirski <luto@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Brian Gerst <brgerst@gmail.com> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mario Limonciello <mario_limonciello@dell.com> Cc: Matt Fleming <mfleming@suse.de> Cc: Matthew Garrett <mjg59@srcf.ucam.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/fd62f0da4f79357695e9bf3e365623736b05f119.1470821230.git.luto@kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 18bc7bd commit d0de0f6

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

arch/x86/include/asm/realmode.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,5 @@ extern unsigned char secondary_startup_64[];
5959
#endif
6060

6161
void reserve_real_mode(void);
62-
void setup_real_mode(void);
6362

6463
#endif /* _ARCH_X86_REALMODE_H */

arch/x86/kernel/setup.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,8 +1141,6 @@ void __init setup_arch(char **cmdline_p)
11411141
/* A CPU has %cr4 if and only if it has CPUID. */
11421142
mmu_cr4_features = __read_cr4();
11431143

1144-
setup_real_mode();
1145-
11461144
memblock_set_current_limit(get_max_mapped());
11471145

11481146
/*

arch/x86/realmode/init.c

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void __init reserve_real_mode(void)
3030
base, (unsigned long long)mem, size);
3131
}
3232

33-
void __init setup_real_mode(void)
33+
static void __init setup_real_mode(void)
3434
{
3535
u16 real_mode_seg;
3636
const u32 *rel;
@@ -101,7 +101,7 @@ void __init setup_real_mode(void)
101101
* need to mark it executable at do_pre_smp_initcalls() at least,
102102
* thus run it as a early_initcall().
103103
*/
104-
static int __init set_real_mode_permissions(void)
104+
static void __init set_real_mode_permissions(void)
105105
{
106106
unsigned char *base = (unsigned char *) real_mode_header;
107107
size_t size = PAGE_ALIGN(real_mode_blob_end - real_mode_blob);
@@ -120,7 +120,16 @@ static int __init set_real_mode_permissions(void)
120120
set_memory_nx((unsigned long) base, size >> PAGE_SHIFT);
121121
set_memory_ro((unsigned long) base, ro_size >> PAGE_SHIFT);
122122
set_memory_x((unsigned long) text_start, text_size >> PAGE_SHIFT);
123+
}
124+
125+
static int __init init_real_mode(void)
126+
{
127+
if (!real_mode_header)
128+
panic("Real mode trampoline was not allocated");
129+
130+
setup_real_mode();
131+
set_real_mode_permissions();
123132

124133
return 0;
125134
}
126-
early_initcall(set_real_mode_permissions);
135+
early_initcall(init_real_mode);

0 commit comments

Comments
 (0)