linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sched/fair: Allow non-idle task to preempt idle task directly
@ 2022-04-01  9:11 zhangsong
  2022-04-01 13:09 ` Vincent Guittot
  0 siblings, 1 reply; 4+ messages in thread
From: zhangsong @ 2022-04-01  9:11 UTC (permalink / raw)
  To: peterz, mingo, juri.lelli, vincent.guittot
  Cc: dietmar.eggemann, rostedt, bsegall, mgorman, bristot,
	linux-kernel, zhangsong

From: zhangsong <zhangsong34@gmail.com>

In check_preempt_tick(), the sched idle task may exectue at least
`sysctl_sched_min_granularity` time but any other cfs tasks cannot
preempt it. So it is nessesary to ignore the `sysctl_sched_min_granularity`
resctriction for sched idle task preemption.

Signed-off-by: zhangsong <zhangsong34@gmail.com>
---
 kernel/sched/fair.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index d4bd299d6..edcb33440 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -4477,6 +4477,15 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
 	struct sched_entity *se;
 	s64 delta;
 
+	se = __pick_first_entity(cfs_rq);
+
+	if ((cfs_rq->last && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
+	    (cfs_rq->next && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
+	    se_is_idle(se) - se_is_idle(curr) < 0) {
+		resched_curr(rq_of(cfs_rq));
+		return;
+	}
+
 	ideal_runtime = sched_slice(cfs_rq, curr);
 	delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
 	if (delta_exec > ideal_runtime) {
@@ -4497,7 +4506,6 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
 	if (delta_exec < sysctl_sched_min_granularity)
 		return;
 
-	se = __pick_first_entity(cfs_rq);
 	delta = curr->vruntime - se->vruntime;
 
 	if (delta < 0)
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] sched/fair: Allow non-idle task to preempt idle task directly
  2022-04-01  9:11 [PATCH] sched/fair: Allow non-idle task to preempt idle task directly zhangsong
@ 2022-04-01 13:09 ` Vincent Guittot
  2022-04-02  3:32   ` zhangsong (J)
  0 siblings, 1 reply; 4+ messages in thread
From: Vincent Guittot @ 2022-04-01 13:09 UTC (permalink / raw)
  To: zhangsong
  Cc: peterz, mingo, juri.lelli, dietmar.eggemann, rostedt, bsegall,
	mgorman, bristot, linux-kernel, zhangsong

On Fri, 1 Apr 2022 at 11:13, zhangsong <zhangsong34@huawei.com> wrote:
>
> From: zhangsong <zhangsong34@gmail.com>
>
> In check_preempt_tick(), the sched idle task may exectue at least
> `sysctl_sched_min_granularity` time but any other cfs tasks cannot
> preempt it. So it is nessesary to ignore the `sysctl_sched_min_granularity`
> resctriction for sched idle task preemption.

Could you explain why you need to remove this condition for sched_idle ?
sched_idle tasks are already preempted at wakeup by others. And they
run while others are runnable only if they has not run for a very long
time compares to other. The ideal_runtime of a sched_idle task is
capped to 750us min to ensure a minimum progress. But this will happen
not more than once  every 256ms and most probably even less often.

>
> Signed-off-by: zhangsong <zhangsong34@gmail.com>
> ---
>  kernel/sched/fair.c | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index d4bd299d6..edcb33440 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -4477,6 +4477,15 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
>         struct sched_entity *se;
>         s64 delta;
>
> +       se = __pick_first_entity(cfs_rq);
> +
> +       if ((cfs_rq->last && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
> +           (cfs_rq->next && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
> +           se_is_idle(se) - se_is_idle(curr) < 0) {
> +               resched_curr(rq_of(cfs_rq));
> +               return;

Why all these complex conditions ?
if (se_is_idle(curr)) should be enough


> +       }
> +
>         ideal_runtime = sched_slice(cfs_rq, curr);
>         delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
>         if (delta_exec > ideal_runtime) {
> @@ -4497,7 +4506,6 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
>         if (delta_exec < sysctl_sched_min_granularity)
>                 return;
>
> -       se = __pick_first_entity(cfs_rq);
>         delta = curr->vruntime - se->vruntime;
>
>         if (delta < 0)
> --
> 2.27.0
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sched/fair: Allow non-idle task to preempt idle task directly
  2022-04-01 13:09 ` Vincent Guittot
@ 2022-04-02  3:32   ` zhangsong (J)
  2022-04-04 10:16     ` Vincent Guittot
  0 siblings, 1 reply; 4+ messages in thread
From: zhangsong (J) @ 2022-04-02  3:32 UTC (permalink / raw)
  To: Vincent Guittot
  Cc: peterz, mingo, juri.lelli, dietmar.eggemann, rostedt, bsegall,
	mgorman, bristot, linux-kernel, zhangsong


在 2022/4/1 21:09, Vincent Guittot 写道:
> On Fri, 1 Apr 2022 at 11:13, zhangsong <zhangsong34@huawei.com> wrote:
>> From: zhangsong <zhangsong34@gmail.com>
>>
>> In check_preempt_tick(), the sched idle task may exectue at least
>> `sysctl_sched_min_granularity` time but any other cfs tasks cannot
>> preempt it. So it is nessesary to ignore the `sysctl_sched_min_granularity`
>> resctriction for sched idle task preemption.
> Could you explain why you need to remove this condition for sched_idle ?
> sched_idle tasks are already preempted at wakeup by others. And they
> run while others are runnable only if they has not run for a very long
> time compares to other. The ideal_runtime of a sched_idle task is
> capped to 750us min to ensure a minimum progress. But this will happen
> not more than once  every 256ms and most probably even less often.

