Re: [PATCH RESEND] target/riscv/cpu.c: fix Zvkb extension config

2024-05-13 Thread Yangyu Chen
I think this patch also needs to back-port to stable-8.2. I added qemu-sta...@nongnu.org to cc. > On May 11, 2024, at 19:26, Yangyu Chen wrote: > > This code has a typo that writes zvkb to zvkg, causing users can't > enable zvkb through the config. This patch gets this fixed

Re: [PATCH RESEND] target/riscv/cpu.c: fix Zvkb extension config

2024-05-11 Thread Yangyu Chen
Note: This patch should also backport to stable-v8.2. > On May 11, 2024, at 19:26, Yangyu Chen wrote: > > This code has a typo that writes zvkb to zvkg, causing users can't > enable zvkb through the config. This patch gets this fixed. > > Signed-off-by: Yangyu Chen

[PATCH] target/riscv/cpu.c: fix Zvkb extension config

2024-05-11 Thread Yangyu Chen
This code has a typo that writes zvkb to zvkg, causing users can't enable zvkb through the config. This patch gets this fixed. Signed-off-by: Yangyu Chen Fixes: ea61ef7097d0 ("target/riscv: Move vector crypto extensions to riscv_cpu_extensions") --- target/riscv/cpu.c | 2 +- 1

[PATCH RESEND] target/riscv/cpu.c: fix Zvkb extension config

2024-05-11 Thread Yangyu Chen
This code has a typo that writes zvkb to zvkg, causing users can't enable zvkb through the config. This patch gets this fixed. Signed-off-by: Yangyu Chen Fixes: ea61ef7097d0 ("target/riscv: Move vector crypto extensions to riscv_cpu_extensions") Reviewed-by: LIU Zhiwei --- tar