summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Liu2017-08-29 12:27:53 +0200
committerBoris Ostrovsky2017-08-31 15:45:55 +0200
commitd785d9ec7894d0e92f0d0eecc8add9c84131daa4 (patch)
treef9d9797f68f10bc333e7e24464137610a9619f99
parentxen: Don't try to call xen_alloc_p2m_entry() on autotranslating guests (diff)
downloadkernel-qcow2-linux-d785d9ec7894d0e92f0d0eecc8add9c84131daa4.tar.gz
kernel-qcow2-linux-d785d9ec7894d0e92f0d0eecc8add9c84131daa4.tar.xz
kernel-qcow2-linux-d785d9ec7894d0e92f0d0eecc8add9c84131daa4.zip
xen/mmu: set MMU_NORMAL_PT_UPDATE in remap_area_mfn_pte_fn
No functional change because MMU_NORMAL_PT_UPDATE is in fact 0. Set it to make the code consistent with similar code in mmu_pv.c Signed-off-by: Wei Liu <wei.liu2@citrix.com> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com> Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
-rw-r--r--arch/x86/xen/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 3be06f3caf3c..3e15345abfe7 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -84,7 +84,7 @@ static int remap_area_mfn_pte_fn(pte_t *ptep, pgtable_t token,
else
rmd->mfn++;
- rmd->mmu_update->ptr = virt_to_machine(ptep).maddr;
+ rmd->mmu_update->ptr = virt_to_machine(ptep).maddr | MMU_NORMAL_PT_UPDATE;
rmd->mmu_update->val = pte_val_ma(pte);
rmd->mmu_update++;