Searched refs:dl_b (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.1/kernel/sched/ |
D | deadline.c | 167 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument 169 struct root_domain *rd = container_of(dl_b, struct root_domain, dl_bw); in __dl_update() 202 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument 204 struct dl_rq *dl = container_of(dl_b, struct dl_rq, dl_bw); in __dl_update() 211 void __dl_sub(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_sub() argument 213 dl_b->total_bw -= tsk_bw; in __dl_sub() 214 __dl_update(dl_b, (s32)tsk_bw / cpus); in __dl_sub() 218 void __dl_add(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_add() argument 220 dl_b->total_bw += tsk_bw; in __dl_add() 221 __dl_update(dl_b, -((s32)tsk_bw / cpus)); in __dl_add() [all …]
|
D | sched.h | 324 extern void init_dl_bw(struct dl_bw *dl_b); 2357 extern void init_dl_bandwidth(struct dl_bandwidth *dl_b, u64 period, u64 runtime);
|