* [PATCH v2 1/7] error: Drop superfluous #include "qapi/qmp/qerror.h"
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-10 15:01 ` [PATCH v2 2/7] block: Improve errors about block sizes Markus Armbruster
` (5 subsequent siblings)
6 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
qga/commands-bsd.c | 1 -
qga/commands-linux.c | 1 -
qga/commands-posix.c | 1 -
3 files changed, 3 deletions(-)
diff --git a/qga/commands-bsd.c b/qga/commands-bsd.c
index 9ce48af311..94ff6fee6a 100644
--- a/qga/commands-bsd.c
+++ b/qga/commands-bsd.c
@@ -12,7 +12,6 @@
#include "qemu/osdep.h"
#include "qga-qapi-commands.h"
-#include "qapi/qmp/qerror.h"
#include "qapi/error.h"
#include "qemu/queue.h"
#include "commands-common.h"
diff --git a/qga/commands-linux.c b/qga/commands-linux.c
index 51d5e3d927..9b1746b24f 100644
--- a/qga/commands-linux.c
+++ b/qga/commands-linux.c
@@ -15,7 +15,6 @@
#include "qapi/error.h"
#include "qga-qapi-commands.h"
#include "qapi/error.h"
-#include "qapi/qmp/qerror.h"
#include "commands-common.h"
#include "cutils.h"
#include <mntent.h>
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index c2bd0b4316..389c5eeb5d 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -18,7 +18,6 @@
#include <dirent.h>
#include "qga-qapi-commands.h"
#include "qapi/error.h"
-#include "qapi/qmp/qerror.h"
#include "qemu/host-utils.h"
#include "qemu/sockets.h"
#include "qemu/base64.h"
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v2 2/7] block: Improve errors about block sizes
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
2024-10-10 15:01 ` [PATCH v2 1/7] error: Drop superfluous #include "qapi/qmp/qerror.h" Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-10 15:01 ` [PATCH v2 3/7] block: Adjust check_block_size() signature Markus Armbruster
` (4 subsequent siblings)
6 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
Block sizes need to be a power of two between 512 and an arbitrary
limit, currently 2MiB.
Commit 5937835ac4c factored block size checking out of set_blocksize()
into new check_block_size(), for reuse in block/export/.
Its two error messages are okay for the original purpose:
$ qemu-system-x86_64 -device ide-hd,physical_block_size=1
qemu-system-x86_64: -device ide-hd,physical_block_size=1: Property .physical_block_size doesn't take value 1 (minimum: 512, maximum: 2097152)
$ qemu-system-x86_64 -device ide-hd,physical_block_size=513
qemu-system-x86_64: -device ide-hd,physical_block_size=513: Property .physical_block_size doesn't take value '513', it's not a power of 2
They're mildly off for block exports:
$ qemu-storage-daemon --blockdev node-name=nod0,driver=file,filename=foo.img --export type=vduse-blk,id=exp0,node-name=nod0,name=foo,logical-block-size=1
qemu-storage-daemon: --export type=vduse-blk,id=exp0,node-name=nod0,name=foo,logical-block-size=1: Property exp0.logical-block-size doesn't take value 1 (minimum: 512, maximum: 2097152)
The error message talks about a property. CLI options like --export
don't have properties, they have parameters.
Replace the two error messages by a single one that's okay for both
purposes. Looks like this:
qemu-storage-daemon: --export type=vduse-blk,id=exp0,node-name=nod0,name=foo,logical-block-size=1: parameter logical-block-size must be a power of 2 between 512 and 2097152
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
util/block-helpers.c | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/util/block-helpers.c b/util/block-helpers.c
index c4851432f5..fb5de348e2 100644
--- a/util/block-helpers.c
+++ b/util/block-helpers.c
@@ -10,7 +10,6 @@
#include "qemu/osdep.h"
#include "qapi/error.h"
-#include "qapi/qmp/qerror.h"
#include "block-helpers.h"
/**
@@ -28,19 +27,16 @@
void check_block_size(const char *id, const char *name, int64_t value,
Error **errp)
{
- /* value of 0 means "unset" */
- if (value && (value < MIN_BLOCK_SIZE || value > MAX_BLOCK_SIZE)) {
- error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE,
- id, name, value, MIN_BLOCK_SIZE, MAX_BLOCK_SIZE);
+ if (!value) {
+ /* unset */
return;
}
- /* We rely on power-of-2 blocksizes for bitmasks */
- if ((value & (value - 1)) != 0) {
+ if (value < MIN_BLOCK_SIZE || value > MAX_BLOCK_SIZE
+ || (value & (value - 1))) {
error_setg(errp,
- "Property %s.%s doesn't take value '%" PRId64
- "', it's not a power of 2",
- id, name, value);
- return;
+ "parameter %s must be a power of 2 between %" PRId64
+ " and %" PRId64,
+ name, MIN_BLOCK_SIZE, MAX_BLOCK_SIZE);
}
}
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v2 3/7] block: Adjust check_block_size() signature
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
2024-10-10 15:01 ` [PATCH v2 1/7] error: Drop superfluous #include "qapi/qmp/qerror.h" Markus Armbruster
2024-10-10 15:01 ` [PATCH v2 2/7] block: Improve errors about block sizes Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-10 16:38 ` Philippe Mathieu-Daudé
2024-10-10 15:01 ` [PATCH v2 4/7] target/i386/cpu: Avoid mixing signed and unsigned in property setters Markus Armbruster
` (3 subsequent siblings)
6 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
Parameter @id is no longer used, drop. Return a bool to indicate
success / failure, as recommended by qapi/error.h.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
util/block-helpers.h | 3 +--
block/export/vduse-blk.c | 7 ++-----
block/export/vhost-user-blk-server.c | 6 +-----
hw/core/qdev-properties-system.c | 6 +-----
util/block-helpers.c | 10 ++++++----
5 files changed, 11 insertions(+), 21 deletions(-)
diff --git a/util/block-helpers.h b/util/block-helpers.h
index b53295a529..838b0825f6 100644
--- a/util/block-helpers.h
+++ b/util/block-helpers.h
@@ -13,7 +13,6 @@
#define MAX_BLOCK_SIZE (2 * MiB)
#define MAX_BLOCK_SIZE_STR "2 MiB"
-void check_block_size(const char *id, const char *name, int64_t value,
- Error **errp);
+bool check_block_size(const char *name, int64_t value, Error **errp);
#endif /* BLOCK_HELPERS_H */
diff --git a/block/export/vduse-blk.c b/block/export/vduse-blk.c
index 172f73cef4..bd852e538d 100644
--- a/block/export/vduse-blk.c
+++ b/block/export/vduse-blk.c
@@ -273,7 +273,6 @@ static int vduse_blk_exp_create(BlockExport *exp, BlockExportOptions *opts,
uint64_t logical_block_size = VIRTIO_BLK_SECTOR_SIZE;
uint16_t num_queues = VDUSE_DEFAULT_NUM_QUEUE;
uint16_t queue_size = VDUSE_DEFAULT_QUEUE_SIZE;
- Error *local_err = NULL;
struct virtio_blk_config config = { 0 };
uint64_t features;
int i, ret;
@@ -297,10 +296,8 @@ static int vduse_blk_exp_create(BlockExport *exp, BlockExportOptions *opts,
if (vblk_opts->has_logical_block_size) {
logical_block_size = vblk_opts->logical_block_size;
- check_block_size(exp->id, "logical-block-size", logical_block_size,
- &local_err);
- if (local_err) {
- error_propagate(errp, local_err);
+ if (!check_block_size("logical-block-size", logical_block_size,
+ errp)) {
return -EINVAL;
}
}
diff --git a/block/export/vhost-user-blk-server.c b/block/export/vhost-user-blk-server.c
index 50c358e8cd..d9d2014d9b 100644
--- a/block/export/vhost-user-blk-server.c
+++ b/block/export/vhost-user-blk-server.c
@@ -319,7 +319,6 @@ static int vu_blk_exp_create(BlockExport *exp, BlockExportOptions *opts,
{
VuBlkExport *vexp = container_of(exp, VuBlkExport, export);
BlockExportOptionsVhostUserBlk *vu_opts = &opts->u.vhost_user_blk;
- Error *local_err = NULL;
uint64_t logical_block_size;
uint16_t num_queues = VHOST_USER_BLK_NUM_QUEUES_DEFAULT;
@@ -330,10 +329,7 @@ static int vu_blk_exp_create(BlockExport *exp, BlockExportOptions *opts,
} else {
logical_block_size = VIRTIO_BLK_SECTOR_SIZE;
}
- check_block_size(exp->id, "logical-block-size", logical_block_size,
- &local_err);
- if (local_err) {
- error_propagate(errp, local_err);
+ if (!check_block_size("logical-block-size", logical_block_size, errp)) {
return -EINVAL;
}
diff --git a/hw/core/qdev-properties-system.c b/hw/core/qdev-properties-system.c
index 60bcd821de..35deef05f3 100644
--- a/hw/core/qdev-properties-system.c
+++ b/hw/core/qdev-properties-system.c
@@ -588,18 +588,14 @@ const PropertyInfo qdev_prop_losttickpolicy = {
static void set_blocksize(Object *obj, Visitor *v, const char *name,
void *opaque, Error **errp)
{
- DeviceState *dev = DEVICE(obj);
Property *prop = opaque;
uint32_t *ptr = object_field_prop_ptr(obj, prop);
uint64_t value;
- Error *local_err = NULL;
if (!visit_type_size(v, name, &value, errp)) {
return;
}
- check_block_size(dev->id ? : "", name, value, &local_err);
- if (local_err) {
- error_propagate(errp, local_err);
+ if (!check_block_size(name, value, errp)) {
return;
}
*ptr = value;
diff --git a/util/block-helpers.c b/util/block-helpers.c
index fb5de348e2..052b4e1476 100644
--- a/util/block-helpers.c
+++ b/util/block-helpers.c
@@ -14,7 +14,6 @@
/**
* check_block_size:
- * @id: The unique ID of the object
* @name: The name of the property being validated
* @value: The block size in bytes
* @errp: A pointer to an area to store an error
@@ -23,13 +22,14 @@
* 1. At least MIN_BLOCK_SIZE
* 2. No larger than MAX_BLOCK_SIZE
* 3. A power of 2
+ *
+ * Returns: true on success, false on failure
*/
-void check_block_size(const char *id, const char *name, int64_t value,
- Error **errp)
+bool check_block_size(const char *name, int64_t value, Error **errp)
{
if (!value) {
/* unset */
- return;
+ return true;
}
if (value < MIN_BLOCK_SIZE || value > MAX_BLOCK_SIZE
@@ -38,5 +38,7 @@ void check_block_size(const char *id, const char *name, int64_t value,
"parameter %s must be a power of 2 between %" PRId64
" and %" PRId64,
name, MIN_BLOCK_SIZE, MAX_BLOCK_SIZE);
+ return false;
}
+ return true;
}
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v2 3/7] block: Adjust check_block_size() signature
2024-10-10 15:01 ` [PATCH v2 3/7] block: Adjust check_block_size() signature Markus Armbruster
@ 2024-10-10 16:38 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 18+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-10 16:38 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block
On 10/10/24 12:01, Markus Armbruster wrote:
> Parameter @id is no longer used, drop. Return a bool to indicate
> success / failure, as recommended by qapi/error.h.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> util/block-helpers.h | 3 +--
> block/export/vduse-blk.c | 7 ++-----
> block/export/vhost-user-blk-server.c | 6 +-----
> hw/core/qdev-properties-system.c | 6 +-----
> util/block-helpers.c | 10 ++++++----
> 5 files changed, 11 insertions(+), 21 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v2 4/7] target/i386/cpu: Avoid mixing signed and unsigned in property setters
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
` (2 preceding siblings ...)
2024-10-10 15:01 ` [PATCH v2 3/7] block: Adjust check_block_size() signature Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-11 12:23 ` Igor Mammedov
2024-10-10 15:01 ` [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values Markus Armbruster
` (2 subsequent siblings)
6 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
Properties "family", "model", and "stepping" are visited as signed
integers. They are backed by bits in CPUX86State member
@cpuid_version. The code to extract and insert these bits mixes
signed and unsigned. Not actually wrong, but avoiding such mixing is
good practice.
Visit them as unsigned integers instead.
This adds a few mildly ugly cast in arguments of error_setg(). The
next commit will get rid of them again.
Property "tsc-frequency" is also visited as signed integer. The value
ultimately flows into the kernel, where it is 31 bits unsigned. The
QEMU code freely mixes int, uint32_t, int64_t. I elect not to attempt
draining this swamp today.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
target/i386/cpu.c | 45 +++++++++++++++++++++------------------------
1 file changed, 21 insertions(+), 24 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index ff227a8c5c..4f8fa60432 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -5433,13 +5433,13 @@ static void x86_cpuid_version_get_family(Object *obj, Visitor *v,
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
- int64_t value;
+ uint64_t value;
value = (env->cpuid_version >> 8) & 0xf;
if (value == 0xf) {
value += (env->cpuid_version >> 20) & 0xff;
}
- visit_type_int(v, name, &value, errp);
+ visit_type_uint64(v, name, &value, errp);
}
static void x86_cpuid_version_set_family(Object *obj, Visitor *v,
@@ -5448,16 +5448,15 @@ static void x86_cpuid_version_set_family(Object *obj, Visitor *v,
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
- const int64_t min = 0;
- const int64_t max = 0xff + 0xf;
- int64_t value;
+ const uint64_t max = 0xff + 0xf;
+ uint64_t value;
- if (!visit_type_int(v, name, &value, errp)) {
+ if (!visit_type_uint64(v, name, &value, errp)) {
return;
}
- if (value < min || value > max) {
+ if (value > max) {
error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, min, max);
+ name ? name : "null", value, (int64_t)0, (int64_t)max);
return;
}
@@ -5475,11 +5474,11 @@ static void x86_cpuid_version_get_model(Object *obj, Visitor *v,
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
- int64_t value;
+ uint64_t value;
value = (env->cpuid_version >> 4) & 0xf;
value |= ((env->cpuid_version >> 16) & 0xf) << 4;
- visit_type_int(v, name, &value, errp);
+ visit_type_uint64(v, name, &value, errp);
}
static void x86_cpuid_version_set_model(Object *obj, Visitor *v,
@@ -5488,16 +5487,15 @@ static void x86_cpuid_version_set_model(Object *obj, Visitor *v,
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
- const int64_t min = 0;
- const int64_t max = 0xff;
- int64_t value;
+ const uint64_t max = 0xff;
+ uint64_t value;
- if (!visit_type_int(v, name, &value, errp)) {
+ if (!visit_type_uint64(v, name, &value, errp)) {
return;
}
- if (value < min || value > max) {
+ if (value > max) {
error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, min, max);
+ name ? name : "null", value, (int64_t)0, (int64_t)max);
return;
}
@@ -5511,10 +5509,10 @@ static void x86_cpuid_version_get_stepping(Object *obj, Visitor *v,
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
- int64_t value;
+ uint64_t value;
value = env->cpuid_version & 0xf;
- visit_type_int(v, name, &value, errp);
+ visit_type_uint64(v, name, &value, errp);
}
static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
@@ -5523,16 +5521,15 @@ static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
- const int64_t min = 0;
- const int64_t max = 0xf;
- int64_t value;
+ const uint64_t max = 0xf;
+ uint64_t value;
- if (!visit_type_int(v, name, &value, errp)) {
+ if (!visit_type_uint64(v, name, &value, errp)) {
return;
}
- if (value < min || value > max) {
+ if (value > max) {
error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, min, max);
+ name ? name : "null", value, (int64_t)0, (int64_t)max);
return;
}
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v2 4/7] target/i386/cpu: Avoid mixing signed and unsigned in property setters
2024-10-10 15:01 ` [PATCH v2 4/7] target/i386/cpu: Avoid mixing signed and unsigned in property setters Markus Armbruster
@ 2024-10-11 12:23 ` Igor Mammedov
0 siblings, 0 replies; 18+ messages in thread
From: Igor Mammedov @ 2024-10-11 12:23 UTC (permalink / raw)
To: Markus Armbruster
Cc: qemu-devel, xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini,
berrange, eduardo, mark.cave-ayland, michael.roth, kkostiuk,
qemu-block, philmd
On Thu, 10 Oct 2024 17:01:41 +0200
Markus Armbruster <armbru@redhat.com> wrote:
> Properties "family", "model", and "stepping" are visited as signed
> integers. They are backed by bits in CPUX86State member
> @cpuid_version. The code to extract and insert these bits mixes
> signed and unsigned. Not actually wrong, but avoiding such mixing is
> good practice.
>
> Visit them as unsigned integers instead.
>
> This adds a few mildly ugly cast in arguments of error_setg(). The
> next commit will get rid of them again.
>
> Property "tsc-frequency" is also visited as signed integer. The value
> ultimately flows into the kernel, where it is 31 bits unsigned. The
> QEMU code freely mixes int, uint32_t, int64_t. I elect not to attempt
> draining this swamp today.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
> ---
> target/i386/cpu.c | 45 +++++++++++++++++++++------------------------
> 1 file changed, 21 insertions(+), 24 deletions(-)
>
> diff --git a/target/i386/cpu.c b/target/i386/cpu.c
> index ff227a8c5c..4f8fa60432 100644
> --- a/target/i386/cpu.c
> +++ b/target/i386/cpu.c
> @@ -5433,13 +5433,13 @@ static void x86_cpuid_version_get_family(Object *obj, Visitor *v,
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> - int64_t value;
> + uint64_t value;
>
> value = (env->cpuid_version >> 8) & 0xf;
> if (value == 0xf) {
> value += (env->cpuid_version >> 20) & 0xff;
> }
> - visit_type_int(v, name, &value, errp);
> + visit_type_uint64(v, name, &value, errp);
> }
>
> static void x86_cpuid_version_set_family(Object *obj, Visitor *v,
> @@ -5448,16 +5448,15 @@ static void x86_cpuid_version_set_family(Object *obj, Visitor *v,
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> - const int64_t min = 0;
> - const int64_t max = 0xff + 0xf;
> - int64_t value;
> + const uint64_t max = 0xff + 0xf;
> + uint64_t value;
>
> - if (!visit_type_int(v, name, &value, errp)) {
> + if (!visit_type_uint64(v, name, &value, errp)) {
> return;
> }
> - if (value < min || value > max) {
> + if (value > max) {
> error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, min, max);
> + name ? name : "null", value, (int64_t)0, (int64_t)max);
> return;
> }
>
> @@ -5475,11 +5474,11 @@ static void x86_cpuid_version_get_model(Object *obj, Visitor *v,
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> - int64_t value;
> + uint64_t value;
>
> value = (env->cpuid_version >> 4) & 0xf;
> value |= ((env->cpuid_version >> 16) & 0xf) << 4;
> - visit_type_int(v, name, &value, errp);
> + visit_type_uint64(v, name, &value, errp);
> }
>
> static void x86_cpuid_version_set_model(Object *obj, Visitor *v,
> @@ -5488,16 +5487,15 @@ static void x86_cpuid_version_set_model(Object *obj, Visitor *v,
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> - const int64_t min = 0;
> - const int64_t max = 0xff;
> - int64_t value;
> + const uint64_t max = 0xff;
> + uint64_t value;
>
> - if (!visit_type_int(v, name, &value, errp)) {
> + if (!visit_type_uint64(v, name, &value, errp)) {
> return;
> }
> - if (value < min || value > max) {
> + if (value > max) {
> error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, min, max);
> + name ? name : "null", value, (int64_t)0, (int64_t)max);
> return;
> }
>
> @@ -5511,10 +5509,10 @@ static void x86_cpuid_version_get_stepping(Object *obj, Visitor *v,
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> - int64_t value;
> + uint64_t value;
>
> value = env->cpuid_version & 0xf;
> - visit_type_int(v, name, &value, errp);
> + visit_type_uint64(v, name, &value, errp);
> }
>
> static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
> @@ -5523,16 +5521,15 @@ static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
> {
> X86CPU *cpu = X86_CPU(obj);
> CPUX86State *env = &cpu->env;
> - const int64_t min = 0;
> - const int64_t max = 0xf;
> - int64_t value;
> + const uint64_t max = 0xf;
> + uint64_t value;
>
> - if (!visit_type_int(v, name, &value, errp)) {
> + if (!visit_type_uint64(v, name, &value, errp)) {
> return;
> }
> - if (value < min || value > max) {
> + if (value > max) {
> error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, min, max);
> + name ? name : "null", value, (int64_t)0, (int64_t)max);
> return;
> }
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
` (3 preceding siblings ...)
2024-10-10 15:01 ` [PATCH v2 4/7] target/i386/cpu: Avoid mixing signed and unsigned in property setters Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-10 17:38 ` Philippe Mathieu-Daudé
2024-10-11 12:24 ` Igor Mammedov
2024-10-10 15:01 ` [PATCH v2 6/7] hw/intc/openpic: " Markus Armbruster
2024-10-10 15:01 ` [PATCH v2 7/7] qerror: QERR_PROPERTY_VALUE_OUT_OF_RANGE is no longer used, drop Markus Armbruster
6 siblings, 2 replies; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
The error message for a "stepping" value that is out of bounds is a
bit odd:
$ qemu-system-x86_64 -cpu qemu64,stepping=16
qemu-system-x86_64: can't apply global qemu64-x86_64-cpu.stepping=16: Property .stepping doesn't take value 16 (minimum: 0, maximum: 15)
The "can't apply global" part is an unfortunate artifact of -cpu's
implementation. Left for another day.
The remainder feels overly verbose. Change it to
qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=16: parameter 'stepping' can be at most 15
Likewise for "family", "model", and "tsc-frequency".
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
target/i386/cpu.c | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 4f8fa60432..de2c7041c5 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -31,7 +31,6 @@
#include "qapi/error.h"
#include "qemu/error-report.h"
#include "qapi/qapi-visit-machine.h"
-#include "qapi/qmp/qerror.h"
#include "standard-headers/asm-x86/kvm_para.h"
#include "hw/qdev-properties.h"
#include "hw/i386/topology.h"
@@ -5455,8 +5454,8 @@ static void x86_cpuid_version_set_family(Object *obj, Visitor *v,
return;
}
if (value > max) {
- error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, (int64_t)0, (int64_t)max);
+ error_setg(errp, "parameter '%s' can be at most %" PRIu64,
+ name ? name : "null", max);
return;
}
@@ -5494,8 +5493,8 @@ static void x86_cpuid_version_set_model(Object *obj, Visitor *v,
return;
}
if (value > max) {
- error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, (int64_t)0, (int64_t)max);
+ error_setg(errp, "parameter '%s' can be at most %" PRIu64,
+ name ? name : "null", max);
return;
}
@@ -5528,8 +5527,8 @@ static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
return;
}
if (value > max) {
- error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, (int64_t)0, (int64_t)max);
+ error_setg(errp, "parameter '%s' can be at most %" PRIu64,
+ name ? name : "null", max);
return;
}
@@ -5623,16 +5622,15 @@ static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, const char *name,
void *opaque, Error **errp)
{
X86CPU *cpu = X86_CPU(obj);
- const int64_t min = 0;
const int64_t max = INT64_MAX;
int64_t value;
if (!visit_type_int(v, name, &value, errp)) {
return;
}
- if (value < min || value > max) {
- error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
- name ? name : "null", value, min, max);
+ if (value < 0 || value > max) {
+ error_setg(errp, "parameter '%s' can be at most %" PRId64,
+ name ? name : "null", max);
return;
}
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values
2024-10-10 15:01 ` [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values Markus Armbruster
@ 2024-10-10 17:38 ` Philippe Mathieu-Daudé
2024-10-10 19:25 ` Markus Armbruster
2024-10-11 12:24 ` Igor Mammedov
1 sibling, 1 reply; 18+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-10 17:38 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block
On 10/10/24 12:01, Markus Armbruster wrote:
> The error message for a "stepping" value that is out of bounds is a
> bit odd:
>
> $ qemu-system-x86_64 -cpu qemu64,stepping=16
> qemu-system-x86_64: can't apply global qemu64-x86_64-cpu.stepping=16: Property .stepping doesn't take value 16 (minimum: 0, maximum: 15)
>
> The "can't apply global" part is an unfortunate artifact of -cpu's
> implementation. Left for another day.
>
> The remainder feels overly verbose. Change it to
>
> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=16: parameter 'stepping' can be at most 15
>
> Likewise for "family", "model", and "tsc-frequency".
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> target/i386/cpu.c | 20 +++++++++-----------
> 1 file changed, 9 insertions(+), 11 deletions(-)
> @@ -5623,16 +5622,15 @@ static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, const char *name,
> void *opaque, Error **errp)
> {
> X86CPU *cpu = X86_CPU(obj);
> - const int64_t min = 0;
> const int64_t max = INT64_MAX;
> int64_t value;
>
> if (!visit_type_int(v, name, &value, errp)) {
> return;
> }
> - if (value < min || value > max) {
> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, min, max);
> + if (value < 0 || value > max) {
> + error_setg(errp, "parameter '%s' can be at most %" PRId64,
> + name ? name : "null", max);
Confusing:
qemu64-x86_64-cpu: can't apply global
qemu64-x86_64-cpu.stepping=-1: parameter 'stepping' can be at most 15
> return;
> }
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values
2024-10-10 17:38 ` Philippe Mathieu-Daudé
@ 2024-10-10 19:25 ` Markus Armbruster
2024-10-11 15:11 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 19:25 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: qemu-devel, xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini,
berrange, eduardo, mark.cave-ayland, michael.roth, kkostiuk,
qemu-block
Philippe Mathieu-Daudé <philmd@linaro.org> writes:
> On 10/10/24 12:01, Markus Armbruster wrote:
>> The error message for a "stepping" value that is out of bounds is a
>> bit odd:
>> $ qemu-system-x86_64 -cpu qemu64,stepping=16
>> qemu-system-x86_64: can't apply global qemu64-x86_64-cpu.stepping=16: Property .stepping doesn't take value 16 (minimum: 0, maximum: 15)
>> The "can't apply global" part is an unfortunate artifact of -cpu's
>> implementation. Left for another day.
>> The remainder feels overly verbose. Change it to
>> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=16: parameter 'stepping' can be at most 15
>> Likewise for "family", "model", and "tsc-frequency".
>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>> ---
>> target/i386/cpu.c | 20 +++++++++-----------
>> 1 file changed, 9 insertions(+), 11 deletions(-)
>
>
>> @@ -5623,16 +5622,15 @@ static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, const char *name,
>> void *opaque, Error **errp)
>> {
>> X86CPU *cpu = X86_CPU(obj);
>> - const int64_t min = 0;
>> const int64_t max = INT64_MAX;
>> int64_t value;
>> if (!visit_type_int(v, name, &value, errp)) {
>> return;
>> }
>> - if (value < min || value > max) {
>> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
>> - name ? name : "null", value, min, max);
>> + if (value < 0 || value > max) {
>> + error_setg(errp, "parameter '%s' can be at most %" PRId64,
>> + name ? name : "null", max);
>
> Confusing:
>
> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=-1: parameter 'stepping' can be at most 15
For better or worse, visit_type_uint64() with the string input visitor
parses -1 modulo 2^64, i.e. as 2^64-1, just like strtoul() & friends.
>> return;
>> }
>>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values
2024-10-10 19:25 ` Markus Armbruster
@ 2024-10-11 15:11 ` Philippe Mathieu-Daudé
2024-10-15 4:45 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-11 15:11 UTC (permalink / raw)
To: Markus Armbruster
Cc: qemu-devel, xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini,
berrange, eduardo, mark.cave-ayland, michael.roth, kkostiuk,
qemu-block
On 10/10/24 16:25, Markus Armbruster wrote:
> Philippe Mathieu-Daudé <philmd@linaro.org> writes:
>
>> On 10/10/24 12:01, Markus Armbruster wrote:
>>> The error message for a "stepping" value that is out of bounds is a
>>> bit odd:
>>> $ qemu-system-x86_64 -cpu qemu64,stepping=16
>>> qemu-system-x86_64: can't apply global qemu64-x86_64-cpu.stepping=16: Property .stepping doesn't take value 16 (minimum: 0, maximum: 15)
>>> The "can't apply global" part is an unfortunate artifact of -cpu's
>>> implementation. Left for another day.
>>> The remainder feels overly verbose. Change it to
>>> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=16: parameter 'stepping' can be at most 15
>>> Likewise for "family", "model", and "tsc-frequency".
>>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>>> ---
>>> target/i386/cpu.c | 20 +++++++++-----------
>>> 1 file changed, 9 insertions(+), 11 deletions(-)
>>
>>
>>> @@ -5623,16 +5622,15 @@ static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, const char *name,
>>> void *opaque, Error **errp)
>>> {
>>> X86CPU *cpu = X86_CPU(obj);
>>> - const int64_t min = 0;
>>> const int64_t max = INT64_MAX;
>>> int64_t value;
>>> if (!visit_type_int(v, name, &value, errp)) {
>>> return;
>>> }
>>> - if (value < min || value > max) {
>>> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
>>> - name ? name : "null", value, min, max);
>>> + if (value < 0 || value > max) {
>>> + error_setg(errp, "parameter '%s' can be at most %" PRId64,
>>> + name ? name : "null", max);
>>
>> Confusing:
>>
>> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=-1: parameter 'stepping' can be at most 15
>
> For better or worse, visit_type_uint64() with the string input visitor
> parses -1 modulo 2^64, i.e. as 2^64-1, just like strtoul() & friends.
Would "parameter 'stepping' must be between 1 and 15" be clearer?
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values
2024-10-11 15:11 ` Philippe Mathieu-Daudé
@ 2024-10-15 4:45 ` Markus Armbruster
0 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2024-10-15 4:45 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: qemu-devel, xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini,
berrange, eduardo, mark.cave-ayland, michael.roth, kkostiuk,
qemu-block
Philippe Mathieu-Daudé <philmd@linaro.org> writes:
> On 10/10/24 16:25, Markus Armbruster wrote:
>> Philippe Mathieu-Daudé <philmd@linaro.org> writes:
>>
>>> On 10/10/24 12:01, Markus Armbruster wrote:
>>>> The error message for a "stepping" value that is out of bounds is a
>>>> bit odd:
>>>> $ qemu-system-x86_64 -cpu qemu64,stepping=16
>>>> qemu-system-x86_64: can't apply global qemu64-x86_64-cpu.stepping=16: Property .stepping doesn't take value 16 (minimum: 0, maximum: 15)
>>>> The "can't apply global" part is an unfortunate artifact of -cpu's
>>>> implementation. Left for another day.
>>>> The remainder feels overly verbose. Change it to
>>>> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=16: parameter 'stepping' can be at most 15
>>>> Likewise for "family", "model", and "tsc-frequency".
>>>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
[...]
>>> Confusing:
>>>
>>> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=-1: parameter 'stepping' can be at most 15
>>
>> For better or worse, visit_type_uint64() with the string input visitor
>> parses -1 modulo 2^64, i.e. as 2^64-1, just like strtoul() & friends.
I wish we had avoided that design mistake. Likely too late to fix now.
The JSON parser gets it right.
> Would "parameter 'stepping' must be between 1 and 15" be clearer?
It might be clearer and would be wronger: zero is a valid value.
I could do "must be between 0 and 15". But "stepping" is a *counter*.
A negative stepping makes no sense to me.
Same for model and family.
More so for tsc-frequency.
Thoughts?
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values
2024-10-10 15:01 ` [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values Markus Armbruster
2024-10-10 17:38 ` Philippe Mathieu-Daudé
@ 2024-10-11 12:24 ` Igor Mammedov
1 sibling, 0 replies; 18+ messages in thread
From: Igor Mammedov @ 2024-10-11 12:24 UTC (permalink / raw)
To: Markus Armbruster
Cc: qemu-devel, xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini,
berrange, eduardo, mark.cave-ayland, michael.roth, kkostiuk,
qemu-block, philmd
On Thu, 10 Oct 2024 17:01:42 +0200
Markus Armbruster <armbru@redhat.com> wrote:
> The error message for a "stepping" value that is out of bounds is a
> bit odd:
>
> $ qemu-system-x86_64 -cpu qemu64,stepping=16
> qemu-system-x86_64: can't apply global qemu64-x86_64-cpu.stepping=16: Property .stepping doesn't take value 16 (minimum: 0, maximum: 15)
>
> The "can't apply global" part is an unfortunate artifact of -cpu's
> implementation. Left for another day.
>
> The remainder feels overly verbose. Change it to
>
> qemu64-x86_64-cpu: can't apply global qemu64-x86_64-cpu.stepping=16: parameter 'stepping' can be at most 15
>
> Likewise for "family", "model", and "tsc-frequency".
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
> ---
> target/i386/cpu.c | 20 +++++++++-----------
> 1 file changed, 9 insertions(+), 11 deletions(-)
>
> diff --git a/target/i386/cpu.c b/target/i386/cpu.c
> index 4f8fa60432..de2c7041c5 100644
> --- a/target/i386/cpu.c
> +++ b/target/i386/cpu.c
> @@ -31,7 +31,6 @@
> #include "qapi/error.h"
> #include "qemu/error-report.h"
> #include "qapi/qapi-visit-machine.h"
> -#include "qapi/qmp/qerror.h"
> #include "standard-headers/asm-x86/kvm_para.h"
> #include "hw/qdev-properties.h"
> #include "hw/i386/topology.h"
> @@ -5455,8 +5454,8 @@ static void x86_cpuid_version_set_family(Object *obj, Visitor *v,
> return;
> }
> if (value > max) {
> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, (int64_t)0, (int64_t)max);
> + error_setg(errp, "parameter '%s' can be at most %" PRIu64,
> + name ? name : "null", max);
> return;
> }
>
> @@ -5494,8 +5493,8 @@ static void x86_cpuid_version_set_model(Object *obj, Visitor *v,
> return;
> }
> if (value > max) {
> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, (int64_t)0, (int64_t)max);
> + error_setg(errp, "parameter '%s' can be at most %" PRIu64,
> + name ? name : "null", max);
> return;
> }
>
> @@ -5528,8 +5527,8 @@ static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
> return;
> }
> if (value > max) {
> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, (int64_t)0, (int64_t)max);
> + error_setg(errp, "parameter '%s' can be at most %" PRIu64,
> + name ? name : "null", max);
> return;
> }
>
> @@ -5623,16 +5622,15 @@ static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, const char *name,
> void *opaque, Error **errp)
> {
> X86CPU *cpu = X86_CPU(obj);
> - const int64_t min = 0;
> const int64_t max = INT64_MAX;
> int64_t value;
>
> if (!visit_type_int(v, name, &value, errp)) {
> return;
> }
> - if (value < min || value > max) {
> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
> - name ? name : "null", value, min, max);
> + if (value < 0 || value > max) {
> + error_setg(errp, "parameter '%s' can be at most %" PRId64,
> + name ? name : "null", max);
> return;
> }
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v2 6/7] hw/intc/openpic: Improve errors for out of bounds property values
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
` (4 preceding siblings ...)
2024-10-10 15:01 ` [PATCH v2 5/7] target/i386/cpu: Improve errors for out of bounds property values Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-10 17:40 ` Philippe Mathieu-Daudé
2024-10-10 15:01 ` [PATCH v2 7/7] qerror: QERR_PROPERTY_VALUE_OUT_OF_RANGE is no longer used, drop Markus Armbruster
6 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
The error message doesn't matter much, as the "openpic" device isn't
user-creatable. But it's the last use of
QERR_PROPERTY_VALUE_OUT_OF_RANGE, which has to go. Change the message
just like the previous commit did for x86 CPUs.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
hw/intc/openpic.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/hw/intc/openpic.c b/hw/intc/openpic.c
index 32bd880dfa..cd3d87768e 100644
--- a/hw/intc/openpic.c
+++ b/hw/intc/openpic.c
@@ -41,7 +41,6 @@
#include "hw/pci/msi.h"
#include "qapi/error.h"
#include "qemu/bitops.h"
-#include "qapi/qmp/qerror.h"
#include "qemu/module.h"
#include "qemu/timer.h"
#include "qemu/error-report.h"
@@ -1535,9 +1534,7 @@ static void openpic_realize(DeviceState *dev, Error **errp)
};
if (opp->nb_cpus > MAX_CPU) {
- error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE,
- TYPE_OPENPIC, "nb_cpus", (uint64_t)opp->nb_cpus,
- (uint64_t)0, (uint64_t)MAX_CPU);
+ error_setg(errp, "property 'nb_cpus' can be at most %d", MAX_CPU);
return;
}
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v2 6/7] hw/intc/openpic: Improve errors for out of bounds property values
2024-10-10 15:01 ` [PATCH v2 6/7] hw/intc/openpic: " Markus Armbruster
@ 2024-10-10 17:40 ` Philippe Mathieu-Daudé
2024-10-17 6:21 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-10 17:40 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block
On 10/10/24 12:01, Markus Armbruster wrote:
> The error message doesn't matter much, as the "openpic" device isn't
> user-creatable. But it's the last use of
> QERR_PROPERTY_VALUE_OUT_OF_RANGE, which has to go. Change the message
> just like the previous commit did for x86 CPUs.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> hw/intc/openpic.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/hw/intc/openpic.c b/hw/intc/openpic.c
> index 32bd880dfa..cd3d87768e 100644
> --- a/hw/intc/openpic.c
> +++ b/hw/intc/openpic.c
> @@ -41,7 +41,6 @@
> #include "hw/pci/msi.h"
> #include "qapi/error.h"
> #include "qemu/bitops.h"
> -#include "qapi/qmp/qerror.h"
> #include "qemu/module.h"
> #include "qemu/timer.h"
> #include "qemu/error-report.h"
> @@ -1535,9 +1534,7 @@ static void openpic_realize(DeviceState *dev, Error **errp)
> };
>
> if (opp->nb_cpus > MAX_CPU) {
> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE,
> - TYPE_OPENPIC, "nb_cpus", (uint64_t)opp->nb_cpus,
> - (uint64_t)0, (uint64_t)MAX_CPU);
> + error_setg(errp, "property 'nb_cpus' can be at most %d", MAX_CPU);
> return;
> }
>
As another cleanup we could convert MAX_CPU to unsigned.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v2 6/7] hw/intc/openpic: Improve errors for out of bounds property values
2024-10-10 17:40 ` Philippe Mathieu-Daudé
@ 2024-10-17 6:21 ` Markus Armbruster
0 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2024-10-17 6:21 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: qemu-devel, xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini,
berrange, eduardo, mark.cave-ayland, michael.roth, kkostiuk,
qemu-block
Philippe Mathieu-Daudé <philmd@linaro.org> writes:
> On 10/10/24 12:01, Markus Armbruster wrote:
>> The error message doesn't matter much, as the "openpic" device isn't
>> user-creatable. But it's the last use of
>> QERR_PROPERTY_VALUE_OUT_OF_RANGE, which has to go. Change the message
>> just like the previous commit did for x86 CPUs.
>>
>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>> ---
>> hw/intc/openpic.c | 5 +----
>> 1 file changed, 1 insertion(+), 4 deletions(-)
>>
>> diff --git a/hw/intc/openpic.c b/hw/intc/openpic.c
>> index 32bd880dfa..cd3d87768e 100644
>> --- a/hw/intc/openpic.c
>> +++ b/hw/intc/openpic.c
>> @@ -41,7 +41,6 @@
>> #include "hw/pci/msi.h"
>> #include "qapi/error.h"
>> #include "qemu/bitops.h"
>> -#include "qapi/qmp/qerror.h"
>> #include "qemu/module.h"
>> #include "qemu/timer.h"
>> #include "qemu/error-report.h"
>> @@ -1535,9 +1534,7 @@ static void openpic_realize(DeviceState *dev, Error **errp)
>> };
>>
>> if (opp->nb_cpus > MAX_CPU) {
>> - error_setg(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE,
>> - TYPE_OPENPIC, "nb_cpus", (uint64_t)opp->nb_cpus,
>> - (uint64_t)0, (uint64_t)MAX_CPU);
>> + error_setg(errp, "property 'nb_cpus' can be at most %d", MAX_CPU);
>> return;
>> }
>>
>
> As another cleanup we could convert MAX_CPU to unsigned.
Existing uses are all fine as is. Perhaps the maintainer has a
preference.
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Thanks!
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v2 7/7] qerror: QERR_PROPERTY_VALUE_OUT_OF_RANGE is no longer used, drop
2024-10-10 15:01 [PATCH v2 0/7] error: Eliminate QERR_PROPERTY_VALUE_OUT_OF_RANGE Markus Armbruster
` (5 preceding siblings ...)
2024-10-10 15:01 ` [PATCH v2 6/7] hw/intc/openpic: " Markus Armbruster
@ 2024-10-10 15:01 ` Markus Armbruster
2024-10-10 17:41 ` Philippe Mathieu-Daudé
6 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-10-10 15:01 UTC (permalink / raw)
To: qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block, philmd
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
include/qapi/qmp/qerror.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/include/qapi/qmp/qerror.h b/include/qapi/qmp/qerror.h
index 101c1141b9..d1db6f18cd 100644
--- a/include/qapi/qmp/qerror.h
+++ b/include/qapi/qmp/qerror.h
@@ -23,7 +23,4 @@
#define QERR_MISSING_PARAMETER \
"Parameter '%s' is missing"
-#define QERR_PROPERTY_VALUE_OUT_OF_RANGE \
- "Property %s.%s doesn't take value %" PRId64 " (minimum: %" PRId64 ", maximum: %" PRId64 ")"
-
#endif /* QERROR_H */
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v2 7/7] qerror: QERR_PROPERTY_VALUE_OUT_OF_RANGE is no longer used, drop
2024-10-10 15:01 ` [PATCH v2 7/7] qerror: QERR_PROPERTY_VALUE_OUT_OF_RANGE is no longer used, drop Markus Armbruster
@ 2024-10-10 17:41 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 18+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-10 17:41 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel
Cc: xieyongji, kwolf, hreitz, Coiby.Xu, pbonzini, berrange, eduardo,
mark.cave-ayland, michael.roth, kkostiuk, qemu-block
On 10/10/24 12:01, Markus Armbruster wrote:
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> include/qapi/qmp/qerror.h | 3 ---
> 1 file changed, 3 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 18+ messages in thread