From: Laurent Vivier <lvivier@redhat.com>
To: qemu-devel@nongnu.org
Cc: qemu-ppc@nongnu.org,
Marcel Apfelbaum <marcel.apfelbaum@gmail.com>,
Laurent Vivier <lvivier@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Igor Mammedov <imammedo@redhat.com>,
Thomas Huth <thuth@redhat.com>,
David Gibson <david@gibson.dropbear.id.au>,
Eduardo Habkost <ehabkost@redhat.com>
Subject: [Qemu-devel] [RFC 3/4] numa: move cpu_slot_to_string() upper in the function
Date: Tue, 12 Feb 2019 22:48:26 +0100 [thread overview]
Message-ID: <20190212214827.30543-4-lvivier@redhat.com> (raw)
In-Reply-To: <20190212214827.30543-1-lvivier@redhat.com>
This will allow to use it in more functions in the future.
As we change the prototype to take directly CpuInstanceProperties
instead of CPUArchId, rename the function to cpu_props_to_string().
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
hw/core/machine.c | 44 ++++++++++++++++++++++----------------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/hw/core/machine.c b/hw/core/machine.c
index 7c74b318f635..a2c29692b55e 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -550,6 +550,27 @@ HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine)
return head;
}
+static char *cpu_props_to_string(const CpuInstanceProperties *props)
+{
+ GString *s = g_string_new(NULL);
+ if (props->has_socket_id) {
+ g_string_append_printf(s, "socket-id: %"PRId64, props->socket_id);
+ }
+ if (props->has_core_id) {
+ if (s->len) {
+ g_string_append_printf(s, ", ");
+ }
+ g_string_append_printf(s, "core-id: %"PRId64, props->core_id);
+ }
+ if (props->has_thread_id) {
+ if (s->len) {
+ g_string_append_printf(s, ", ");
+ }
+ g_string_append_printf(s, "thread-id: %"PRId64, props->thread_id);
+ }
+ return g_string_free(s, false);
+}
+
/**
* machine_set_cpu_numa_node:
* @machine: machine object to modify
@@ -849,27 +870,6 @@ bool machine_mem_merge(MachineState *machine)
return machine->mem_merge;
}
-static char *cpu_slot_to_string(const CPUArchId *cpu)
-{
- GString *s = g_string_new(NULL);
- if (cpu->props.has_socket_id) {
- g_string_append_printf(s, "socket-id: %"PRId64, cpu->props.socket_id);
- }
- if (cpu->props.has_core_id) {
- if (s->len) {
- g_string_append_printf(s, ", ");
- }
- g_string_append_printf(s, "core-id: %"PRId64, cpu->props.core_id);
- }
- if (cpu->props.has_thread_id) {
- if (s->len) {
- g_string_append_printf(s, ", ");
- }
- g_string_append_printf(s, "thread-id: %"PRId64, cpu->props.thread_id);
- }
- return g_string_free(s, false);
-}
-
static void machine_numa_finish_cpu_init(MachineState *machine)
{
int i;
@@ -887,7 +887,7 @@ static void machine_numa_finish_cpu_init(MachineState *machine)
default_mapping = false;
} else {
/* record slots with not set mapping, */
- char *cpu_str = cpu_slot_to_string(cpu_slot);
+ char *cpu_str = cpu_props_to_string(&cpu_slot->props);
g_string_append_printf(s, "%sCPU %d [%s]",
s->len ? ", " : "", i, cpu_str);
g_free(cpu_str);
--
2.20.1
next prev parent reply other threads:[~2019-02-12 21:58 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-12 21:48 [Qemu-devel] [RFC 0/4] numa, spapr: add thread-id in the possible_cpus list Laurent Vivier
2019-02-12 21:48 ` [Qemu-devel] [RFC 1/4] " Laurent Vivier
2019-02-13 1:25 ` David Gibson
2019-02-13 8:42 ` Igor Mammedov
2019-02-13 9:08 ` Laurent Vivier
2019-02-13 12:16 ` Igor Mammedov
2019-02-12 21:48 ` [Qemu-devel] [RFC 2/4] numa: exit on incomplete CPU mapping Laurent Vivier
2019-02-12 21:48 ` Laurent Vivier [this message]
2019-02-12 21:48 ` [Qemu-devel] [RFC 4/4] numa: check threads of the same core are on the same node Laurent Vivier
2019-02-13 1:30 ` David Gibson
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=20190212214827.30543-4-lvivier@redhat.com \
--to=lvivier@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=pbonzini@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).