Loading kernel/sched/sched.h +2 −1 Original line number Original line Diff line number Diff line Loading @@ -2988,7 +2988,8 @@ static inline enum sched_boost_policy task_boost_policy(struct task_struct *p) * Filter out tasks less than min task util threshold * Filter out tasks less than min task util threshold * under conservative boost. * under conservative boost. */ */ if (task_util(p) <= sched_task_filter_util) if (sched_boost() == CONSERVATIVE_BOOST && task_util(p) <= sched_task_filter_util) policy = SCHED_BOOST_NONE; policy = SCHED_BOOST_NONE; } } Loading Loading
kernel/sched/sched.h +2 −1 Original line number Original line Diff line number Diff line Loading @@ -2988,7 +2988,8 @@ static inline enum sched_boost_policy task_boost_policy(struct task_struct *p) * Filter out tasks less than min task util threshold * Filter out tasks less than min task util threshold * under conservative boost. * under conservative boost. */ */ if (task_util(p) <= sched_task_filter_util) if (sched_boost() == CONSERVATIVE_BOOST && task_util(p) <= sched_task_filter_util) policy = SCHED_BOOST_NONE; policy = SCHED_BOOST_NONE; } } Loading