Thanks for your reply!I think that sched idle task is treated offline 
task, and sched normal task is treated online task. To reduce latency of 
online tasks and the interference from offline tasks, it is no need to 
let offline task occupy any CPU time.

>
>> Signed-off-by: zhangsong <zhangsong34@gmail.com>
>> ---
>>   kernel/sched/fair.c | 10 +++++++++-
>>   1 file changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
>> index d4bd299d6..edcb33440 100644
>> --- a/kernel/sched/fair.c
>> +++ b/kernel/sched/fair.c
>> @@ -4477,6 +4477,15 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
>>          struct sched_entity *se;
>>          s64 delta;
>>
>> +       se = __pick_first_entity(cfs_rq);
>> +
>> +       if ((cfs_rq->last && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
>> +           (cfs_rq->next && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
>> +           se_is_idle(se) - se_is_idle(curr) < 0) {
>> +               resched_curr(rq_of(cfs_rq));
>> +               return;
> Why all these complex conditions ?
> if (se_is_idle(curr)) should be enough
>
I think that if se/next/last is not idle and curr is idle, current 
cfs_rq should resched and curr can be preempt by others.
>> +       }
>> +
>>          ideal_runtime = sched_slice(cfs_rq, curr);
>>          delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
>>          if (delta_exec > ideal_runtime) {
>> @@ -4497,7 +4506,6 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
>>          if (delta_exec < sysctl_sched_min_granularity)
>>                  return;
>>
>> -       se = __pick_first_entity(cfs_rq);
>>          delta = curr->vruntime - se->vruntime;
>>
>>          if (delta < 0)
>> --
>> 2.27.0
>>
> .

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sched/fair: Allow non-idle task to preempt idle task directly
  2022-04-02  3:32   ` zhangsong (J)
@ 2022-04-04 10:16     ` Vincent Guittot
  0 siblings, 0 replies; 4+ messages in thread
From: Vincent Guittot @ 2022-04-04 10:16 UTC (permalink / raw)
  To: zhangsong (J)
  Cc: peterz, mingo, juri.lelli, dietmar.eggemann, rostedt, bsegall,
	mgorman, bristot, linux-kernel, zhangsong

On Sat, 2 Apr 2022 at 05:33, zhangsong (J) <zhangsong34@huawei.com> wrote:
>
>
> 在 2022/4/1 21:09, Vincent Guittot 写道:
> > On Fri, 1 Apr 2022 at 11:13, zhangsong <zhangsong34@huawei.com> wrote:
> >> From: zhangsong <zhangsong34@gmail.com>
> >>
> >> In check_preempt_tick(), the sched idle task may exectue at least
> >> `sysctl_sched_min_granularity` time but any other cfs tasks cannot
> >> preempt it. So it is nessesary to ignore the `sysctl_sched_min_granularity`
> >> resctriction for sched idle task preemption.
> > Could you explain why you need to remove this condition for sched_idle ?
> > sched_idle tasks are already preempted at wakeup by others. And they
> > run while others are runnable only if they has not run for a very long
> > time compares to other. The ideal_runtime of a sched_idle task is
> > capped to 750us min to ensure a minimum progress. But this will happen
> > not more than once  every 256ms and most probably even less often.
>
> Thanks for your reply!I think that sched idle task is treated offline
> task, and sched normal task is treated online task. To reduce latency of
> online tasks and the interference from offline tasks, it is no need to
> let offline task occupy any CPU time.

This doesn't explain why you want to do this. What particular problem
are you facing that needs this change ?
Not sure what you mean by offline task. sched_idle tasks are cfs tasks
with very low weight, preempted at wakeup and which don't preempt
others. Nevertheless, they need to make progress to not starve the
system so there is a need to let sched_idle task to make progress from
time to time so we ensure them 0.3% of cpu bandwidth.

>
> >
> >> Signed-off-by: zhangsong <zhangsong34@gmail.com>
> >> ---
> >>   kernel/sched/fair.c | 10 +++++++++-
> >>   1 file changed, 9 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> >> index d4bd299d6..edcb33440 100644
> >> --- a/kernel/sched/fair.c
> >> +++ b/kernel/sched/fair.c
> >> @@ -4477,6 +4477,15 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
> >>          struct sched_entity *se;
> >>          s64 delta;
> >>
> >> +       se = __pick_first_entity(cfs_rq);
> >> +
> >> +       if ((cfs_rq->last && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
> >> +           (cfs_rq->next && se_is_idle(cfs_rq->last) - se_is_idle(curr) < 0) ||
> >> +           se_is_idle(se) - se_is_idle(curr) < 0) {
> >> +               resched_curr(rq_of(cfs_rq));
> >> +               return;
> > Why all these complex conditions ?
> > if (se_is_idle(curr)) should be enough
> >
> I think that if se/next/last is not idle and curr is idle, current
> cfs_rq should resched and curr can be preempt by others.
> >> +       }
> >> +
> >>          ideal_runtime = sched_slice(cfs_rq, curr);
> >>          delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
> >>          if (delta_exec > ideal_runtime) {
> >> @@ -4497,7 +4506,6 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
> >>          if (delta_exec < sysctl_sched_min_granularity)
> >>                  return;
> >>
> >> -       se = __pick_first_entity(cfs_rq);
> >>          delta = curr->vruntime - se->vruntime;
> >>
> >>          if (delta < 0)
> >> --
> >> 2.27.0
> >>
> > .

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-04-04 10:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-01  9:11 [PATCH] sched/fair: Allow non-idle task to preempt idle task directly zhangsong
2022-04-01 13:09 ` Vincent Guittot
2022-04-02  3:32   ` zhangsong (J)
2022-04-04 10:16     ` Vincent Guittot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).