1#============================================================================
2# Configuration setup for 'xm cpupool-create' or 'xl cpupool-create'.
3# This script sets the parameters used when a cpupool is created using
4# 'xm cpupool-create' or 'xl cpupool-create'.
5# You use a separate script for each cpupool you want to create, or
6# you can set the parameters for the cpupool on the xm command line.
7#============================================================================
8
9# the name of the new cpupool
10name = "Example-Cpupool"
11
12# the scheduler to use: valid are e.g. credit, credit2 and rtds
13sched = "credit"
14
15# list of cpus to use
16cpus = ["2", "3"]
17
18