]> xenbits.xensource.com Git - people/gdunlap/xen.git/commitdiff
x86: introduce clear_fixmap()
authorJan Beulich <jbeulich@suse.com>
Thu, 5 Mar 2015 12:37:04 +0000 (13:37 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 5 Mar 2015 12:37:04 +0000 (13:37 +0100)
... making more obvious what its so far open coded users intend.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/domain.c
xen/arch/x86/io_apic.c
xen/arch/x86/mpparse.c
xen/arch/x86/msi.c
xen/arch/x86/tboot.c
xen/include/asm-x86/fixmap.h

index cfe7945ba597d733f4b78273323f9759552185fb..21f07668056f7830695d6abb008f6f277a77bc4c 100644 (file)
@@ -310,7 +310,7 @@ void free_vcpu_guest_context(struct vcpu_guest_context *vgc)
     {
         if ( !per_cpu(vgc_pages[i], cpu) )
             continue;
-        __set_fixmap(idx - i, 0, 0);
+        clear_fixmap(idx - i);
         free_domheap_page(per_cpu(vgc_pages[i], cpu));
         per_cpu(vgc_pages[i], cpu) = NULL;
     }
index 01f816b76b2e948fa42837976c7b60f55c28d7f7..976c0c58c54f4b0c15f19a54d855613af02784c2 100644 (file)
@@ -2552,7 +2552,7 @@ void __init init_ioapic_mappings(void)
 
         if ( bad_ioapic_register(i) )
         {
-            __set_fixmap(idx, 0, 0);
+            clear_fixmap(idx);
             continue;
         }
 
index a38e01634166fcf6a7c0065fdc3db32299c16c93..003c56e0a473177aba7d5321534510af97746ea8 100644 (file)
@@ -541,7 +541,7 @@ static inline void __init construct_default_ISA_mptable(int mpc_default_type)
 static __init void efi_unmap_mpf(void)
 {
        if (efi_enabled)
-               __set_fixmap(FIX_EFI_MPF, 0, 0);
+               clear_fixmap(FIX_EFI_MPF);
 }
 
 static struct intel_mp_floating *__initdata mpf_found;
index 14d37eceb53a42c9fb9b126b844ecb0bde7b7219..39f3d685c773cfd1797c334c1c7bb69d655553fe 100644 (file)
@@ -112,7 +112,7 @@ static void msix_put_fixmap(struct arch_msix *msix, int idx)
 
     if ( --msix->table_refcnt[i] == 0 )
     {
-        __set_fixmap(idx, 0, 0);
+        clear_fixmap(idx);
         msix_fixmap_free(idx);
         msix->table_idx[i] = 0;
     }
index ca4839e7111bcebfff331839eee70d000d611551..ea1eea0c08911e9593201422a83bb429d408154e 100644 (file)
@@ -138,7 +138,7 @@ void __init tboot_probe(void)
                       TXT_PUB_CONFIG_REGS_BASE + TXTCR_SINIT_BASE);
     tboot_copy_memory((unsigned char *)&sinit_size, sizeof(sinit_size),
                       TXT_PUB_CONFIG_REGS_BASE + TXTCR_SINIT_SIZE);
-    __set_fixmap(FIX_TBOOT_MAP_ADDRESS, 0, 0);
+    clear_fixmap(FIX_TBOOT_MAP_ADDRESS);
 }
 
 /* definitions from xen/drivers/passthrough/vtd/iommu.h
@@ -477,7 +477,7 @@ int __init tboot_parse_dmar_table(acpi_table_handler dmar_handler)
     dmar_table_raw = xmalloc_array(unsigned char, dmar_table_length);
     tboot_copy_memory(dmar_table_raw, dmar_table_length, pa);
     dmar_table = (struct acpi_table_header *)dmar_table_raw;
-    __set_fixmap(FIX_TBOOT_MAP_ADDRESS, 0, 0);
+    clear_fixmap(FIX_TBOOT_MAP_ADDRESS);
 
     rc = dmar_handler(dmar_table);
     xfree(dmar_table_raw);
index ebb3207325580a673b05eb641c1d8d20c2c2cbd6..70eadffba95ba278e719c491bf4ed855776e8129 100644 (file)
@@ -78,6 +78,8 @@ extern void __set_fixmap(
 #define set_fixmap_nocache(idx, phys) \
     __set_fixmap(idx, (phys)>>PAGE_SHIFT, PAGE_HYPERVISOR_NOCACHE)
 
+#define clear_fixmap(idx) __set_fixmap(idx, 0, 0)
+
 #define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))
 #define __virt_to_fix(x) ((FIXADDR_TOP - ((x)&PAGE_MASK)) >> PAGE_SHIFT)