[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-c940a3fb1e2e9b7d03228ab28f375fb5a47ff699@git.kernel.org>
Date: Thu, 25 Jan 2018 05:19:31 -0800
From: tip-bot for Peter Zijlstra <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: jbaron@...mai.com, dave.hansen@...el.com,
gregkh@...uxfoundation.org, pbonzini@...hat.com,
arjan.van.de.ven@...el.com, dan.j.williams@...el.com,
dwmw2@...radead.org, linux-kernel@...r.kernel.org,
jpoimboe@...hat.com, jun.nakajima@...el.com, tglx@...utronix.de,
mingo@...nel.org, hpa@...or.com, asit.k.mallick@...el.com,
aarcange@...hat.com, tim.c.chen@...ux.intel.com,
ashok.raj@...el.com, dwmw@...zon.co.uk,
torvalds@...ux-foundation.org, luto@...nel.org,
peterz@...radead.org, ak@...ux.intel.com
Subject: [tip:x86/pti] KVM: VMX: Make indirect call speculation safe
Commit-ID: c940a3fb1e2e9b7d03228ab28f375fb5a47ff699
Gitweb: https://git.kernel.org/tip/c940a3fb1e2e9b7d03228ab28f375fb5a47ff699
Author: Peter Zijlstra <peterz@...radead.org>
AuthorDate: Thu, 25 Jan 2018 10:58:14 +0100
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitDate: Thu, 25 Jan 2018 14:14:42 +0100
KVM: VMX: Make indirect call speculation safe
Replace indirect call with CALL_NOSPEC.
Signed-off-by: Peter Zijlstra (Intel) <peterz@...radead.org>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Reviewed-by: David Woodhouse <dwmw@...zon.co.uk>
Cc: Andrea Arcangeli <aarcange@...hat.com>
Cc: Andi Kleen <ak@...ux.intel.com>
Cc: Ashok Raj <ashok.raj@...el.com>
Cc: Greg KH <gregkh@...uxfoundation.org>
Cc: Jun Nakajima <jun.nakajima@...el.com>
Cc: David Woodhouse <dwmw2@...radead.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: rga@...zon.de
Cc: Dave Hansen <dave.hansen@...el.com>
Cc: Asit Mallick <asit.k.mallick@...el.com>
Cc: Andy Lutomirski <luto@...nel.org>
Cc: Josh Poimboeuf <jpoimboe@...hat.com>
Cc: Jason Baron <jbaron@...mai.com>
Cc: Paolo Bonzini <pbonzini@...hat.com>
Cc: Dan Williams <dan.j.williams@...el.com>
Cc: Arjan Van De Ven <arjan.van.de.ven@...el.com>
Cc: Tim Chen <tim.c.chen@...ux.intel.com>
Link: https://lkml.kernel.org/r/20180125095843.645776917@infradead.org
---
arch/x86/kvm/vmx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index d1e25db..924589c 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -9064,14 +9064,14 @@ static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
#endif
"pushf\n\t"
__ASM_SIZE(push) " $%c[cs]\n\t"
- "call *%[entry]\n\t"
+ CALL_NOSPEC
:
#ifdef CONFIG_X86_64
[sp]"=&r"(tmp),
#endif
ASM_CALL_CONSTRAINT
:
- [entry]"r"(entry),
+ THUNK_TARGET(entry),
[ss]"i"(__KERNEL_DS),
[cs]"i"(__KERNEL_CS)
);
Powered by blists - more mailing lists