Re: [PATCH v2 2/4] target/arm/kvm64: Ensure sve vls map is completely clear

2021-08-23 Thread Richard Henderson
On 8/23/21 9:06 AM, Andrew Jones wrote: bitmap_clear() only clears the given range. While the given range should be sufficient in this case we might as well be 100% sure all bits are zeroed by using bitmap_zero(). Signed-off-by: Andrew Jones Reviewed-by: Philippe Mathieu-Daudé --- target/arm/k

[PATCH v2 2/4] target/arm/kvm64: Ensure sve vls map is completely clear

2021-08-23 Thread Andrew Jones
bitmap_clear() only clears the given range. While the given range should be sufficient in this case we might as well be 100% sure all bits are zeroed by using bitmap_zero(). Signed-off-by: Andrew Jones Reviewed-by: Philippe Mathieu-Daudé --- target/arm/kvm64.c | 2 +- 1 file changed, 1 insertio