All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: qemu-devel@nongnu.org, "Michael S. Tsirkin" <mst@redhat.com>,
	qemu-trivial@nongnu.org
Subject: Re: [PATCH] hw/mem/pc-dimm: Hint it is not usable on non-NUMA machines
Date: Mon, 24 May 2021 19:56:58 +0200	[thread overview]
Message-ID: <20210524195658.033b19e6@redhat.com> (raw)
In-Reply-To: <20210524171352.3796151-1-f4bug@amsat.org>

On Mon, 24 May 2021 19:13:52 +0200
Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:

> When trying to use the pc-dimm device on a non-NUMA machine, we get:
> 
>   $ qemu-system-arm -M none -cpu max -S -device pc-dimm
>   Segmentation fault (core dumped)
> 
>   (gdb) bt
>   #0  pc_dimm_realize (dev=0x555556da3e90, errp=0x7fffffffcd10) at hw/mem/pc-dimm.c:184
>   #1  0x0000555555fe1f8f in device_set_realized (obj=0x555556da3e90, value=true, errp=0x7fffffffce18) at hw/core/qdev.c:761
>   #2  0x0000555555feb4a9 in property_set_bool (obj=0x555556da3e90, v=0x555556e54420, name=0x5555563c3c41 "realized", opaque=0x555556a704f0, errp=0x7fffffffce18) at qom/object.c:2257
> 
> Use a friendler error message instead:
> 
>   $ qemu-system-arm -M none -cpu max -S -device pc-dimm
>   qemu-system-arm: -device pc-dimm: NUMA is not supported by this machine-type

it's not that pc-dimm inherently depends on numa, so maybe something like this would be better:

@@ -183,12 +182,17 @@ static void pc_dimm_realize(DeviceState *dev, Error **errp)
...
+    if (ms->numa_state) {
+        int nb_numa_nodes = ms->numa_state->num_nodes;
+
+        if ((nb_numa_nodes > 0) &&
+            (dimm->node >= nb_numa_nodes)) ||
+           (!nb_numa_nodes && dimm->node)) {
+               error_setg(errp, "'DIMM property " PC_DIMM_NODE_PROP " has value %"
+                          PRIu32 "' which exceeds the number of numa nodes: %d",
+                          dimm->node, nb_numa_nodes ? nb_numa_nodes : 1);
+            return;
+        }
+     } else if (dimm->node > 0)
+         error_setg(errp, "machine doesn't support numa");
 

> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  hw/mem/pc-dimm.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/mem/pc-dimm.c b/hw/mem/pc-dimm.c
> index a3a2560301c..e8851a0c3b1 100644
> --- a/hw/mem/pc-dimm.c
> +++ b/hw/mem/pc-dimm.c
> @@ -181,8 +181,13 @@ static void pc_dimm_realize(DeviceState *dev, Error **errp)
>      PCDIMMDevice *dimm = PC_DIMM(dev);
>      PCDIMMDeviceClass *ddc = PC_DIMM_GET_CLASS(dimm);
>      MachineState *ms = MACHINE(qdev_get_machine());
> -    int nb_numa_nodes = ms->numa_state->num_nodes;
> +    int nb_numa_nodes;
>  
> +    if (!ms->numa_state) {
> +        error_setg(errp, "NUMA is not supported by this machine-type");
> +        return;
> +    }
> +    nb_numa_nodes = ms->numa_state->num_nodes;
>      if (!dimm->hostmem) {
>          error_setg(errp, "'" PC_DIMM_MEMDEV_PROP "' property is not set");
>          return;



WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org,
	"Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [PATCH] hw/mem/pc-dimm: Hint it is not usable on non-NUMA machines
Date: Mon, 24 May 2021 19:56:58 +0200	[thread overview]
Message-ID: <20210524195658.033b19e6@redhat.com> (raw)
In-Reply-To: <20210524171352.3796151-1-f4bug@amsat.org>

On Mon, 24 May 2021 19:13:52 +0200
Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:

> When trying to use the pc-dimm device on a non-NUMA machine, we get:
> 
>   $ qemu-system-arm -M none -cpu max -S -device pc-dimm
>   Segmentation fault (core dumped)
> 
>   (gdb) bt
>   #0  pc_dimm_realize (dev=0x555556da3e90, errp=0x7fffffffcd10) at hw/mem/pc-dimm.c:184
>   #1  0x0000555555fe1f8f in device_set_realized (obj=0x555556da3e90, value=true, errp=0x7fffffffce18) at hw/core/qdev.c:761
>   #2  0x0000555555feb4a9 in property_set_bool (obj=0x555556da3e90, v=0x555556e54420, name=0x5555563c3c41 "realized", opaque=0x555556a704f0, errp=0x7fffffffce18) at qom/object.c:2257
> 
> Use a friendler error message instead:
> 
>   $ qemu-system-arm -M none -cpu max -S -device pc-dimm
>   qemu-system-arm: -device pc-dimm: NUMA is not supported by this machine-type

it's not that pc-dimm inherently depends on numa, so maybe something like this would be better:

@@ -183,12 +182,17 @@ static void pc_dimm_realize(DeviceState *dev, Error **errp)
...
+    if (ms->numa_state) {
+        int nb_numa_nodes = ms->numa_state->num_nodes;
+
+        if ((nb_numa_nodes > 0) &&
+            (dimm->node >= nb_numa_nodes)) ||
+           (!nb_numa_nodes && dimm->node)) {
+               error_setg(errp, "'DIMM property " PC_DIMM_NODE_PROP " has value %"
+                          PRIu32 "' which exceeds the number of numa nodes: %d",
+                          dimm->node, nb_numa_nodes ? nb_numa_nodes : 1);
+            return;
+        }
+     } else if (dimm->node > 0)
+         error_setg(errp, "machine doesn't support numa");
 

> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  hw/mem/pc-dimm.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/mem/pc-dimm.c b/hw/mem/pc-dimm.c
> index a3a2560301c..e8851a0c3b1 100644
> --- a/hw/mem/pc-dimm.c
> +++ b/hw/mem/pc-dimm.c
> @@ -181,8 +181,13 @@ static void pc_dimm_realize(DeviceState *dev, Error **errp)
>      PCDIMMDevice *dimm = PC_DIMM(dev);
>      PCDIMMDeviceClass *ddc = PC_DIMM_GET_CLASS(dimm);
>      MachineState *ms = MACHINE(qdev_get_machine());
> -    int nb_numa_nodes = ms->numa_state->num_nodes;
> +    int nb_numa_nodes;
>  
> +    if (!ms->numa_state) {
> +        error_setg(errp, "NUMA is not supported by this machine-type");
> +        return;
> +    }
> +    nb_numa_nodes = ms->numa_state->num_nodes;
>      if (!dimm->hostmem) {
>          error_setg(errp, "'" PC_DIMM_MEMDEV_PROP "' property is not set");
>          return;



  reply	other threads:[~2021-05-24 17:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-24 17:13 [PATCH] hw/mem/pc-dimm: Hint it is not usable on non-NUMA machines Philippe Mathieu-Daudé
2021-05-24 17:13 ` Philippe Mathieu-Daudé
2021-05-24 17:56 ` Igor Mammedov [this message]
2021-05-24 17:56   ` Igor Mammedov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210524195658.033b19e6@redhat.com \
    --to=imammedo@redhat.com \
    --cc=f4bug@amsat.org \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.