diff options
| author | Tejun Heo <[email protected]> | 2024-07-12 08:20:32 -1000 |
|---|---|---|
| committer | Tejun Heo <[email protected]> | 2024-07-12 08:20:32 -1000 |
| commit | fc283116d008654c8dd6ccb222372cf011d3bb80 (patch) | |
| tree | 5dbc1a34c42c985da7651e9ed5977248f6eaaecc /kernel | |
| parent | e7a6395a889a82edb1cdcebc2c66646aca454658 (diff) | |
sched: Move struct balance_callback definition upward
Move struct balance_callback definition upward so that it's visible to
class-specific rq struct definitions. This will be used to embed a struct
balance_callback in struct scx_rq.
No functional changes.
Signed-off-by: Tejun Heo <[email protected]>
Acked-by: David Vernet <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/sched/sched.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index 04184e87ba7c..86314a17f1c7 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h @@ -615,6 +615,11 @@ do { \ # define u64_u32_load(var) u64_u32_load_copy(var, var##_copy) # define u64_u32_store(var, val) u64_u32_store_copy(var, var##_copy, val) +struct balance_callback { + struct balance_callback *next; + void (*func)(struct rq *rq); +}; + /* CFS-related fields in a runqueue */ struct cfs_rq { struct load_weight load; @@ -1054,11 +1059,6 @@ struct uclamp_rq { DECLARE_STATIC_KEY_FALSE(sched_uclamp_used); #endif /* CONFIG_UCLAMP_TASK */ -struct balance_callback { - struct balance_callback *next; - void (*func)(struct rq *rq); -}; - /* * This is the main, per-CPU runqueue data structure. * |