Searched refs:dl_b (Results 1 – 2 of 2) sorted by relevance
/linux-6.6.21/kernel/sched/ |
D | deadline.c | 169 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument 171 struct root_domain *rd = container_of(dl_b, struct root_domain, dl_bw); in __dl_update() 204 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument 206 struct dl_rq *dl = container_of(dl_b, struct dl_rq, dl_bw); in __dl_update() 213 void __dl_sub(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_sub() argument 215 dl_b->total_bw -= tsk_bw; in __dl_sub() 216 __dl_update(dl_b, (s32)tsk_bw / cpus); in __dl_sub() 220 void __dl_add(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_add() argument 222 dl_b->total_bw += tsk_bw; in __dl_add() 223 __dl_update(dl_b, -((s32)tsk_bw / cpus)); in __dl_add() [all …]
|
D | sched.h | 318 extern void init_dl_bw(struct dl_bw *dl_b);
|