diff options
author | Bharata B Rao <bharata@linux.vnet.ibm.com> | 2011-12-12 18:24:30 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-01-03 15:49:11 +0100 |
commit | 6e806cc38bb1a79ec52d7d86da4aca11cdc302c8 (patch) | |
tree | 441308ea814efa6f1df9b7707b0ab1e6d31d3d0c /hw/spapr.h | |
parent | 1fc02533e73ad66f756f07efdf80fa9bef5afbc8 (diff) | |
download | qemu-6e806cc38bb1a79ec52d7d86da4aca11cdc302c8.tar.gz qemu-6e806cc38bb1a79ec52d7d86da4aca11cdc302c8.tar.bz2 qemu-6e806cc38bb1a79ec52d7d86da4aca11cdc302c8.zip |
pseries: FDT NUMA extensions to support multi-node guests
Add NUMA specific properties to guest's device tree to boot a multi-node
guests. This patch adds the following properties:
ibm,associativity
ibm,architecture-vec-5
ibm,associativity-reference-points
With this, it becomes possible to use -numa option on pseries targets.
Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/spapr.h')
-rw-r--r-- | hw/spapr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/spapr.h b/hw/spapr.h index d624841362..e946a3433e 100644 --- a/hw/spapr.h +++ b/hw/spapr.h @@ -21,6 +21,7 @@ typedef struct sPAPREnvironment { target_ulong entry_point; int next_irq; int rtc_offset; + char *cpu_model; } sPAPREnvironment; #define H_SUCCESS 0 |