* [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation
@ 2017-10-10 13:32 Laurent Vivier
2017-10-10 14:12 ` Igor Mammedov
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Laurent Vivier @ 2017-10-10 13:32 UTC (permalink / raw)
To: qemu-trivial
Cc: qemu-devel, Michael Tokarev, Eduardo Habkost, Michael S . Tsirkin,
Anthony Perard, Laurent Vivier
Since 4458fb3a79 (pc: Eliminate pc_default_machine_options()),
hot_add_cpu is set in pc_machine_class_init(), so we don't
need to set it in pc_q35_machine_options(), pc_i440fx_machine_options()
and xenfv_machine_options(), except to clear it in
pc_i440fx_1_4_machine_opt().
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
hw/i386/pc_piix.c | 2 --
hw/i386/pc_q35.c | 1 -
2 files changed, 3 deletions(-)
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index 9ff79b1fd9..caf166aede 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -428,7 +428,6 @@ static void pc_i440fx_machine_options(MachineClass *m)
{
m->family = "pc_piix";
m->desc = "Standard PC (i440FX + PIIX, 1996)";
- m->hot_add_cpu = pc_hot_add_cpu;
m->default_machine_opts = "firmware=bios-256k.bin";
m->default_display = "std";
}
@@ -1123,7 +1122,6 @@ static void xenfv_machine_options(MachineClass *m)
m->desc = "Xen Fully-virtualized PC";
m->max_cpus = HVM_MAX_VCPUS;
m->default_machine_opts = "accel=xen";
- m->hot_add_cpu = pc_hot_add_cpu;
}
DEFINE_PC_MACHINE(xenfv, "xenfv", pc_xen_hvm_init,
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
index 6c4ec4be4e..da3ea602e1 100644
--- a/hw/i386/pc_q35.c
+++ b/hw/i386/pc_q35.c
@@ -295,7 +295,6 @@ static void pc_q35_machine_options(MachineClass *m)
{
m->family = "pc_q35";
m->desc = "Standard PC (Q35 + ICH9, 2009)";
- m->hot_add_cpu = pc_hot_add_cpu;
m->units_per_default_bus = 1;
m->default_machine_opts = "firmware=bios-256k.bin";
m->default_display = "std";
--
2.13.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation
2017-10-10 13:32 [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation Laurent Vivier
@ 2017-10-10 14:12 ` Igor Mammedov
2017-10-10 16:00 ` Eduardo Habkost
2017-10-11 16:15 ` Anthony PERARD
2 siblings, 0 replies; 4+ messages in thread
From: Igor Mammedov @ 2017-10-10 14:12 UTC (permalink / raw)
To: Laurent Vivier
Cc: qemu-trivial, Eduardo Habkost, Michael S . Tsirkin,
Michael Tokarev, qemu-devel, Anthony Perard
On Tue, 10 Oct 2017 15:32:41 +0200
Laurent Vivier <lvivier@redhat.com> wrote:
> Since 4458fb3a79 (pc: Eliminate pc_default_machine_options()),
> hot_add_cpu is set in pc_machine_class_init(), so we don't
> need to set it in pc_q35_machine_options(), pc_i440fx_machine_options()
> and xenfv_machine_options(), except to clear it in
> pc_i440fx_1_4_machine_opt().
>
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/i386/pc_piix.c | 2 --
> hw/i386/pc_q35.c | 1 -
> 2 files changed, 3 deletions(-)
>
> diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
> index 9ff79b1fd9..caf166aede 100644
> --- a/hw/i386/pc_piix.c
> +++ b/hw/i386/pc_piix.c
> @@ -428,7 +428,6 @@ static void pc_i440fx_machine_options(MachineClass *m)
> {
> m->family = "pc_piix";
> m->desc = "Standard PC (i440FX + PIIX, 1996)";
> - m->hot_add_cpu = pc_hot_add_cpu;
> m->default_machine_opts = "firmware=bios-256k.bin";
> m->default_display = "std";
> }
> @@ -1123,7 +1122,6 @@ static void xenfv_machine_options(MachineClass *m)
> m->desc = "Xen Fully-virtualized PC";
> m->max_cpus = HVM_MAX_VCPUS;
> m->default_machine_opts = "accel=xen";
> - m->hot_add_cpu = pc_hot_add_cpu;
> }
>
> DEFINE_PC_MACHINE(xenfv, "xenfv", pc_xen_hvm_init,
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index 6c4ec4be4e..da3ea602e1 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -295,7 +295,6 @@ static void pc_q35_machine_options(MachineClass *m)
> {
> m->family = "pc_q35";
> m->desc = "Standard PC (Q35 + ICH9, 2009)";
> - m->hot_add_cpu = pc_hot_add_cpu;
> m->units_per_default_bus = 1;
> m->default_machine_opts = "firmware=bios-256k.bin";
> m->default_display = "std";
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation
2017-10-10 13:32 [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation Laurent Vivier
2017-10-10 14:12 ` Igor Mammedov
@ 2017-10-10 16:00 ` Eduardo Habkost
2017-10-11 16:15 ` Anthony PERARD
2 siblings, 0 replies; 4+ messages in thread
From: Eduardo Habkost @ 2017-10-10 16:00 UTC (permalink / raw)
To: Laurent Vivier
Cc: qemu-trivial, qemu-devel, Michael Tokarev, Michael S . Tsirkin,
Anthony Perard
On Tue, Oct 10, 2017 at 03:32:41PM +0200, Laurent Vivier wrote:
> Since 4458fb3a79 (pc: Eliminate pc_default_machine_options()),
> hot_add_cpu is set in pc_machine_class_init(), so we don't
> need to set it in pc_q35_machine_options(), pc_i440fx_machine_options()
> and xenfv_machine_options(), except to clear it in
> pc_i440fx_1_4_machine_opt().
>
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
--
Eduardo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation
2017-10-10 13:32 [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation Laurent Vivier
2017-10-10 14:12 ` Igor Mammedov
2017-10-10 16:00 ` Eduardo Habkost
@ 2017-10-11 16:15 ` Anthony PERARD
2 siblings, 0 replies; 4+ messages in thread
From: Anthony PERARD @ 2017-10-11 16:15 UTC (permalink / raw)
To: Laurent Vivier
Cc: qemu-trivial, qemu-devel, Michael Tokarev, Eduardo Habkost,
Michael S . Tsirkin
On Tue, Oct 10, 2017 at 03:32:41PM +0200, Laurent Vivier wrote:
> Since 4458fb3a79 (pc: Eliminate pc_default_machine_options()),
> hot_add_cpu is set in pc_machine_class_init(), so we don't
> need to set it in pc_q35_machine_options(), pc_i440fx_machine_options()
> and xenfv_machine_options(), except to clear it in
> pc_i440fx_1_4_machine_opt().
>
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---
> hw/i386/pc_piix.c | 2 --
> hw/i386/pc_q35.c | 1 -
> 2 files changed, 3 deletions(-)
>
> diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
> index 9ff79b1fd9..caf166aede 100644
> --- a/hw/i386/pc_piix.c
> +++ b/hw/i386/pc_piix.c
> @@ -428,7 +428,6 @@ static void pc_i440fx_machine_options(MachineClass *m)
> {
> m->family = "pc_piix";
> m->desc = "Standard PC (i440FX + PIIX, 1996)";
> - m->hot_add_cpu = pc_hot_add_cpu;
> m->default_machine_opts = "firmware=bios-256k.bin";
> m->default_display = "std";
> }
> @@ -1123,7 +1122,6 @@ static void xenfv_machine_options(MachineClass *m)
> m->desc = "Xen Fully-virtualized PC";
> m->max_cpus = HVM_MAX_VCPUS;
> m->default_machine_opts = "accel=xen";
> - m->hot_add_cpu = pc_hot_add_cpu;
> }
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
>
> DEFINE_PC_MACHINE(xenfv, "xenfv", pc_xen_hvm_init,
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index 6c4ec4be4e..da3ea602e1 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -295,7 +295,6 @@ static void pc_q35_machine_options(MachineClass *m)
> {
> m->family = "pc_q35";
> m->desc = "Standard PC (Q35 + ICH9, 2009)";
> - m->hot_add_cpu = pc_hot_add_cpu;
> m->units_per_default_bus = 1;
> m->default_machine_opts = "firmware=bios-256k.bin";
> m->default_display = "std";
--
Anthony PERARD
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-10-11 16:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-10 13:32 [Qemu-devel] [PATCH] pc: remove useless hot_add_cpu initialisation Laurent Vivier
2017-10-10 14:12 ` Igor Mammedov
2017-10-10 16:00 ` Eduardo Habkost
2017-10-11 16:15 ` Anthony PERARD
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).