[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH 06/22] x86/traps: Introduce bsp_traps_reinit()
... to abstract away updating the refereces to the old BSP stack. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- xen/arch/x86/include/asm/traps.h | 1 + xen/arch/x86/setup.c | 6 +----- xen/arch/x86/traps-setup.c | 9 +++++++++ 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/include/asm/traps.h b/xen/arch/x86/include/asm/traps.h index 7414420e57d8..6ae451d3fc70 100644 --- a/xen/arch/x86/include/asm/traps.h +++ b/xen/arch/x86/include/asm/traps.h @@ -9,6 +9,7 @@ void bsp_early_traps_init(void); void traps_init(void); +void bsp_traps_reinit(void); void percpu_traps_init(void); extern unsigned int ler_msr; diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 64f02699e1aa..c8c408e02436 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -902,11 +902,7 @@ static void __init noreturn reinit_bsp_stack(void) unsigned long *stack = (void*)(get_stack_bottom() & ~(STACK_SIZE - 1)); int rc; - /* Update TSS and ISTs */ - load_system_tables(); - - /* Update SYSCALL trampolines */ - percpu_traps_init(); + bsp_traps_reinit(); stack_base[0] = stack; diff --git a/xen/arch/x86/traps-setup.c b/xen/arch/x86/traps-setup.c index 7713f427d344..370f4d5f7b60 100644 --- a/xen/arch/x86/traps-setup.c +++ b/xen/arch/x86/traps-setup.c @@ -107,6 +107,15 @@ void __init traps_init(void) percpu_traps_init(); } +/* + * Re-initialise all state referencing the early-boot stack. + */ +void bsp_traps_reinit(void) +{ + load_system_tables(); + percpu_traps_init(); +} + /* * Set up per-CPU linkage registers for exception, interrupt and syscall * handling. -- 2.39.5
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |