Re: [.32-rc3] scheduler: iwlagn consistently high in "waiting for CPU"

From: Sedat Dilek
Date: Fri Oct 09 2009 - 03:57:03 EST


Hi Mike,

will you (re)send this patch as a new one with correct subject line to LKML?
Otherwise, it might disapper in this long thread.

Kind Regards,
- Sedat -

On Fri, Oct 9, 2009 at 8:35 AM, Mike Galbraith <efault@xxxxxx> wrote:
> On Thu, 2009-10-08 at 22:59 +0200, Frans Pop wrote:
>> On Thursday 08 October 2009, Mike Galbraith wrote:
>> > I still see very high latencies coming out of idle (last noted was >
>> > 300ms, NO_HZ) with this patch,
>> >
>> > Like this:
>> >
>> > Cause                      Maximum  ÂPercentage
>> > Scheduler: waiting for cpu          604.2 msec    Â49.0 %
>>
>> I'm not seeing anything even remotely like that.
>
> Instrumenting, I saw (stale) clock deltas of >900ms coming out of idle,
> delta being the difference between rq->clock when we hit update_curr()
> and discover that this queue was idle, and what the clock will be an
> instant or two later when somebody winds the clock.
>
> I've been watching latencytop for a while now to make sure latency is
> really dead. ÂI see no twitching, so...
>
> sched: update the clock of runqueue select_task_rq() selected.
>
> In try_to_wake_up(), we update the runqueue clock, but select_task_rq()
> may select a different runqueue than the one we updated, leaving the new
> runqueue's clock stale for a bit.
>
> This patch cures occasional huge latencies reported by latencytop when
> coming out of idle on a mostly idle NO_HZ box.
>
> Signed-off-by: Mike Galbraith <efault@xxxxxx>
> Cc: Ingo Molnar <mingo@xxxxxxx>
> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
> LKML-Reference: <new-submission>
>
> ---
> Âkernel/sched.c | Â Â8 ++++++--
> Â1 file changed, 6 insertions(+), 2 deletions(-)
>
> Index: linux-2.6/kernel/sched.c
> ===================================================================
> --- linux-2.6.orig/kernel/sched.c
> +++ linux-2.6/kernel/sched.c
> @@ -2311,7 +2311,7 @@ static int try_to_wake_up(struct task_st
> Â{
> Â Â Â Âint cpu, orig_cpu, this_cpu, success = 0;
> Â Â Â Âunsigned long flags;
> - Â Â Â struct rq *rq;
> + Â Â Â struct rq *rq, *orig_rq;
>
> Â Â Â Âif (!sched_feat(SYNC_WAKEUPS))
> Â Â Â Â Â Â Â Âwake_flags &= ~WF_SYNC;
> @@ -2319,7 +2319,7 @@ static int try_to_wake_up(struct task_st
> Â Â Â Âthis_cpu = get_cpu();
>
> Â Â Â Âsmp_wmb();
> - Â Â Â rq = task_rq_lock(p, &flags);
> + Â Â Â rq = orig_rq = task_rq_lock(p, &flags);
> Â Â Â Âupdate_rq_clock(rq);
> Â Â Â Âif (!(p->state & state))
> Â Â Â Â Â Â Â Âgoto out;
> @@ -2350,6 +2350,10 @@ static int try_to_wake_up(struct task_st
> Â Â Â Â Â Â Â Âset_task_cpu(p, cpu);
>
> Â Â Â Ârq = task_rq_lock(p, &flags);
> +
> + Â Â Â if (rq != orig_rq)
> + Â Â Â Â Â Â Â update_rq_clock(rq);
> +
> Â Â Â ÂWARN_ON(p->state != TASK_WAKING);
> Â Â Â Âcpu = task_cpu(p);
>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at Âhttp://vger.kernel.org/majordomo-info.html
>
--
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/