From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48816) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNShm-0001hv-8P for qemu-devel@nongnu.org; Wed, 13 Jul 2016 18:32:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bNShi-00024w-A9 for qemu-devel@nongnu.org; Wed, 13 Jul 2016 18:32:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39271) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNShi-00024s-4I for qemu-devel@nongnu.org; Wed, 13 Jul 2016 18:32:30 -0400 From: Bandan Das References: <1467786055-85835-1-git-send-email-imammedo@redhat.com> <1467786055-85835-11-git-send-email-imammedo@redhat.com> Date: Wed, 13 Jul 2016 18:32:27 -0400 In-Reply-To: <1467786055-85835-11-git-send-email-imammedo@redhat.com> (Igor Mammedov's message of "Wed, 6 Jul 2016 08:20:46 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH v3 10/19] pc: register created initial and hotpluged CPUs in one place pc_cpu_plug() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Mammedov Cc: qemu-devel@nongnu.org, pkrempa@redhat.com, ehabkost@redhat.com, mst@redhat.com, armbru@redhat.com, eduardo.otubo@profitbricks.com, marcel@redhat.com, pbonzini@redhat.com, rth@twiddle.net Igor Mammedov writes: > consolidate possible_cpus array management in pc_cpu_plug() > for smp_cpus, coldplugged with -device and hotplugged with > device_add. So, this takes care of the hotplug case and 09/19 took care of the coldplug case, right ? If yes, we should probably modify this commit message a little. Bandan > Signed-off-by: Igor Mammedov > --- > hw/i386/pc.c | 25 +++++++++---------------- > 1 file changed, 9 insertions(+), 16 deletions(-) > > diff --git a/hw/i386/pc.c b/hw/i386/pc.c > index 3206572..0f85b56 100644 > --- a/hw/i386/pc.c > +++ b/hw/i386/pc.c > @@ -1142,7 +1142,6 @@ void pc_cpus_init(PCMachineState *pcms) > if (i < smp_cpus) { > cpu = pc_new_cpu(typename, x86_cpu_apic_id_from_index(i), > &error_fatal); > - pcms->possible_cpus->cpus[i].cpu = CPU(cpu); > object_unref(OBJECT(cpu)); > } > } > @@ -1697,25 +1696,19 @@ static void pc_cpu_plug(HotplugHandler *hotplug_dev, > Error *local_err = NULL; > PCMachineState *pcms = PC_MACHINE(hotplug_dev); > > - if (!dev->hotplugged) { > - goto out; > - } > - > - if (!pcms->acpi_dev) { > - error_setg(&local_err, > - "cpu hotplug is not enabled: missing acpi device"); > - goto out; > + if (pcms->acpi_dev) { > + hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); > + hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); > + if (local_err) { > + goto out; > + } > } > > - hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); > - hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); > - if (local_err) { > - goto out; > + if (dev->hotplugged) { > + /* increment the number of CPUs */ > + rtc_set_memory(pcms->rtc, 0x5f, rtc_get_memory(pcms->rtc, 0x5f) + 1); > } > > - /* increment the number of CPUs */ > - rtc_set_memory(pcms->rtc, 0x5f, rtc_get_memory(pcms->rtc, 0x5f) + 1); > - > found_cpu = pc_find_cpu_slot(pcms, CPU(dev), NULL); > found_cpu->cpu = CPU(dev); > out: