aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/xl_cmdimpl.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-06-22 11:41:43 +0100
committerIan Campbell <ian.campbell@citrix.com>2012-06-22 11:41:43 +0100
commit7f15d8540d2ea880170194700a8fb4600da8643b (patch)
treed89ea7967dc457a45cb411a3908e887af8d4172b /tools/libxl/xl_cmdimpl.c
parent31960ef4537fd485f2b2f80077b7c07f7d0ab56e (diff)
downloadxen-7f15d8540d2ea880170194700a8fb4600da8643b.tar.gz
xen-7f15d8540d2ea880170194700a8fb4600da8643b.tar.bz2
xen-7f15d8540d2ea880170194700a8fb4600da8643b.zip
libxl: validate scheduler parameters
This was previously done by xl itself however the domain was not created at that point so there was no domid to check. This happened to work on first boot because xl's global domid was initialised to zero so we would (incorrectly) validate the new domain to be against domain0. On reboot though we would try to use the old domain's id and fail. sched_params_valid is moved and gains a gc+domid parameters and s/ctx/CTX/. The call is placed after libxl__domain_build_info_setdefault in the create path, because set_defaults doesn't have access to the domid and there are other callers which don't even have a domid to give it. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/libxl/xl_cmdimpl.c')
-rw-r--r--tools/libxl/xl_cmdimpl.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
index 63dc564cb2..afa0af679f 100644
--- a/tools/libxl/xl_cmdimpl.c
+++ b/tools/libxl/xl_cmdimpl.c
@@ -550,48 +550,6 @@ vcpp_out:
return rc;
}
-static int sched_params_valid(libxl_domain_sched_params *scp)
-{
- int has_weight = scp->weight != LIBXL_DOMAIN_SCHED_PARAM_WEIGHT_DEFAULT;
- int has_period = scp->period != LIBXL_DOMAIN_SCHED_PARAM_PERIOD_DEFAULT;
- int has_slice = scp->slice != LIBXL_DOMAIN_SCHED_PARAM_SLICE_DEFAULT;
- int has_extratime =
- scp->extratime != LIBXL_DOMAIN_SCHED_PARAM_EXTRATIME_DEFAULT;
- libxl_domain_sched_params sci;
-
- libxl_domain_sched_params_get(ctx, domid, &sci);
-
- /* The sedf scheduler needs some more consistency checking */
- if (sci.sched == LIBXL_SCHEDULER_SEDF) {
- if (has_weight && (has_period || has_slice))
- return 0;
- if (has_period != has_slice)
- return 0;
-
- /*
- * Idea is, if we specify a weight, then both period and
- * slice has to be zero. OTOH, if we do not specify a weight,
- * that means we want a pure best effort domain or an actual
- * real-time one. In the former case, it is period that needs
- * to be zero, in the latter, weight should be.
- */
- if (has_weight) {
- scp->slice = 0;
- scp->period = 0;
- }
- else if (!has_period) {
- /* We can setup a proper best effort domain (extra time only)
- * iff we either already have or are asking for some extra time. */
- scp->weight = has_extratime ? scp->extratime : sci.extratime;
- scp->period = 0;
- }
- if (has_period && has_slice)
- scp->weight = 0;
- }
-
- return 1;
-}
-
static void parse_config_data(const char *config_source,
const char *config_data,
int config_len,
@@ -686,10 +644,6 @@ static void parse_config_data(const char *config_source,
b_info->sched_params.latency = l;
if (!xlu_cfg_get_long (config, "extratime", &l, 0))
b_info->sched_params.extratime = l;
- if (!sched_params_valid(&b_info->sched_params)) {
- fprintf(stderr, "Invalid scheduling parameters\n");
- exit(1);
- }
if (!xlu_cfg_get_long (config, "vcpus", &l, 0)) {
b_info->max_vcpus = l;