Searched refs:dl_rq (Results 1 – 4 of 4) sorted by relevance
| /linux/kernel/sched/ |
| H A D | deadline.c | 71 static inline struct rq *rq_of_dl_rq(struct dl_rq *dl_rq) in rq_of_dl_rq() argument 73 return container_of(dl_rq, struct rq, dl); in rq_of_dl_rq() 86 static inline struct dl_rq *dl_rq_of_se(struct sched_dl_entity *dl_se) in dl_rq_of_se() 220 void __add_running_bw(u64 dl_bw, struct dl_rq *dl_rq) in __add_running_bw() argument 222 u64 old = dl_rq->running_bw; in __add_running_bw() 224 lockdep_assert_rq_held(rq_of_dl_rq(dl_rq)); in __add_running_bw() 225 dl_rq->running_bw += dl_bw; in __add_running_bw() 226 WARN_ON_ONCE(dl_rq->running_bw < old); /* overflow */ in __add_running_bw() 227 WARN_ON_ONCE(dl_rq->running_bw > dl_rq->this_bw); in __add_running_bw() 229 cpufreq_update_util(rq_of_dl_rq(dl_rq), 0); in __add_running_bw() [all …]
|
| H A D | sched.h | 861 struct dl_rq { struct 1149 struct dl_rq dl; 3088 extern void print_dl_rq(struct seq_file *m, int cpu, struct dl_rq *dl_rq); 3101 extern void init_dl_rq(struct dl_rq *dl_rq);
|
| H A D | debug.c | 904 void print_dl_rq(struct seq_file *m, int cpu, struct dl_rq *dl_rq) in print_dl_rq() argument 912 SEQ_printf(m, " .%-30s: %lu\n", #x, (unsigned long)(dl_rq->x)) in print_dl_rq()
|
| /linux/tools/sched/ |
| H A D | dl_bw_dump.py | 34 dl_rq = rq.dl
|