[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20111222172211.C6A8.E1E9C6FF@jp.fujitsu.com>
Date: Thu, 22 Dec 2011 17:22:11 +0900
From: Yasunori Goto <y-goto@...fujitsu.com>
To: KOSAKI Motohiro <kosaki.motohiro@...il.com>
Cc: Peter Zijlstra <peterz@...radead.org>, Ingo Molnar <mingo@...e.hu>,
Hiroyuki KAMEZAWA <kamezawa.hiroyu@...fujitsu.com>,
Motohiro Kosaki <kosaki.motohiro@...fujitsu.com>,
Linux Kernel ML <linux-kernel@...r.kernel.org>
Subject: Re: [BUG] TASK_DEAD task is able to be woken up in special condition
Thank you for your response.
> > ----
> > Signed-off-by: Yasunori Goto<y-goto@...fujitsu.com>
> >
> > ---
> > kernel/exit.c | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > Index: linux-3.2-rc4/kernel/exit.c
> > ===================================================================
> > --- linux-3.2-rc4.orig/kernel/exit.c
> > +++ linux-3.2-rc4/kernel/exit.c
> > @@ -1038,8 +1038,11 @@ NORET_TYPE void do_exit(long code)
> >
> > preempt_disable();
> > exit_rcu();
> > +
> > + spin_lock(&tsk->pi_lock, flags);
> > /* causes final put_task_struct in finish_task_switch(). */
> > tsk->state = TASK_DEAD;
> > + spin_unlock(&tsk->pi_lock, flags);
> > schedule();
> > BUG();
> > /* Avoid "noreturn function does return". */
>
> I doubt it is not only TASK_DEAD issue, it is rwsem fundamental issue.
> Because of, a lot of place assume "current->state = newstate" is safe
> and don't need any synchronization. So, I'm worry about to lost
> TASK_UNINTERRUPTIBLE can make catastrophe like TASK_DEAD.
I don't understand why this is catastrophe.
I suppose it is just waken up from TASK_UNINTERRUPTIBLE
by try_to_wake_up() in race condition. It seems to be normal situation.....
But TASK_DEAD status is special. It must not return to TASK_RUNNING state.
>
> How about following patch? anyway, rwsem_down_failed_common() is
> definitely slowpath. so killing micro optimization is not so much
> problem, I guess.
>
>
>
> diff --git a/lib/rwsem.c b/lib/rwsem.c
> index 410aa11..e2a0c9a 100644
> --- a/lib/rwsem.c
> +++ b/lib/rwsem.c
> @@ -208,9 +208,9 @@ rwsem_down_failed_common(struct rw_semaphore *sem,
>
> /* wait to be given the lock */
> for (;;) {
> + schedule();
> if (!waiter.task)
> break;
> - schedule();
> set_task_state(tsk, TASK_UNINTERRUPTIBLE);
> }
>
Hmmmmmmm.
Are you sure there is no route which TASK_DEAD task is waken up like rwsem?
Thanks.
--
Yasunori Goto
--
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