Home
last modified time | relevance | path

Searched refs:dl_b (Results 1 – 2 of 2) sorted by relevance

/linux/kernel/sched/
H A Ddeadline.c181 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument
183 struct root_domain *rd = container_of(dl_b, struct root_domain, dl_bw); in __dl_update()
216 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument
218 struct dl_rq *dl = container_of(dl_b, struct dl_rq, dl_bw); in __dl_update()
225 void __dl_sub(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_sub() argument
227 dl_b->total_bw -= tsk_bw; in __dl_sub()
228 __dl_update(dl_b, (s32)tsk_bw / cpus); in __dl_sub()
232 void __dl_add(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_add() argument
234 dl_b->total_bw += tsk_bw; in __dl_add()
235 __dl_update(dl_b, -((s32)tsk_bw / cpus)); in __dl_add()
[all …]
H A Dsched.h356 extern void init_dl_bw(struct dl_bw *dl_b);