From: Oleg Nesterov <oleg@redhat.com>
To: Jiri Olsa <jolsa@redhat.com>
Cc: rostedt@goodmis.org, fweisbec@gmail.com, mingo@redhat.com,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] tracing - putting cond_resched into tace_pipe loop
Date: Sun, 13 Mar 2011 15:58:11 +0100 [thread overview]
Message-ID: <20110313145811.GA30558@redhat.com> (raw)
In-Reply-To: <1299970786-8075-3-git-send-email-jolsa@redhat.com>
On 03/12, Jiri Olsa wrote:
>
> --- a/kernel/trace/trace.c
> +++ b/kernel/trace/trace.c
> @@ -3237,10 +3237,23 @@ waitagain:
> * One of the trace_seq_* functions is not used properly.
> */
> WARN_ON(iter->seq.full);
> +
> + /*
> + * There's a chance this loop might get quite tight,
> + * causing latency in non preemptive kernel.
> + */
> + cond_resched();
> + if (signal_pending(current)) {
> + sret = -EINTR;
> + break;
First of all: I do not pretend I understand this code ;) Still, a
couple of nits.
-EINTR doesn't look exactly right, I'd suggest -ERESTARTSYS. The same
for tracing_wait_pipe() btw, I think it should be fixed.
I wonder if it makes sense to simply "break" if signal_pending(), it
is possible we already have something to report via trace_seq_to_user().
Then we could do
- if (sret == -EBUSY)
- goto waitagain;
+ if (sret == -EBUSY) {
+ if (!signal_pending())
+ goto waitagain;
+ sret = -ERESTARTSYS;
+ }
Or we can change tracing_wait_pipe() to check signal_pending()
uncondditionally, I dunno.
Up to you, but note that otherwise the logic looks a bit strange.
Suppose that signal_pending() is already true when we call
tracing_wait_pipe(). In this case we are going to do the "unnecessary"
work and then return EINTR/ERESTART. This is correct, the next
invocation does trace_seq_to_user() before anything else, just
looks a bit strange.
Oleg.
next prev parent reply other threads:[~2011-03-13 15:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-12 22:59 [PATCH 0/2] tracing - avoid soft lockup in trace_pipe Jiri Olsa
2011-03-12 22:59 ` [PATCH 1/2] tracing - trace lost events properly Jiri Olsa
2011-03-12 22:59 ` [PATCH 2/2] tracing - putting cond_resched into tace_pipe loop Jiri Olsa
2011-03-13 14:58 ` Oleg Nesterov [this message]
2011-03-14 14:07 ` Steven Rostedt
2011-03-14 14:18 ` Jiri Olsa
2011-03-14 14:28 ` Steven Rostedt
2011-03-14 15:07 ` Jiri Olsa
2011-03-14 15:20 ` Steven Rostedt
2011-03-14 18:06 ` [PATCHv2] tracing - avoid soft lockup in trace_pipe Jiri Olsa
2011-03-21 12:10 ` Jiri Olsa
2011-03-25 2:23 ` Steven Rostedt
2011-03-25 3:14 ` Steven Rostedt
2011-03-25 11:05 ` [PATCHv3] " Jiri Olsa
2011-03-25 15:46 ` Steven Rostedt
2011-03-25 15:49 ` Steven Rostedt
2011-03-25 15:53 ` Jiri Olsa
2011-04-27 15:22 ` [tip:perf/core] tracing: Avoid " tip-bot for Jiri Olsa
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=20110313145811.GA30558@redhat.com \
--to=oleg@redhat.com \
--cc=fweisbec@gmail.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=rostedt@goodmis.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox