Hi Julien,

> On 19 Jun 2023, at 19:01, Julien Grall <jul...@xen.org> wrote:
> 
> From: Julien Grall <jgr...@amazon.com>
> 
> Per the Arm Arm, (Armv7 DDI406C.d A3.8.3 and Armv8 DDI 0487J.a B2.3.12):
> 
> "The DMB and DSB memory barriers affect reads and writes to the memory
> system generated by load/store instructions and data or unified cache
> maintenance operations being executed by the processor. Instruction
> fetches or accesses caused by a hardware translation table access are
> not explicit accesses."
> 
> Note that second sentence is not part of the newer Armv8 spec. But the
> interpretation is not much different.
> 
> The updated entry will not be used until xen_pt_update() completes.
> So rather than adding the ISB after write_pte() in create_xen_table()
> and xen_pt-update_entry(), add it in xen_pt_update().
> 
> Also document the reasoning of the deferral after each write_pte() calls.
> 
> Fixes: 07d11f63d03e ("xen/arm: mm: Avoid flushing the TLBs when mapping are 
> inserted")
> Signed-off-by: Julien Grall <jgr...@amazon.com>

Reviewed-by: Bertrand Marquis <bertrand.marq...@arm.com>

Cheers
Bertrand

> ---
> xen/arch/arm/mm.c | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
> 
> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
> index e460249736c3..84e652799dd2 100644
> --- a/xen/arch/arm/mm.c
> +++ b/xen/arch/arm/mm.c
> @@ -779,6 +779,11 @@ static int create_xen_table(lpae_t *entry)
>     pte = mfn_to_xen_entry(mfn, MT_NORMAL);
>     pte.pt.table = 1;
>     write_pte(entry, pte);
> +    /*
> +     * No ISB here. It is deferred to xen_pt_update() as the new table
> +     * will not be used for hardware translation table access as part of
> +     * the mapping update.
> +     */
> 
>     return 0;
> }
> @@ -1017,6 +1022,10 @@ static int xen_pt_update_entry(mfn_t root, unsigned 
> long virt,
>     }
> 
>     write_pte(entry, pte);
> +    /*
> +     * No ISB or TLB flush here. They are deferred to xen_pt_update()
> +     * as the entry will not be used as part of the mapping update.
> +     */
> 
>     rc = 0;
> 
> @@ -1196,6 +1205,9 @@ static int xen_pt_update(unsigned long virt,
>     /*
>      * The TLBs flush can be safely skipped when a mapping is inserted
>      * as we don't allow mapping replacement (see xen_pt_check_entry()).
> +     * Although we still need an ISB to ensure any DSB in
> +     * write_pte() will complete because the mapping may be used soon
> +     * after.
>      *
>      * For all the other cases, the TLBs will be flushed unconditionally
>      * even if the mapping has failed. This is because we may have
> @@ -1204,6 +1216,8 @@ static int xen_pt_update(unsigned long virt,
>      */
>     if ( !((flags & _PAGE_PRESENT) && !mfn_eq(mfn, INVALID_MFN)) )
>         flush_xen_tlb_range_va(virt, PAGE_SIZE * nr_mfns);
> +    else
> +        isb();
> 
>     spin_unlock(&xen_pt_lock);
> 
> -- 
> 2.40.1
> 


Reply via email to