hulk inclusion category: bugfix bugzilla: NA CVE: NA -------------------------------- Fix kabi broken of struct sched_entity Fixes: a3ba52cc617d ("sched/fair: Fix lag clamp") Signed-off-by: Chen Jinghuang <chenjinghuang2@huawei.com> --- include/linux/sched.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/sched.h b/include/linux/sched.h index 7f2eb0780b65..11436cd515bc 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -584,7 +584,6 @@ struct sched_entity { struct rb_node run_node; u64 deadline; u64 min_vruntime; - u64 max_slice; struct list_head group_node; unsigned int on_rq; @@ -633,7 +632,7 @@ struct sched_entity { struct sched_avg avg; #endif KABI_USE(1, u64 min_slice) - KABI_RESERVE(2) + KABI_USE(2, u64 max_slice) KABI_RESERVE(3) KABI_RESERVE(4) }; -- 2.34.1