aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/xl_cmdimpl.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-06-01 12:06:19 +0100
committerIan Campbell <ian.campbell@citrix.com>2012-06-01 12:06:19 +0100
commit33a1df8e769b9a23126e3a02e6e8078f0b85bbf8 (patch)
tree158d96c7a813cb49180b6b2c281cf1189c95fc19 /tools/libxl/xl_cmdimpl.c
parent1b0c3e785e30de60bd93de53218907b2a3771839 (diff)
downloadxen-33a1df8e769b9a23126e3a02e6e8078f0b85bbf8.tar.gz
xen-33a1df8e769b9a23126e3a02e6e8078f0b85bbf8.tar.bz2
xen-33a1df8e769b9a23126e3a02e6e8078f0b85bbf8.zip
libxl: rename libxl_sched_params to libxl_domain_sched_params
Remove credit scheduler global options from the struct, they were never used anyway. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: George Dunlap <george.dunlap@eu.citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.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.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
index dde63fa463..be3661f64d 100644
--- a/tools/libxl/xl_cmdimpl.c
+++ b/tools/libxl/xl_cmdimpl.c
@@ -635,10 +635,6 @@ static void parse_config_data(const char *config_source,
b_info->sched_params.weight = l;
if (!xlu_cfg_get_long (config, "cap", &l, 0))
b_info->sched_params.cap = l;
- if (!xlu_cfg_get_long (config, "tslice_ms", &l, 0))
- b_info->sched_params.tslice_ms = l;
- if (!xlu_cfg_get_long (config, "ratelimit_us", &l, 0))
- b_info->sched_params.ratelimit_us = l;
if (!xlu_cfg_get_long (config, "period", &l, 0))
b_info->sched_params.period = l;
if (!xlu_cfg_get_long (config, "slice", &l, 0))