From: Oleg Nesterov <oleg@redhat.com>
To: "Metzger, Markus T" <markus.t.metzger@intel.com>
Cc: "Kleen, Andi" <andi.kleen@intel.com>, Ingo Molnar <mingo@elte.hu>,
Roland McGrath <roland@redhat.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Markus Metzger <markus.t.metzger@googlemail.com>
Subject: Re: [rfc] x86, bts: fix crash
Date: Mon, 30 Mar 2009 15:29:04 +0200 [thread overview]
Message-ID: <20090330132904.GA2822@redhat.com> (raw)
In-Reply-To: <928CFBE8E7CB0040959E56B4EA41A77E9266BB48@irsmsx504.ger.corp.intel.com>
On 03/30, Metzger, Markus T wrote:
>
> >The benefit would be that I don't need to hook into do_exit() anymore.
Metzger, I got lost ;) And I didn't sleep today, so most probably I missed
what you mean...
do you mean the helper below will be called under write_lock_irq(tasklist)?
In that case,
> >This would rid us of the nasty ->ptraced loop.
> >I will give it a try.
> >
> >
> >I use something like this to wait for the context switch:
> > nvcsw = task->nvcsw + 1;
> > nivcsw = task->nivcsw + 1;
> > for (;;) {
> > if (nvcsw < task->nvcsw)
> > break;
> > if (nivcsw < task->nivcsw)
> > break;
Not exactly right, schedule() increments nvcsw/nivcsw before context_switch().
But this is fixable.
However. What if this task spins in TASK_RUNNING waiting for tasklist_lock ?
This is deadlockable even with CONFIG_PREEMPT, we take tasklit for reading
in interrupt context.
Afaics, we can also deadlock if task_cpu(task) sends IPI to us (with wait = 1),
the sender spins with preemption disabled.
> > if (task->state != TASK_RUNNING)
> > break;
> > }
> >
>
> That is not quite right, as well. There's a race on the task state.
> In my example, I got TASK_DEAD before the dying task could complete its
> final schedule(), and the cpu continued tracing.
But we still have the same problems.
If the tracee doesn't call a blocking syscall, its ->state is always RUNNING.
It could be woken right after we see !TASK_RUNNING or !task_running().
Oleg.
next prev parent reply other threads:[~2009-03-30 13:33 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <928CFBE8E7CB0040959E56B4EA41A77E9260843D@irsmsx504.ger.corp.intel.com>
2009-03-26 1:58 ` [rfc] x86, bts: fix crash Oleg Nesterov
2009-03-27 15:01 ` Metzger, Markus T
2009-03-27 16:50 ` Oleg Nesterov
2009-03-27 17:33 ` Markus Metzger
2009-03-27 21:29 ` Oleg Nesterov
2009-03-30 7:24 ` Metzger, Markus T
2009-03-30 11:29 ` Metzger, Markus T
2009-03-30 13:29 ` Oleg Nesterov [this message]
2009-03-30 13:55 ` Metzger, Markus T
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090330132904.GA2822@redhat.com \
--to=oleg@redhat.com \
--cc=andi.kleen@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=markus.t.metzger@googlemail.com \
--cc=markus.t.metzger@intel.com \
--cc=mingo@elte.hu \
--cc=roland@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.