summaryrefslogtreecommitdiff
path: root/include/qom
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2012-12-17 04:22:03 +0100
committerAndreas Färber <afaerber@suse.de>2013-01-15 04:09:13 +0100
commit1b1ed8dc40635d60dd95c04658989af63542fcbf (patch)
tree8e1e93bac615d3dac4a901af9bd7d371982634da /include/qom
parent66afd1ad5a7a25e573577ac45979d8a3213796c3 (diff)
downloadqemu-1b1ed8dc40635d60dd95c04658989af63542fcbf.tar.gz
cpu: Move numa_node field to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/qom')
-rw-r--r--include/qom/cpu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index 806b01a01d..30d1e0c663 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -59,6 +59,7 @@ struct kvm_run;
* CPUState:
* @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.
* @created: Indicates whether the CPU thread has been successfully created.
* @stop: Indicates a pending stop request.
* @stopped: Indicates the CPU has been artificially stopped.
@@ -73,6 +74,7 @@ struct CPUState {
int nr_cores;
int nr_threads;
+ int numa_node;
struct QemuThread *thread;
#ifdef _WIN32