return spte;
 }
 
-static bool kvm_is_mmio_pfn(kvm_pfn_t pfn)
+static bool __kvm_is_mmio_pfn(kvm_pfn_t pfn)
 {
        if (pfn_valid(pfn))
                return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn)) &&
                                     E820_TYPE_RAM);
 }
 
+static bool kvm_is_mmio_pfn(kvm_pfn_t pfn, int *is_host_mmio)
+{
+       /*
+        * Determining if a PFN is host MMIO is relative expensive.  Cache the
+        * result locally (in the sole caller) to avoid doing the full query
+        * multiple times when creating a single SPTE.
+        */
+       if (*is_host_mmio < 0)
+               *is_host_mmio = __kvm_is_mmio_pfn(pfn);
+
+       return *is_host_mmio;
+}
+
 /*
  * Returns true if the SPTE needs to be updated atomically due to having bits
  * that may be changed without holding mmu_lock, and for which KVM must not
 {
        int level = sp->role.level;
        u64 spte = SPTE_MMU_PRESENT_MASK;
+       int is_host_mmio = -1;
        bool wrprot = false;
 
        /*
                spte |= PT_PAGE_SIZE_MASK;
 
        if (kvm_x86_ops.get_mt_mask)
-               spte |= kvm_x86_call(get_mt_mask)(vcpu, gfn, kvm_is_mmio_pfn(pfn));
-
+               spte |= kvm_x86_call(get_mt_mask)(vcpu, gfn,
+                                                 kvm_is_mmio_pfn(pfn, &is_host_mmio));
        if (host_writable)
                spte |= shadow_host_writable_mask;
        else
                pte_access &= ~ACC_WRITE_MASK;
 
-       if (shadow_me_value && !kvm_is_mmio_pfn(pfn))
+       if (shadow_me_value && !kvm_is_mmio_pfn(pfn, &is_host_mmio))
                spte |= shadow_me_value;
 
        spte |= (u64)pfn << PAGE_SHIFT;