From: Bharata B Rao <bharata@linux.vnet.ibm.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: mjrosato@linux.vnet.ibm.com, agraf@suse.de, thuth@redhat.com,
pkrempa@redhat.com, ehabkost@redhat.com, aik@ozlabs.ru,
qemu-devel@nongnu.org, armbru@redhat.com, borntraeger@de.ibm.com,
qemu-ppc@nongnu.org, afaerber@suse.de, pbonzini@redhat.com,
mdroth@linux.vnet.ibm.com, david@gibson.dropbear.id.au
Subject: Re: [Qemu-devel] [PATCH v2 2/5] spapr: convert slot name property to numeric core and links
Date: Tue, 8 Mar 2016 20:39:39 +0530 [thread overview]
Message-ID: <20160308150939.GB29692@in.ibm.com> (raw)
In-Reply-To: <1457443095-213125-3-git-send-email-imammedo@redhat.com>
On Tue, Mar 08, 2016 at 02:18:12PM +0100, Igor Mammedov wrote:
> it's just a hack to get qiuck swith to numeric core id
> should be split and merged in patches
> introducing modified code.
>
> Signed-off-by: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/cpu/core.c | 32 +++++++++++++++++++++++---------
> hw/ppc/spapr.c | 39 ++-------------------------------------
> hw/ppc/spapr_cpu_core.c | 25 ++-----------------------
> include/hw/cpu/core.h | 4 ++--
> 4 files changed, 29 insertions(+), 71 deletions(-)
>
> diff --git a/hw/cpu/core.c b/hw/cpu/core.c
> index d8caf37..90a9408 100644
> --- a/hw/cpu/core.c
> +++ b/hw/cpu/core.c
> @@ -7,25 +7,39 @@
> * See the COPYING file in the top-level directory.
> */
> #include "hw/cpu/core.h"
> +#include "qapi/visitor.h"
>
> -static char *core_prop_get_slot(Object *obj, Error **errp)
> +static void core_prop_get_core(Object *obj, Visitor *v,
> + const char *name, void *opaque,
> + Error **errp)
> {
> - CPUCore *core = CPU_CORE(obj);
> + CPUCore *cc = CPU_CORE(obj);
> + int64_t value = cc->core;
>
> - return g_strdup(core->slot);
> + visit_type_int(v, name, &value, errp);
> }
>
> -static void core_prop_set_slot(Object *obj, const char *val, Error **errp)
> +static void core_prop_set_core(Object *obj, Visitor *v,
> + const char *name, void *opaque,
> + Error **errp)
> {
> - CPUCore *core = CPU_CORE(obj);
> -
> - core->slot = g_strdup(val);
> + CPUCore *cc = CPU_CORE(obj);
> + Error *local_err = NULL;
> + int64_t value;
> +
> + visit_type_int(v, name, &value, &local_err);
> + if (local_err) {
> + error_propagate(errp, local_err);
> + return;
> + }
> + cc->core = value;
> }
>
> static void cpu_core_instance_init(Object *obj)
> {
> - object_property_add_str(obj, "slot", core_prop_get_slot, core_prop_set_slot,
> - NULL);
> + object_property_add(obj, CPU_CORE_ID_PROP, "int",
> + core_prop_get_core, core_prop_set_core,
> + NULL, NULL, NULL);
> }
>
> static const TypeInfo cpu_core_type_info = {
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 6173c1b..6890a44 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -1755,28 +1755,6 @@ static void spapr_validate_node_memory(MachineState *machine, Error **errp)
> }
> }
>
> -/*
> - * Check to see if core is being hot-plugged into an already populated slot.
> - */
> -static void spapr_cpu_core_allow_set_link(Object *obj, const char *name,
> - Object *val, Error **errp)
> -{
> - Object *core = object_property_get_link(qdev_get_machine(), name, NULL);
> -
> - /*
> - * Allow the link to be unset when the core is unplugged.
> - */
> - if (!val) {
> - return;
> - }
> -
> - if (core) {
> - char *path = object_get_canonical_path(core);
> - error_setg(errp, "Slot %s already populated with %s", name, path);
> - g_free(path);
> - }
> -}
> -
> /* pSeries LPAR / sPAPR hardware init */
> static void ppc_spapr_init(MachineState *machine)
> {
> @@ -1884,21 +1862,8 @@ static void ppc_spapr_init(MachineState *machine)
> spapr->cores = g_new0(Object *, spapr_max_cores);
>
> for (i = 0; i < spapr_max_cores; i++) {
> - char name[32];
> -
> - /*
> - * Create links from machine objects to all possible cores.
> - */
> - snprintf(name, sizeof(name), "%s[%d]", SPAPR_MACHINE_CPU_CORE_PROP, i);
> - object_property_add_link(OBJECT(spapr), name, TYPE_SPAPR_CPU_CORE,
> - (Object **)&spapr->cores[i],
> - spapr_cpu_core_allow_set_link,
> - OBJ_PROP_LINK_UNREF_ON_RELEASE,
> - &error_fatal);
With the removal of this link, I don't see any code that explicitly sets
spapr->cores[i] on which you depend upon. However I can add that when I
absorb required bits from this patchset to my sPAPR hotplug series if
this is the agreed way forward.
Regards,
Bharata.
next prev parent reply other threads:[~2016-03-08 15:10 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-08 13:18 [Qemu-devel] [PATCH v2 0/5] spapr: QMP: add query-hotpluggable-cpus Igor Mammedov
2016-03-08 13:18 ` [Qemu-devel] [PATCH v2 1/5] " Igor Mammedov
2016-03-08 16:46 ` Eric Blake
2016-03-09 3:15 ` David Gibson
2016-03-09 9:34 ` Igor Mammedov
2016-03-08 13:18 ` [Qemu-devel] [PATCH v2 2/5] spapr: convert slot name property to numeric core and links Igor Mammedov
2016-03-08 15:09 ` Bharata B Rao [this message]
2016-03-09 9:27 ` Igor Mammedov
2016-03-08 16:48 ` Eric Blake
2016-03-09 9:40 ` Igor Mammedov
2016-03-09 3:19 ` David Gibson
2016-03-09 9:48 ` Igor Mammedov
2016-03-08 13:18 ` [Qemu-devel] [PATCH v2 3/5] qdev: hotplug: introduce HotplugHandler.pre_plug() callback Igor Mammedov
2016-03-08 13:18 ` [Qemu-devel] [PATCH v2 4/5] spapr: check if cpu core is already present Igor Mammedov
2016-03-08 14:34 ` Bharata B Rao
2016-03-09 10:07 ` Igor Mammedov
2016-03-10 5:22 ` David Gibson
2016-03-10 6:02 ` Bharata B Rao
2016-03-10 10:39 ` Igor Mammedov
2016-03-10 14:45 ` Bharata B Rao
2016-03-11 10:31 ` Igor Mammedov
2016-03-15 6:10 ` David Gibson
2016-03-15 11:05 ` Igor Mammedov
2016-03-15 23:38 ` David Gibson
2016-03-16 15:26 ` Igor Mammedov
2016-03-08 13:18 ` [Qemu-devel] [PATCH v2 5/5] spapr: implement query-hotpluggable-cpus QMP command 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=20160308150939.GB29692@in.ibm.com \
--to=bharata@linux.vnet.ibm.com \
--cc=afaerber@suse.de \
--cc=agraf@suse.de \
--cc=aik@ozlabs.ru \
--cc=armbru@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=david@gibson.dropbear.id.au \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=mjrosato@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=pkrempa@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@redhat.com \
/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).