search for: sched_params_valid

Displaying 1 result from an estimated 1 matches for "sched_params_valid".

2012 Jun 20
7
[PATCH] xl: fix sedf parameters checking
...fied parameters to sensible values, depending on the ones the user provided. Signed-off-by: Dario Faggioli <dario.faggioli@citix.com> diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -555,6 +555,8 @@ static int sched_params_valid(libxl_doma 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-&g...