Searched refs:dl_b (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-6.6/kernel/sched/ |
H A D | deadline.c | 170 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument 172 struct root_domain *rd = container_of(dl_b, struct root_domain, dl_bw); in __dl_update() 205 void __dl_update(struct dl_bw *dl_b, s64 bw) in __dl_update() argument 207 struct dl_rq *dl = container_of(dl_b, struct dl_rq, dl_bw); in __dl_update() 214 void __dl_sub(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_sub() argument 216 dl_b->total_bw -= tsk_bw; in __dl_sub() 217 __dl_update(dl_b, (s32)tsk_bw / cpus); in __dl_sub() 221 void __dl_add(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_add() argument 223 dl_b->total_bw += tsk_bw; in __dl_add() 224 __dl_update(dl_b, in __dl_add() 228 __dl_overflow(struct dl_bw *dl_b, unsigned long cap, u64 old_bw, u64 new_bw) __dl_overflow() argument 431 struct dl_bw *dl_b = dl_bw_of(task_cpu(p)); task_non_contending() local 495 init_dl_bw(struct dl_bw *dl_b) init_dl_bw() argument 667 struct dl_bw *dl_b; dl_task_offline_migration() local 1415 struct dl_bw *dl_b = dl_bw_of(task_cpu(p)); inactive_task_timer() local 2551 struct dl_bw *dl_b; dl_add_task_root_domain() local 2772 struct dl_bw *dl_b; sched_dl_global_validate() local 2822 struct dl_bw *dl_b; sched_dl_do_global() local 2863 struct dl_bw *dl_b = dl_bw_of(cpu); sched_dl_overflow() local 3067 struct dl_bw *dl_b; dl_bw_manage() local [all...] |
H A D | sched.h | 403 extern void init_dl_bw(struct dl_bw *dl_b);
|
/kernel/linux/linux-5.10/kernel/sched/ |
H A D | deadline.c | 338 struct dl_bw *dl_b = dl_bw_of(task_cpu(p)); in task_non_contending() local 342 raw_spin_lock(&dl_b->lock); in task_non_contending() 343 __dl_sub(dl_b, p->dl.dl_bw, dl_bw_cpus(task_cpu(p))); in task_non_contending() 345 raw_spin_unlock(&dl_b->lock); in task_non_contending() 402 void init_dl_bandwidth(struct dl_bandwidth *dl_b, u64 period, u64 runtime) in init_dl_bandwidth() argument 404 raw_spin_lock_init(&dl_b->dl_runtime_lock); in init_dl_bandwidth() 405 dl_b->dl_period = period; in init_dl_bandwidth() 406 dl_b->dl_runtime = runtime; in init_dl_bandwidth() 409 void init_dl_bw(struct dl_bw *dl_b) in init_dl_bw() argument 411 raw_spin_lock_init(&dl_b in init_dl_bw() 597 struct dl_bw *dl_b; dl_task_offline_migration() local 1359 struct dl_bw *dl_b = dl_bw_of(task_cpu(p)); inactive_task_timer() local 2388 struct dl_bw *dl_b; dl_add_task_root_domain() local 2578 struct dl_bw *dl_b; sched_dl_global_validate() local 2626 struct dl_bw *dl_b; sched_dl_do_global() local 2667 struct dl_bw *dl_b = dl_bw_of(cpu); sched_dl_overflow() local 2881 struct dl_bw *dl_b; dl_bw_manage() local [all...] |
H A D | sched.h | 386 static inline void __dl_update(struct dl_bw *dl_b, s64 bw); 389 void __dl_sub(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_sub() argument 391 dl_b->total_bw -= tsk_bw; in __dl_sub() 392 __dl_update(dl_b, (s32)tsk_bw / cpus); in __dl_sub() 396 void __dl_add(struct dl_bw *dl_b, u64 tsk_bw, int cpus) in __dl_add() argument 398 dl_b->total_bw += tsk_bw; in __dl_add() 399 __dl_update(dl_b, -((s32)tsk_bw / cpus)); in __dl_add() 402 static inline bool __dl_overflow(struct dl_bw *dl_b, unsigned long cap, in __dl_overflow() argument 405 return dl_b->bw != -1 && in __dl_overflow() 406 cap_scale(dl_b in __dl_overflow() 2471 __dl_update(struct dl_bw *dl_b, s64 bw) __dl_update() argument 2486 __dl_update(struct dl_bw *dl_b, s64 bw) __dl_update() argument [all...] |
Completed in 13 milliseconds