Home
last modified time | relevance | path

Searched refs:sched_id (Results 1 – 24 of 24) sorted by relevance

/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_csched.c36 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT; in xc_sched_credit_domain_set()
56 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT; in xc_sched_credit_domain_get()
77 sysctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT; in xc_sched_credit_params_set()
100 sysctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT; in xc_sched_credit_params_get()
A Dxc_csched2.c36 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT2; in xc_sched_credit2_domain_set()
56 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT2; in xc_sched_credit2_domain_get()
77 sysctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT2; in xc_sched_credit2_params_set()
100 sysctl.u.scheduler_op.sched_id = XEN_SCHEDULER_CREDIT2; in xc_sched_credit2_params_get()
A Dxc_rt.c36 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_RTDS; in xc_sched_rtds_domain_set()
55 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_RTDS; in xc_sched_rtds_domain_get()
82 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_RTDS; in xc_sched_rtds_vcpu_set()
116 domctl.u.scheduler_op.sched_id = XEN_SCHEDULER_RTDS; in xc_sched_rtds_vcpu_get()
A Dxc_cpupool.c39 uint32_t sched_id) in xc_cpupool_create() argument
48 sysctl.u.cpupool_op.sched_id = sched_id; in xc_cpupool_create()
111 info->sched_id = sysctl.u.cpupool_op.sched_id; in xc_cpupool_getinfo()
A Dxc_arinc653.c47 sysctl.u.scheduler_op.sched_id = XEN_SCHEDULER_ARINC653; in xc_sched_arinc653_schedule_set()
77 sysctl.u.scheduler_op.sched_id = XEN_SCHEDULER_ARINC653; in xc_sched_arinc653_schedule_get()
A Dxc_misc.c331 int *sched_id) in xc_sched_id() argument
341 *sched_id = sysctl.u.sched_id.sched_id; in xc_sched_id()
/xen-4.10.0-shim-comet/xen/common/
A Dcpupool.c132 int poolid, unsigned int sched_id, int *perr) in cpupool_create() argument
145 cpupool_dprintk("cpupool_create(pool=%d,sched=%u)\n", poolid, sched_id); in cpupool_create()
174 c->sched = scheduler_alloc(sched_id, perr); in cpupool_create()
606 c = cpupool_create(poolid, op->sched_id, &ret); in cpupool_do_sysctl()
633 op->sched_id = c->sched->sched_id; in cpupool_do_sysctl()
A Dsysctl.c74 op->u.sched_id.sched_id = sched_id(); in do_sysctl()
A Dschedule.c1294 int sched_id(void) in sched_id() function
1296 return ops.sched_id; in sched_id()
1308 if ( op->sched_id != dom_scheduler(d)->sched_id ) in sched_adjust()
1347 rc = ((op->sched_id == pool->sched->sched_id) in sched_adjust_global()
1837 struct scheduler *scheduler_alloc(unsigned int sched_id, int *perr) in scheduler_alloc() argument
1843 if ( schedulers[i] && schedulers[i]->sched_id == sched_id ) in scheduler_alloc()
A Dsched_arinc653.c734 .sched_id = XEN_SCHEDULER_ARINC653,
A Dsched_null.c908 .sched_id = XEN_SCHEDULER_NULL,
A Dsched_rt.c1582 .sched_id = XEN_SCHEDULER_RTDS,
A Dsched_credit.c2259 .sched_id = XEN_SCHEDULER_CREDIT,
A Dsched_credit2.c4022 .sched_id = XEN_SCHEDULER_CREDIT2,
/xen-4.10.0-shim-comet/xen/include/public/
A Dsysctl.h114 uint32_t sched_id; member
520 uint32_t sched_id; /* IN: C OUT: I */ member
616 uint32_t sched_id; /* XEN_SCHEDULER_* (domctl.h) */ member
1085 struct xen_sysctl_sched_id sched_id; member
A Ddomctl.h379 uint32_t sched_id; /* XEN_SCHEDULER_* */ member
/xen-4.10.0-shim-comet/xen/include/xen/
A Dsched-if.h134 unsigned int sched_id; /* ID for this scheduler */ member
A Dsched.h652 int sched_id(void);
838 struct scheduler *scheduler_alloc(unsigned int sched_id, int *perr);
/xen-4.10.0-shim-comet/tools/ocaml/libs/xc/
A Dxenctrl.mli135 external sched_id : handle -> int = "stub_xc_sched_id"
A Dxenctrl_stubs.c528 int sched_id; in stub_xc_sched_id() local
530 if (xc_sched_id(_H(xch), &sched_id)) in stub_xc_sched_id()
532 CAMLreturn(Val_int(sched_id)); in stub_xc_sched_id()
A Dxenctrl.ml210 external sched_id: handle -> int = "stub_xc_sched_id"
/xen-4.10.0-shim-comet/tools/libxl/
A Dlibxl_cpupool.c53 info->sched = xcinfo->sched_id; in cpupool_info()
/xen-4.10.0-shim-comet/tools/python/xen/lowlevel/xc/
A Dxc.c1295 int sched_id; in pyxc_sched_id_get() local
1296 if (xc_sched_id(self->xc_handle, &sched_id) != 0) in pyxc_sched_id_get()
1299 return Py_BuildValue("i", sched_id); in pyxc_sched_id_get()
1754 "sched", info->sched_id, in pyxc_cpupool_getinfo()
/xen-4.10.0-shim-comet/tools/libxc/include/
A Dxenctrl.h1107 uint32_t sched_id; member
1124 uint32_t sched_id);
1271 int *sched_id);

Completed in 54 milliseconds