qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Bharata B Rao <bharata@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v0] spapr: Error out when CPU hotplug is attempted on older pseries machines
Date: Thu, 7 Jul 2016 10:10:51 +1000	[thread overview]
Message-ID: <20160707001051.GC2615@voom.fritz.box> (raw)
In-Reply-To: <1467827370-8808-1-git-send-email-bharata@linux.vnet.ibm.com>

[-- Attachment #1: Type: text/plain, Size: 3472 bytes --]

On Wed, Jul 06, 2016 at 11:19:30PM +0530, Bharata B Rao wrote:
> CPU hotplug and coldplug aren't supported prior to pseries-2.7.
> query-hotpluggable-cpus and coldplug on older pseries machines are crashing
> the QEMU. Fix this.
> 
> - Let query_hotpluggable_cpus return NULL for pseries < 2.7
> - spapr_core_pre_plug() should fail hot/cold plug attempts for pseries < 2.7
> - spapr_core_plug() should never be called for pseries < 2.7, hence use
>   an assert.
> 
> Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
> ---
> Applies on ppc-for-2.7 branch of David's tree.

Applied to ppc-for-2.7.

> 
>  hw/ppc/spapr.c          |  5 +++++
>  hw/ppc/spapr_cpu_core.c | 19 ++++++-------------
>  2 files changed, 11 insertions(+), 13 deletions(-)
> 
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 7f33a1b..e3a7912 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -2368,9 +2368,14 @@ static HotpluggableCPUList *spapr_query_hotpluggable_cpus(MachineState *machine)
>      int i;
>      HotpluggableCPUList *head = NULL;
>      sPAPRMachineState *spapr = SPAPR_MACHINE(machine);
> +    sPAPRMachineClass *smc = SPAPR_MACHINE_GET_CLASS(machine);
>      int spapr_max_cores = max_cpus / smp_threads;
>      int smt = kvmppc_smt_threads();
>  
> +    if (!smc->dr_cpu_enabled) {
> +        return NULL;
> +    }
> +
>      for (i = 0; i < spapr_max_cores; i++) {
>          HotpluggableCPUList *list_item = g_new0(typeof(*list_item), 1);
>          HotpluggableCPU *cpu_item = g_new0(typeof(*cpu_item), 1);
> diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c
> index 70b6b0b..273207c 100644
> --- a/hw/ppc/spapr_cpu_core.c
> +++ b/hw/ppc/spapr_cpu_core.c
> @@ -162,19 +162,12 @@ void spapr_core_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
>      int index;
>      int smt = kvmppc_smt_threads();
>  
> +    g_assert(smc->dr_cpu_enabled);
> +
>      drc = spapr_dr_connector_by_id(SPAPR_DR_CONNECTOR_TYPE_CPU, cc->core_id);
>      index = cc->core_id / smt;
>      spapr->cores[index] = OBJECT(dev);
>  
> -    if (!smc->dr_cpu_enabled) {
> -        /*
> -         * This is a cold plugged CPU core but the machine doesn't support
> -         * DR. So skip the hotplug path ensuring that the core is brought
> -         * up online with out an associated DR connector.
> -         */
> -        return;
> -    }
> -
>      g_assert(drc);
>  
>      /*
> @@ -223,13 +216,13 @@ void spapr_core_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
>      char *base_core_type = spapr_get_cpu_core_type(machine->cpu_model);
>      const char *type = object_get_typename(OBJECT(dev));
>  
> -    if (strcmp(base_core_type, type)) {
> -        error_setg(&local_err, "CPU core type should be %s", base_core_type);
> +    if (!smc->dr_cpu_enabled) {
> +        error_setg(&local_err, "CPU hotplug not supported for this machine");
>          goto out;
>      }
>  
> -    if (!smc->dr_cpu_enabled && dev->hotplugged) {
> -        error_setg(&local_err, "CPU hotplug not supported for this machine");
> +    if (strcmp(base_core_type, type)) {
> +        error_setg(&local_err, "CPU core type should be %s", base_core_type);
>          goto out;
>      }
>  

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

      reply	other threads:[~2016-07-07  0:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-06 17:49 [Qemu-devel] [PATCH v0] spapr: Error out when CPU hotplug is attempted on older pseries machines Bharata B Rao
2016-07-07  0:10 ` David Gibson [this message]

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=20160707001051.GC2615@voom.fritz.box \
    --to=david@gibson.dropbear.id.au \
    --cc=bharata@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).