Re: [PATCH for-9.2] accel/tcg: Fix user-only probe_access_internal plugin check

2024-11-11 Thread Alex Bennée
Richard Henderson writes: > The acc_flag check for write should have been against PAGE_WRITE_ORG, > not PAGE_WRITE. But it is better to combine two acc_flag checks > to a single check against access_type. This matches the system code > in cputlb.c. > > Resolves: https://gitlab.com/qemu-project/

[PATCH for-9.2] accel/tcg: Fix user-only probe_access_internal plugin check

2024-11-11 Thread Richard Henderson
The acc_flag check for write should have been against PAGE_WRITE_ORG, not PAGE_WRITE. But it is better to combine two acc_flag checks to a single check against access_type. This matches the system code in cputlb.c. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2647 Signed-off-by: Richa