search for: has_slice

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

2012 Jun 20
7
[PATCH] xl: fix sedf parameters checking
...mpl.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->extratime != LIBXL_DOMAIN_SCHED_PARAM_EXTRATIME_DEFAULT; libxl_domain_sched_params sci; libxl_domain_sched_params_get(ctx, domid, &sci); @@ -563,12 +565,27 @@ static int sche...