* [PATCH] kvm: reduce couple for ACC_EXEC_MASK
@ 2010-04-17 9:08 Lai Jiangshan
0 siblings, 0 replies; only message in thread
From: Lai Jiangshan @ 2010-04-17 9:08 UTC (permalink / raw)
To: Avi Kivity, Marcelo Tosatti, LKML, kvm
The statement "access &= ~(gpte >> PT64_NX_SHIFT);" tries
to clear bit ACC_EXEC_MASK actually. This statement
relies PT64_NX_SHIFT==63&&ACC_EXEC_MASK=1
This patch reduces this couple.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
---
diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h
index 81eab9a..34f4aa2 100644
--- a/arch/x86/kvm/paging_tmpl.h
+++ b/arch/x86/kvm/paging_tmpl.h
@@ -101,11 +101,9 @@ static unsigned FNAME(gpte_access)(struct kvm_vcpu *vcpu, pt_element_t gpte)
{
unsigned access;
- access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
-#if PTTYPE == 64
- if (is_nx(vcpu))
- access &= ~(gpte >> PT64_NX_SHIFT);
-#endif
+ access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK));
+ if (PTTYPE != 64 || !is_nx(vcpu) || (gpte & PT64_NX_MASK))
+ access |= ACC_EXEC_MASK;
return access;
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-04-17 9:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-17 9:08 [PATCH] kvm: reduce couple for ACC_EXEC_MASK Lai Jiangshan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox