* [Qemu-devel] [PATCH] hw/machine: Remove the Zero check of nb_numa_nodes for numa_complete_configuration() follow-up
@ 2018-07-10 10:51 Dou Liyang
2018-07-10 12:06 ` Igor Mammedov
2018-07-10 14:37 ` Eduardo Habkost
0 siblings, 2 replies; 3+ messages in thread
From: Dou Liyang @ 2018-07-10 10:51 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, ehabkost, imammedo, Dou Liyang
This Commit 7747abf11487 misses the curly brackets. Follow Igor's and Eduardo's suggestion,
Add a follow-up patch for it.
Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
---
hw/core/machine.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/hw/core/machine.c b/hw/core/machine.c
index a9aeb22f03..6b68e1218f 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -793,8 +793,9 @@ void machine_run_board_init(MachineState *machine)
MachineClass *machine_class = MACHINE_GET_CLASS(machine);
numa_complete_configuration(machine);
- if (nb_numa_nodes)
+ if (nb_numa_nodes) {
machine_numa_finish_cpu_init(machine);
+ }
/* If the machine supports the valid_cpu_types check and the user
* specified a CPU with -cpu check here that the user CPU is supported.
--
2.14.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/machine: Remove the Zero check of nb_numa_nodes for numa_complete_configuration() follow-up
2018-07-10 10:51 [Qemu-devel] [PATCH] hw/machine: Remove the Zero check of nb_numa_nodes for numa_complete_configuration() follow-up Dou Liyang
@ 2018-07-10 12:06 ` Igor Mammedov
2018-07-10 14:37 ` Eduardo Habkost
1 sibling, 0 replies; 3+ messages in thread
From: Igor Mammedov @ 2018-07-10 12:06 UTC (permalink / raw)
To: Dou Liyang; +Cc: qemu-devel, qemu-trivial, ehabkost
On Tue, 10 Jul 2018 18:51:29 +0800
Dou Liyang <douly.fnst@cn.fujitsu.com> wrote:
> This Commit 7747abf11487 misses the curly brackets. Follow Igor's and Eduardo's suggestion,
>
> Add a follow-up patch for it.
>
> Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
> ---
> hw/core/machine.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/hw/core/machine.c b/hw/core/machine.c
> index a9aeb22f03..6b68e1218f 100644
> --- a/hw/core/machine.c
> +++ b/hw/core/machine.c
> @@ -793,8 +793,9 @@ void machine_run_board_init(MachineState *machine)
> MachineClass *machine_class = MACHINE_GET_CLASS(machine);
>
> numa_complete_configuration(machine);
> - if (nb_numa_nodes)
> + if (nb_numa_nodes) {
> machine_numa_finish_cpu_init(machine);
> + }
>
> /* If the machine supports the valid_cpu_types check and the user
> * specified a CPU with -cpu check here that the user CPU is supported.
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/machine: Remove the Zero check of nb_numa_nodes for numa_complete_configuration() follow-up
2018-07-10 10:51 [Qemu-devel] [PATCH] hw/machine: Remove the Zero check of nb_numa_nodes for numa_complete_configuration() follow-up Dou Liyang
2018-07-10 12:06 ` Igor Mammedov
@ 2018-07-10 14:37 ` Eduardo Habkost
1 sibling, 0 replies; 3+ messages in thread
From: Eduardo Habkost @ 2018-07-10 14:37 UTC (permalink / raw)
To: Dou Liyang; +Cc: qemu-devel, qemu-trivial, imammedo
On Tue, Jul 10, 2018 at 06:51:29PM +0800, Dou Liyang wrote:
> This Commit 7747abf11487 misses the curly brackets. Follow Igor's and Eduardo's suggestion,
>
> Add a follow-up patch for it.
>
> Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
I'm queueing this for 3.1, but the subject line didn't make sense
(this patch doesn't remove zero check of nb_numa_nodes), so I
rewrote the commit message as:
machine: Fix coding style at machine_run_board_init()
Commit 7747abf11487 ("hw/machine: Remove the Zero check of
nb_numa_nodes for numa_complete_configuration()") removed the
curly brackets. Re-add them.
Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
Message-Id: <20180710105129.23296-1-douly.fnst@cn.fujitsu.com>
[ehabkost: rewrote commit message]
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
--
Eduardo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-07-10 14:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-10 10:51 [Qemu-devel] [PATCH] hw/machine: Remove the Zero check of nb_numa_nodes for numa_complete_configuration() follow-up Dou Liyang
2018-07-10 12:06 ` Igor Mammedov
2018-07-10 14:37 ` Eduardo Habkost
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).