Re: [tip:sched/core] sched: Do not account irq time to current task

From: Yong Zhang
Date: Mon Nov 29 2010 - 03:45:28 EST


On Tue, Oct 19, 2010 at 3:26 AM, tip-bot for Venkatesh Pallipadi
<venki@xxxxxxxxxx> wrote:
> Commit-ID: Â305e6835e05513406fa12820e40e4a8ecb63743c
> Gitweb: Â Â http://git.kernel.org/tip/305e6835e05513406fa12820e40e4a8ecb63743c
> Author: Â Â Venkatesh Pallipadi <venki@xxxxxxxxxx>
> AuthorDate: Mon, 4 Oct 2010 17:03:21 -0700
> Committer: ÂIngo Molnar <mingo@xxxxxxx>
> CommitDate: Mon, 18 Oct 2010 20:52:26 +0200
>
> sched: Do not account irq time to current task
>
> Scheduler accounts both softirq and interrupt processing times to the
> currently running task. This means, if the interrupt processing was
> for some other task in the system, then the current task ends up being
> penalized as it gets shorter runtime than otherwise.
>
> Change sched task accounting to acoount only actual task time from
> currently running task. Now update_curr(), modifies the delta_exec to
> depend on rq->clock_task.
>
> Note that this change only handles CONFIG_IRQ_TIME_ACCOUNTING case. We can
> extend this to CONFIG_VIRT_CPU_ACCOUNTING with minimal effort. But, thats
> for later.
>
> This change will impact scheduling behavior in interrupt heavy conditions.
>
> Tested on a 4-way system with eth0 handled by CPU 2 and a network heavy
> task (nc) running on CPU 3 (and no RSS/RFS). With that I have CPU 2
> spending 75%+ of its time in irq processing. CPU 3 spending around 35%
> time running nc task.
>
> Now, if I run another CPU intensive task on CPU 2, without this change
> /proc/<pid>/schedstat shows 100% of time accounted to this task. With this
> change, it rightly shows less than 25% accounted to this task as remaining
> time is actually spent on irq processing.
>
> Signed-off-by: Venkatesh Pallipadi <venki@xxxxxxxxxx>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
> LKML-Reference: <1286237003-12406-7-git-send-email-venki@xxxxxxxxxx>
> Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
> ---
> Âkernel/sched.c   Â|  43 ++++++++++++++++++++++++++++++++++++++++---
> Âkernel/sched_fair.c | Â Â6 +++---
> Âkernel/sched_rt.c  |  Â8 ++++----
> Â3 files changed, 47 insertions(+), 10 deletions(-)
>

[snip]

> diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c
> index ab77aa0..bea7d79 100644
> --- a/kernel/sched_rt.c
> +++ b/kernel/sched_rt.c
> @@ -609,7 +609,7 @@ static void update_curr_rt(struct rq *rq)
> Â Â Â Âif (!task_has_rt_policy(curr))
> Â Â Â Â Â Â Â Âreturn;
>
> - Â Â Â delta_exec = rq->clock - curr->se.exec_start;
> + Â Â Â delta_exec = rq->clock_task - curr->se.exec_start;
> Â Â Â Âif (unlikely((s64)delta_exec < 0))
> Â Â Â Â Â Â Â Âdelta_exec = 0;
>
> @@ -618,7 +618,7 @@ static void update_curr_rt(struct rq *rq)
> Â Â Â Âcurr->se.sum_exec_runtime += delta_exec;
> Â Â Â Âaccount_group_exec_runtime(curr, delta_exec);
>
> - Â Â Â curr->se.exec_start = rq->clock;
> + Â Â Â curr->se.exec_start = rq->clock_task;
> Â Â Â Âcpuacct_charge(curr, delta_exec);
>
> Â Â Â Âsched_rt_avg_update(rq, delta_exec);

Seems the above changes to update_curr_rt() have some false positive
to rt_bandwidth control.
For example:
rt_period=1000000;
rt_runtime=950000;
then if in that period the irq_time is no zero(such as 50000), according to
the throttle mechanism, rt is not throttled. In the end we left no
time to others.
It seems that this break the semantic of throttle.

Maybe we can revert the change to update_curr_rt()?

Thanks,
Yong
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/