diff options
| -rw-r--r-- | arch/x86/xen/mmu.c | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index 4f5e0dc5f6e5..fb3e92e077e2 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c | |||
| @@ -342,22 +342,18 @@ void xen_set_pte_at(struct mm_struct *mm, unsigned long addr, | |||
| 342 | ADD_STATS(set_pte_at_current, mm == current->mm); | 342 | ADD_STATS(set_pte_at_current, mm == current->mm); |
| 343 | ADD_STATS(set_pte_at_kernel, mm == &init_mm); | 343 | ADD_STATS(set_pte_at_kernel, mm == &init_mm); |
| 344 | 344 | ||
| 345 | if (mm == current->mm || mm == &init_mm) { | 345 | if(paravirt_get_lazy_mode() == PARAVIRT_LAZY_MMU) { |
| 346 | if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_MMU) { | 346 | struct mmu_update u; |
| 347 | struct multicall_space mcs; | 347 | |
| 348 | mcs = xen_mc_entry(0); | 348 | xen_mc_batch(); |
| 349 | 349 | ||
| 350 | MULTI_update_va_mapping(mcs.mc, addr, pteval, 0); | 350 | u.ptr = virt_to_machine(ptep).maddr | MMU_NORMAL_PT_UPDATE; |
| 351 | ADD_STATS(set_pte_at_batched, 1); | 351 | u.val = pte_val_ma(pteval); |
| 352 | xen_mc_issue(PARAVIRT_LAZY_MMU); | 352 | xen_extend_mmu_update(&u); |
| 353 | goto out; | ||
| 354 | } else | ||
| 355 | if (HYPERVISOR_update_va_mapping(addr, pteval, 0) == 0) | ||
| 356 | goto out; | ||
| 357 | } | ||
| 358 | xen_set_pte(ptep, pteval); | ||
| 359 | 353 | ||
| 360 | out: return; | 354 | xen_mc_issue(PARAVIRT_LAZY_MMU); |
| 355 | } else | ||
| 356 | native_set_pte(ptep, pteval); | ||
| 361 | } | 357 | } |
| 362 | 358 | ||
| 363 | pte_t xen_ptep_modify_prot_start(struct mm_struct *mm, | 359 | pte_t xen_ptep_modify_prot_start(struct mm_struct *mm, |
