Searched refs:dl_rq (Results 1 – 3 of 3) sorted by relevance
/linux-6.6.21/kernel/sched/ |
D | deadline.c | 62 static inline struct rq *rq_of_dl_rq(struct dl_rq *dl_rq) in rq_of_dl_rq() argument 64 return container_of(dl_rq, struct rq, dl); in rq_of_dl_rq() 67 static inline struct dl_rq *dl_rq_of_se(struct sched_dl_entity *dl_se) in dl_rq_of_se() 206 struct dl_rq *dl = container_of(dl_b, struct dl_rq, dl_bw); in __dl_update() 234 void __add_running_bw(u64 dl_bw, struct dl_rq *dl_rq) in __add_running_bw() argument 236 u64 old = dl_rq->running_bw; in __add_running_bw() 238 lockdep_assert_rq_held(rq_of_dl_rq(dl_rq)); in __add_running_bw() 239 dl_rq->running_bw += dl_bw; in __add_running_bw() 240 SCHED_WARN_ON(dl_rq->running_bw < old); /* overflow */ in __add_running_bw() 241 SCHED_WARN_ON(dl_rq->running_bw > dl_rq->this_bw); in __add_running_bw() [all …]
|
D | debug.c | 739 void print_dl_rq(struct seq_file *m, int cpu, struct dl_rq *dl_rq) in print_dl_rq() argument 747 SEQ_printf(m, " .%-30s: %lu\n", #x, (unsigned long)(dl_rq->x)) in print_dl_rq() 754 dl_bw = &dl_rq->dl_bw; in print_dl_rq()
|
D | sched.h | 706 struct dl_rq { struct 1000 struct dl_rq dl; 2852 extern void print_dl_rq(struct seq_file *m, int cpu, struct dl_rq *dl_rq); 2868 extern void init_dl_rq(struct dl_rq *dl_rq);
|