Re: [PATCH v3 12/12] target/riscv: Simplify probing in vext_ldff

2024-07-22 Thread Max Chou
Reviewed-by: Max Chou On 2024/7/19 9:07 AM, Richard Henderson wrote: The current pairing of tlb_vaddr_to_host with extra is either inefficient (user-only, with page_check_range) or incorrect (system, with probe_pages). For proper non-fault behaviour, use probe_access_flags with its nonfault pa

[PATCH v3 12/12] target/riscv: Simplify probing in vext_ldff

2024-07-18 Thread Richard Henderson
The current pairing of tlb_vaddr_to_host with extra is either inefficient (user-only, with page_check_range) or incorrect (system, with probe_pages). For proper non-fault behaviour, use probe_access_flags with its nonfault parameter set to true. Acked-by: Alistair Francis Signed-off-by: Richard