]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
xen/arm: Use vmap_contig instead of __vmap where it's possible
authorLuca Fancellu <luca.fancellu@arm.com>
Tue, 3 Dec 2024 09:48:08 +0000 (09:48 +0000)
committerJulien Grall <jgrall@amazon.com>
Fri, 6 Dec 2024 19:24:25 +0000 (19:24 +0000)
Currently the arm code uses __vmap function in few parts to map
physically contiguous pages, vmap_contig was introduced recently
and does the same because it's a wrapper for __vmap, so use the
latter instead of the direct __vmap function.

Signed-off-by: Luca Fancellu <luca.fancellu@arm.com>
Acked-by: Julien Grall <jgrall@amazon.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
xen/arch/arm/alternative.c
xen/arch/arm/cpuerrata.c
xen/arch/arm/kernel.c
xen/arch/arm/livepatch.c

index d99b5070937d0fb0fe8aac2d7a424fc4ded65bc3..fec7dbd2cde9c6d6f50726a9d80baf58f2e2fc02 100644 (file)
@@ -209,8 +209,7 @@ void __init apply_alternatives_all(void)
      * The text and inittext section are read-only. So re-map Xen to
      * be able to patch the code.
      */
-    xenmap = __vmap(&xen_mfn, 1U << xen_order, 1, 1, PAGE_HYPERVISOR,
-                    VMAP_DEFAULT);
+    xenmap = vmap_contig(xen_mfn, 1U << xen_order);
     /* Re-mapping Xen is not expected to fail during boot. */
     BUG_ON(!xenmap);
 
index eef9c0ea0e2102146109c93cb2cc3d83ab4c01c4..17cf134f1b0dec7331a3384a3034d7e62e67ad26 100644 (file)
@@ -61,9 +61,8 @@ static bool copy_hyp_vect_bpi(unsigned int slot, const char *hyp_vec_start,
      * Vectors are part of the text that are mapped read-only. So re-map
      * the vector table to be able to update vectors.
      */
-    dst_remapped = __vmap(&dst_mfn,
-                          1UL << get_order_from_bytes(VECTOR_TABLE_SIZE),
-                          1, 1, PAGE_HYPERVISOR, VMAP_DEFAULT);
+    dst_remapped = vmap_contig(dst_mfn,
+                               1UL << get_order_from_bytes(VECTOR_TABLE_SIZE));
     if ( !dst_remapped )
         return false;
 
index 669d143cee1bf5e6621bae4df62fc32343b9467e..293d7efaed9c6ea8ca39644c909fb436e6bebbae 100644 (file)
@@ -211,7 +211,7 @@ static __init int kernel_decompress(struct bootmodule *mod, uint32_t offset)
         return -ENOMEM;
     }
     mfn = page_to_mfn(pages);
-    output = __vmap(&mfn, 1 << kernel_order_out, 1, 1, PAGE_HYPERVISOR, VMAP_DEFAULT);
+    output = vmap_contig(mfn, 1 << kernel_order_out);
 
     rc = perform_gunzip(output, input, size);
     clean_dcache_va_range(output, output_size);
index 037746d9528de59953b7d6e47069c6f626045695..3805b2974663846cc62924c63656e51ee22a2214 100644 (file)
@@ -39,8 +39,7 @@ int arch_livepatch_quiesce(void)
      * The text section is read-only. So re-map Xen to be able to patch
      * the code.
      */
-    vmap_of_xen_text = __vmap(&text_mfn, 1U << text_order, 1, 1, PAGE_HYPERVISOR,
-                              VMAP_DEFAULT);
+    vmap_of_xen_text = vmap_contig(text_mfn, 1U << text_order);
 
     if ( !vmap_of_xen_text )
     {