[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140422132353.GK11182@twins.programming.kicks-ass.net>
Date: Tue, 22 Apr 2014 15:23:53 +0200
From: Peter Zijlstra <peterz@...radead.org>
To: Dongsheng Yang <yangds.fnst@...fujitsu.com>
Cc: rostedt@...dmis.org, fweisbec@...il.com, mingo@...hat.com,
acme@...stprotocols.net, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 4/8] sched/core: Skip wakeup when task is already running.
On Tue, Apr 22, 2014 at 08:56:11PM +0900, Dongsheng Yang wrote:
> >On 04/15/2014 10:53 PM, Peter Zijlstra wrote:
> >>On Tue, Apr 15, 2014 at 09:32:53PM +0900, Dongsheng Yang wrote:
> >>
> >>How can you get there with ->state == RUNNING? try_to_wake_up*() bail
> >>when !(->state & state).
> Hi Peter, after some more investigation, I think I got the problem, which is
> that
> some other task set p->state to TASK_RUNNING without holding p->pi_lock.
That would be a plain bug, you're only ever allowed setting your own
->state, never someone else's. That is:
for (;;) {
set_current_state(TASK_INTERRUPTIBLE);
if (cond)
break;
schedule();
}
__set_current_state(TASK_RUNNING);
Is the 'normal' way of blocking, and that is very much only touching its
own state. And in the above you cannot trigger the case you're seeing,
because the ->state = TASK_RUNNING, at the end, is _after_ its already
running, so we've completed the wakeup.
So I think you've spotted something rotten and we should catch/fix that.
Your backtrace only shows where we find ->state == TASK_RUNNING, not
where it became such.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists