Re: [PATCH 11/16] target/riscv: move 'cbom_blocksize' to riscv_cpu_properties[]

2023-12-22 Thread Daniel Henrique Barboza
On 12/22/23 01:40, Richard Henderson wrote: On 12/22/23 04:51, Daniel Henrique Barboza wrote: +const PropertyInfo prop_cbom_blksize = { static?  Same for cboz in the next patch. Same in every other patch where I added a PropertyInfo it seems. I'll fix it in v2. Thanks, Daniel r~

Re: [PATCH 11/16] target/riscv: move 'cbom_blocksize' to riscv_cpu_properties[]

2023-12-21 Thread Richard Henderson
On 12/22/23 04:51, Daniel Henrique Barboza wrote: +const PropertyInfo prop_cbom_blksize = { static? Same for cboz in the next patch. r~

[PATCH 11/16] target/riscv: move 'cbom_blocksize' to riscv_cpu_properties[]

2023-12-21 Thread Daniel Henrique Barboza
After adding a KVM finalize() implementation, turn cbom_blocksize into a class property. Follow the same design we used with 'vlen' and 'elen'. The duplicated 'cbom_blocksize' KVM property can be removed from kvm_riscv_add_cpu_user_properties(). Signed-off-by: Daniel Henrique Barboza ---