Re: [PATCH] hvf: arm: Fix hvf_sysreg_read_cp() call

2024-08-02 Thread Richard Henderson
On 8/2/24 18:37, Akihiko Odaki wrote: Commit 05b8d7249109 ("hvf: arm: Do not advance PC when raising an exception") changed val from uint64_t to a pointer to uint64_t in hvf_sysreg_read(), but didn't change its hvf_sysreg_read_cp() call. Fixes: 05b8d7249109 ("hvf: arm: Do not advance PC when rai

Re: [PATCH] hvf: arm: Fix hvf_sysreg_read_cp() call

2024-08-02 Thread Philippe Mathieu-Daudé
On 2/8/24 10:37, Akihiko Odaki wrote: Commit 05b8d7249109 ("hvf: arm: Do not advance PC when raising an exception") changed val from uint64_t to a pointer to uint64_t in hvf_sysreg_read(), but didn't change its hvf_sysreg_read_cp() call. Fixes: 05b8d7249109 ("hvf: arm: Do not advance PC when rai

Re: [PATCH] hvf: arm: Fix hvf_sysreg_read_cp() call

2024-08-02 Thread Richard Henderson
On 8/2/24 18:44, Peter Maydell wrote: On Fri, 2 Aug 2024 at 09:37, Akihiko Odaki wrote: Commit 05b8d7249109 ("hvf: arm: Do not advance PC when raising an exception") changed val from uint64_t to a pointer to uint64_t in hvf_sysreg_read(), but didn't change its hvf_sysreg_read_cp() call. Fixes

Re: [PATCH] hvf: arm: Fix hvf_sysreg_read_cp() call

2024-08-02 Thread Peter Maydell
On Fri, 2 Aug 2024 at 09:37, Akihiko Odaki wrote: > > Commit 05b8d7249109 ("hvf: arm: Do not advance PC when raising an > exception") changed val from uint64_t to a pointer to uint64_t in > hvf_sysreg_read(), but didn't change its hvf_sysreg_read_cp() call. > > Fixes: 05b8d7249109 ("hvf: arm: Do n

[PATCH] hvf: arm: Fix hvf_sysreg_read_cp() call

2024-08-02 Thread Akihiko Odaki
Commit 05b8d7249109 ("hvf: arm: Do not advance PC when raising an exception") changed val from uint64_t to a pointer to uint64_t in hvf_sysreg_read(), but didn't change its hvf_sysreg_read_cp() call. Fixes: 05b8d7249109 ("hvf: arm: Do not advance PC when raising an exception") Reported-by: Richard