aboutsummaryrefslogtreecommitdiffstats
path: root/tools/examples/xmexample3
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-05-12 10:13:15 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-05-12 10:13:15 +0100
commit0653286ebb7495fe8496558e85198699f6aa8c3a (patch)
tree8fa38931c5dc7734f5dfd519e1b71b5649357f75 /tools/examples/xmexample3
parent107fe015a169d68f986428e231c5bcb7f7880657 (diff)
downloadxen-0653286ebb7495fe8496558e85198699f6aa8c3a.tar.gz
xen-0653286ebb7495fe8496558e85198699f6aa8c3a.tar.bz2
xen-0653286ebb7495fe8496558e85198699f6aa8c3a.zip
Fix xmexamples to reflect new meaning of cpus= config option.
Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>
Diffstat (limited to 'tools/examples/xmexample3')
-rw-r--r--tools/examples/xmexample33
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/examples/xmexample3 b/tools/examples/xmexample3
index 09eb3744d2..8610fcc483 100644
--- a/tools/examples/xmexample3
+++ b/tools/examples/xmexample3
@@ -62,7 +62,8 @@ name = "VM%d" % vmid
# List of which CPUS this domain is allowed to use, default Xen picks
#cpus = "" # leave to Xen to pick
#cpus = "0" # all vcpus run on CPU0
-#cpus = "0-3,5,^1" # run on cpus 0,2,3,5
+#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
+#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
cpus = "%s" % vmid # set based on vmid (mod number of CPUs)
#----------------------------------------------------------------------------