mirror of https://gitee.com/openkylin/linux.git
KVM: MMU: No need to pick up nx bit from guest pte
We already set it according to cumulative access permissions. Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
parent
41074d07c7
commit
b4ab019ce7
|
@ -258,7 +258,6 @@ static void FNAME(set_pte)(struct kvm_vcpu *vcpu, pt_element_t gpte,
|
|||
* demand paging).
|
||||
*/
|
||||
spte = PT_PRESENT_MASK | PT_DIRTY_MASK;
|
||||
spte |= gpte & PT64_NX_MASK;
|
||||
if (!dirty)
|
||||
pte_access &= ~ACC_WRITE_MASK;
|
||||
if (!(pte_access & ACC_EXEC_MASK))
|
||||
|
|
Loading…
Reference in New Issue