Lines Matching defs:sched_dl_entity
598 struct sched_dl_entity { struct
599 struct rb_node rb_node;
606 u64 dl_runtime; /* Maximum runtime for each instance */
607 u64 dl_deadline; /* Relative deadline of each instance */
608 u64 dl_period; /* Separation of two instances (period) */
609 u64 dl_bw; /* dl_runtime / dl_period */
610 u64 dl_density; /* dl_runtime / dl_deadline */
617 s64 runtime; /* Remaining runtime for this instance */
618 u64 deadline; /* Absolute deadline for this instance */
619 unsigned int flags; /* Specifying the scheduler behaviour */
641 unsigned int dl_throttled : 1;
642 unsigned int dl_yielded : 1;
643 unsigned int dl_non_contending : 1;
644 unsigned int dl_overrun : 1;
645 unsigned int dl_server : 1;
651 struct hrtimer dl_timer;
681 struct sched_dl_entity *pi_se; argument