kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [kvm-unit-tests PATCH] x86: Assign a canonical address before execute invpcid
@ 2021-12-30 10:14 Zhenzhong Duan
  2021-12-30 15:52 ` Sean Christopherson
  0 siblings, 1 reply; 5+ messages in thread
From: Zhenzhong Duan @ 2021-12-30 10:14 UTC (permalink / raw)
  To: kvm; +Cc: pbonzini, Zhenzhong Duan

Occasionally we see pcid test fail as INVPCID_DESC[127:64] is
uninitialized before execute invpcid.

According to Intel spec: "#GP If INVPCID_TYPE is 0 and the linear
address in INVPCID_DESC[127:64] is not canonical."

Assign desc's address which is guaranteed to be a real memory
address and canonical.

Fixes: b44d84dae10c ("Add PCID/INVPCID test")
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
---
 x86/pcid.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x86/pcid.c b/x86/pcid.c
index 527a4a9..4828bbc 100644
--- a/x86/pcid.c
+++ b/x86/pcid.c
@@ -75,6 +75,9 @@ static void test_invpcid_enabled(int pcid_enabled)
     struct invpcid_desc desc;
     desc.rsv = 0;
 
+    /* Initialize INVPCID_DESC[127:64] with a canonical address */
+    desc.addr = (u64)&desc;
+
     /* try executing invpcid when CR4.PCIDE=0, desc.pcid=0 and type=0..3
      * no exception expected
      */
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-11 16:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-30 10:14 [kvm-unit-tests PATCH] x86: Assign a canonical address before execute invpcid Zhenzhong Duan
2021-12-30 15:52 ` Sean Christopherson
2021-12-30 17:50   ` Sean Christopherson
2022-01-11  8:22     ` Duan, Zhenzhong
2022-01-11 16:23       ` Sean Christopherson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).