[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen stable-4.14] x86: replace reset_stack_and_jump_nolp()
commit bfc99c310fb156a4f0cacfd17c216207db8044ca Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Dec 15 14:12:47 2020 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Dec 15 14:12:47 2020 +0100 x86: replace reset_stack_and_jump_nolp() Move the necessary check into check_for_livepatch_work(), rather than mostly duplicating reset_stack_and_jump() for this purpose. This is to prevent an inflation of reset_stack_and_jump() flavors. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Juergen Gross <jgross@xxxxxxxx> master commit: e3df3fbc448b9ae401332ba7d71c190d2efe3ae8 master date: 2020-12-15 13:40:27 +0100 --- xen/arch/x86/domain.c | 2 +- xen/arch/x86/hvm/svm/svm.c | 2 +- xen/arch/x86/hvm/vmx/vmcs.c | 2 +- xen/arch/x86/pv/domain.c | 2 +- xen/arch/x86/setup.c | 2 +- xen/common/livepatch.c | 5 +++++ xen/include/asm-x86/current.h | 10 ++-------- 7 files changed, 12 insertions(+), 13 deletions(-) diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c index c830d1225c..5114774f94 100644 --- a/xen/arch/x86/domain.c +++ b/xen/arch/x86/domain.c @@ -192,7 +192,7 @@ static void noreturn continue_idle_domain(struct vcpu *v) { /* Idle vcpus might be attached to non-idle units! */ if ( !is_idle_domain(v->sched_unit->domain) ) - reset_stack_and_jump_nolp(guest_idle_loop); + reset_stack_and_jump(guest_idle_loop); reset_stack_and_jump(idle_loop); } diff --git a/xen/arch/x86/hvm/svm/svm.c b/xen/arch/x86/hvm/svm/svm.c index 0c0c2a964e..ccdc4e004b 100644 --- a/xen/arch/x86/hvm/svm/svm.c +++ b/xen/arch/x86/hvm/svm/svm.c @@ -1032,7 +1032,7 @@ static void noreturn svm_do_resume(struct vcpu *v) hvm_do_resume(v); - reset_stack_and_jump_nolp(svm_asm_do_resume); + reset_stack_and_jump(svm_asm_do_resume); } void svm_vmenter_helper(const struct cpu_user_regs *regs) diff --git a/xen/arch/x86/hvm/vmx/vmcs.c b/xen/arch/x86/hvm/vmx/vmcs.c index ca94c2bedc..a71b935c10 100644 --- a/xen/arch/x86/hvm/vmx/vmcs.c +++ b/xen/arch/x86/hvm/vmx/vmcs.c @@ -1909,7 +1909,7 @@ void vmx_do_resume(struct vcpu *v) if ( host_cr4 != read_cr4() ) __vmwrite(HOST_CR4, read_cr4()); - reset_stack_and_jump_nolp(vmx_asm_do_vmentry); + reset_stack_and_jump(vmx_asm_do_vmentry); } static inline unsigned long vmr(unsigned long field) diff --git a/xen/arch/x86/pv/domain.c b/xen/arch/x86/pv/domain.c index 44e4ea2582..92ed8a0292 100644 --- a/xen/arch/x86/pv/domain.c +++ b/xen/arch/x86/pv/domain.c @@ -113,7 +113,7 @@ static int parse_pcid(const char *s) static void noreturn continue_nonidle_domain(struct vcpu *v) { check_wakeup_from_wait(); - reset_stack_and_jump_nolp(ret_from_intr); + reset_stack_and_jump(ret_from_intr); } static int setup_compat_l4(struct vcpu *v) diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index c9b6af826d..01d58e4879 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -676,7 +676,7 @@ static void __init noreturn reinit_bsp_stack(void) asm volatile ("setssbsy" ::: "memory"); } - reset_stack_and_jump_nolp(init_done); + reset_stack_and_jump(init_done); } /* diff --git a/xen/common/livepatch.c b/xen/common/livepatch.c index 861a227dbd..81ceafce98 100644 --- a/xen/common/livepatch.c +++ b/xen/common/livepatch.c @@ -1635,6 +1635,11 @@ void check_for_livepatch_work(void) s_time_t timeout; unsigned long flags; + /* Only do any work when invoked in truly idle state. */ + if ( system_state != SYS_STATE_active || + !is_idle_domain(current->sched_unit->domain) ) + return; + /* Fast path: no work to do. */ if ( !per_cpu(work_to_do, cpu ) ) return; diff --git a/xen/include/asm-x86/current.h b/xen/include/asm-x86/current.h index 51a4cdbf7c..b47addb3c8 100644 --- a/xen/include/asm-x86/current.h +++ b/xen/include/asm-x86/current.h @@ -155,13 +155,13 @@ unsigned long get_stack_dump_bottom (unsigned long sp); # define SHADOW_STACK_WORK "" #endif -#define switch_stack_and_jump(fn, instr) \ +#define reset_stack_and_jump(fn) \ ({ \ unsigned int tmp; \ __asm__ __volatile__ ( \ SHADOW_STACK_WORK \ "mov %[stk], %%rsp;" \ - instr \ + CHECK_FOR_LIVEPATCH_WORK \ "jmp %c[fun];" \ : [val] "=&r" (tmp), \ [ssp] "=&r" (tmp) \ @@ -176,12 +176,6 @@ unsigned long get_stack_dump_bottom (unsigned long sp); unreachable(); \ }) -#define reset_stack_and_jump(fn) \ - switch_stack_and_jump(fn, CHECK_FOR_LIVEPATCH_WORK) - -#define reset_stack_and_jump_nolp(fn) \ - switch_stack_and_jump(fn, "") - /* * Which VCPU's state is currently running on each CPU? * This is not necesasrily the same as 'current' as a CPU may be -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.14
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |