aboutsummaryrefslogtreecommitdiff
path: root/include/qom
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2017-05-30 18:24:00 +0200
committerEduardo Habkost <ehabkost@redhat.com>2017-06-05 14:59:09 -0300
commit15f8b14228b856850df3fa5ba999ad96521f2208 (patch)
tree2ca59eabe74480c267f910e1bd1ff6cfe6e824c0 /include/qom
parentf75cd44de0ec20d72dc9eef5e6e48a8874c40727 (diff)
downloadqemu-15f8b14228b856850df3fa5ba999ad96521f2208.zip
qemu-15f8b14228b856850df3fa5ba999ad96521f2208.tar.gz
qemu-15f8b14228b856850df3fa5ba999ad96521f2208.tar.bz2
numa: move numa_node from CPUState into target specific classes
Move vcpu's associated numa_node field out of generic CPUState into inherited classes that actually care about cpu<->numa mapping, i.e: ARMCPU, PowerPCCPU, X86CPU. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Message-Id: <1496161442-96665-6-git-send-email-imammedo@redhat.com> [ehabkost: s/CPU is belonging to/CPU belongs to/ on comments] Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/qom')
-rw-r--r--include/qom/cpu.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index 55214ce..89ddb68 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -265,7 +265,6 @@ struct qemu_work_item;
* @cpu_index: CPU index (informative).
* @nr_cores: Number of cores within this CPU package.
* @nr_threads: Number of threads within this CPU.
- * @numa_node: NUMA node this CPU is belonging to.
* @host_tid: Host thread ID.
* @running: #true if CPU is currently running (lockless).
* @has_waiter: #true if a CPU is currently waiting for the cpu_exec_end;
@@ -314,7 +313,6 @@ struct CPUState {
int nr_cores;
int nr_threads;
- int numa_node;
struct QemuThread *thread;
#ifdef _WIN32