提交 20bd40dc 编写于 作者: X Xiao Guangrong 提交者: Avi Kivity

KVM: MMU: cleanup for error mask set while walk guest page table

Small cleanup for set page fault error code
Signed-off-by: NXiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: NAvi Kivity <avi@redhat.com>
上级 6292757f
...@@ -224,9 +224,7 @@ static int FNAME(walk_addr_generic)(struct guest_walker *walker, ...@@ -224,9 +224,7 @@ static int FNAME(walk_addr_generic)(struct guest_walker *walker,
is_cpuid_PSE36()) is_cpuid_PSE36())
gfn += pse36_gfn_delta(pte); gfn += pse36_gfn_delta(pte);
access |= write_fault ? PFERR_WRITE_MASK : 0; access |= write_fault | fetch_fault | user_fault;
access |= fetch_fault ? PFERR_FETCH_MASK : 0;
access |= user_fault ? PFERR_USER_MASK : 0;
real_gpa = mmu->translate_gpa(vcpu, gfn_to_gpa(gfn), real_gpa = mmu->translate_gpa(vcpu, gfn_to_gpa(gfn),
access); access);
...@@ -268,10 +266,9 @@ static int FNAME(walk_addr_generic)(struct guest_walker *walker, ...@@ -268,10 +266,9 @@ static int FNAME(walk_addr_generic)(struct guest_walker *walker,
walker->error_code = 0; walker->error_code = 0;
if (present) if (present)
walker->error_code |= PFERR_PRESENT_MASK; walker->error_code |= PFERR_PRESENT_MASK;
if (write_fault)
walker->error_code |= PFERR_WRITE_MASK; walker->error_code |= write_fault | user_fault;
if (user_fault)
walker->error_code |= PFERR_USER_MASK;
if (fetch_fault && mmu->nx) if (fetch_fault && mmu->nx)
walker->error_code |= PFERR_FETCH_MASK; walker->error_code |= PFERR_FETCH_MASK;
if (rsvd_fault) if (rsvd_fault)
...@@ -673,9 +670,9 @@ static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr, u32 access, ...@@ -673,9 +670,9 @@ static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr, u32 access,
int r; int r;
r = FNAME(walk_addr)(&walker, vcpu, vaddr, r = FNAME(walk_addr)(&walker, vcpu, vaddr,
!!(access & PFERR_WRITE_MASK), access & PFERR_WRITE_MASK,
!!(access & PFERR_USER_MASK), access & PFERR_USER_MASK,
!!(access & PFERR_FETCH_MASK)); access & PFERR_FETCH_MASK);
if (r) { if (r) {
gpa = gfn_to_gpa(walker.gfn); gpa = gfn_to_gpa(walker.gfn);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册