[PATCH v2] cpu_map: Introduce Fujitsu a64fx

2022-09-01 Thread Liu Yiding
Add Fujitsu a64fx as a supported cpu model. Signed-off-by: Liu Yiding --- v2 of: https://listman.redhat.com/archives/libvir-list/2022-August/234040.html diff to v1: - Change title. - Unify model and vendor spelling. --- src/cpu_map/arm_a64fx.xml | 6 ++ src/cpu_map/arm_vendors.xml | 1

Re: [PATCH] cpu_map: Introduce A64FX

2022-08-31 Thread Liu Yiding
Hi Jiri On 8/31/22 20:30, Jiri Denemark wrote: On Wed, Aug 31, 2022 at 09:22:16 +, Liu Yiding wrote: Add A64FX as a supported cpu model. Signed-off-by: Liu Yiding --- src/cpu_map/arm_A64FX.xml | 6 ++ src/cpu_map/arm_vendors.xml | 1 + src/cpu_map/index.xml | 3 +++ src

[PATCH] cpu_map: Introduce A64FX

2022-08-31 Thread Liu Yiding
Add A64FX as a supported cpu model. Signed-off-by: Liu Yiding --- src/cpu_map/arm_A64FX.xml | 6 ++ src/cpu_map/arm_vendors.xml | 1 + src/cpu_map/index.xml | 3 +++ src/cpu_map/meson.build | 1 + 4 files changed, 11 insertions(+) create mode 100644 src/cpu_map/arm_A64FX.xml

[PATCH v2] conf: virDomainMemoryDefValidate: Improve error message

2022-06-27 Thread Liu Yiding
An explicit limit would be more user friendly. Add the limit to error message. Before this commit: ``` error: requested size must be smaller than or equal to @size ``` Now: ``` error: requested size must be smaller than or equal to @size (8388608KiB) ``` Signed-off-by: Liu Yiding --- src/conf

[PATCH] VIR_DOMAIN_MEMORY_MODEL_VIRTIO_MEM: Explicitly show max value in error message

2022-06-27 Thread Liu Yiding
Signed-off-by: Liu Yiding --- src/conf/domain_validate.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/conf/domain_validate.c b/src/conf/domain_validate.c index 33b6f47159..668210cd35 100644 --- a/src/conf/domain_validate.c +++ b/src/conf/domain_validate.c