* kvm test: vmexit: enable NX
@ 2010-06-08 18:33 Marcelo Tosatti
2010-06-09 11:07 ` Avi Kivity
0 siblings, 1 reply; 2+ messages in thread
From: Marcelo Tosatti @ 2010-06-08 18:33 UTC (permalink / raw)
To: kvm; +Cc: Avi Kivity
Enable NX to disable MSR autoload/save. This is the common case anyway.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
diff --git a/kvm/test/x86/vmexit.c b/kvm/test/x86/vmexit.c
index c3a01e0..f267a19 100644
--- a/kvm/test/x86/vmexit.c
+++ b/kvm/test/x86/vmexit.c
@@ -45,6 +45,24 @@ static void vmcall(void)
asm volatile ("vmcall" : "+a"(a), "=b"(b), "=c"(c), "=d"(d));
}
+#define MSR_EFER 0xc0000080
+#define EFER_NX_MASK (1ull << 11)
+
+unsigned long long rdmsr(unsigned index)
+{
+ unsigned a, d;
+
+ asm volatile("rdmsr" : "=a"(a), "=d"(d) : "c"(index));
+ return ((unsigned long long)d << 32) | a;
+}
+
+void wrmsr(unsigned index, unsigned long long val)
+{
+ unsigned a = val, d = val >> 32;
+
+ asm volatile("wrmsr" : : "a"(a), "d"(d), "c"(index));
+}
+
static void mov_from_cr8(void)
{
unsigned long cr8;
@@ -151,12 +169,20 @@ static void do_test(struct test *test)
#define ARRAY_SIZE(_x) (sizeof(_x) / sizeof((_x)[0]))
+static void enable_nx(void *junk)
+{
+ wrmsr(MSR_EFER, rdmsr(MSR_EFER) | EFER_NX_MASK);
+}
+
int main(void)
{
int i;
smp_init();
+ for (i = cpu_count(); i > 0; i--)
+ on_cpu(i-1, enable_nx, 0);
+
for (i = 0; i < ARRAY_SIZE(tests); ++i)
do_test(&tests[i]);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: kvm test: vmexit: enable NX
2010-06-08 18:33 kvm test: vmexit: enable NX Marcelo Tosatti
@ 2010-06-09 11:07 ` Avi Kivity
0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2010-06-09 11:07 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: kvm
On 06/08/2010 09:33 PM, Marcelo Tosatti wrote:
> Enable NX to disable MSR autoload/save. This is the common case anyway.
>
>
Applied, thanks.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-09 11:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-08 18:33 kvm test: vmexit: enable NX Marcelo Tosatti
2010-06-09 11:07 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox