From: Ingo Molnar <mingo@elte.hu>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: linux-kernel@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
Thomas Gleixner <tglx@linutronix.de>, Pekka Paalanen <pq@iki.fi>,
Frederic Weisbecker <fweisbec@gmail.com>,
Steven Rostedt <srostedt@redhat.com>
Subject: Re: [PATCH v2 1/1] ftrace: do not update max buffer with no users
Date: Thu, 13 Nov 2008 14:19:39 +0100 [thread overview]
Message-ID: <20081113131939.GA2669@elte.hu> (raw)
In-Reply-To: <alpine.DEB.1.10.0811130752480.7458@gandalf.stny.rr.com>
* Steven Rostedt <rostedt@goodmis.org> wrote:
> The line count is very misleading. The 83 insertions and deletions where
> moved code or indentation:
but that indentation is completely unnecessary:
> - ret = ring_buffer_resize(max_tr.buffer, val);
> - if (ret < 0) {
> - int r;
> - cnt = ret;
> - r = ring_buffer_resize(global_trace.buffer,
> - global_trace.entries);
> - if (r < 0) {
> - /* AARGH! We are left with different
> - * size max buffer!!!! */
> - WARN_ON(1);
> - tracing_disabled = 1;
> }
> - goto out;
> }
>
>
> + if (max_tr.buffer) {
> + ret = ring_buffer_resize(max_tr.buffer, val);
> + if (ret < 0) {
> + int r;
> + cnt = ret;
> + r = ring_buffer_resize(global_trace.buffer,
> + global_trace.entries);
> + if (r < 0) {
> + /* AARGH! We are left with different
> + * size max buffer!!!! */
> + WARN_ON(1);
> + tracing_disabled = 1;
> + }
> + goto out;
> }
> }
the obvious solution is to add this to ring_buffer_resize():
if (!buffer)
return size;
resizing a non-existent buffer should succeed. A two-liner patch. Not
160 lines of flux.
Really, you need to think _hard_ how to avoid invasive-looking changes
in late -rc's, because every extra line to review uses up precious
review resources.
Ingo
next prev parent reply other threads:[~2008-11-13 13:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-13 4:34 [PATCH v2 0/1] ftrace patches for 2.6.28 (update) Steven Rostedt
2008-11-13 4:34 ` [PATCH v2 1/1] ftrace: do not update max buffer with no users Steven Rostedt
2008-11-13 8:40 ` Ingo Molnar
2008-11-13 13:11 ` Steven Rostedt
2008-11-13 13:16 ` Steven Rostedt
2008-11-13 13:19 ` Ingo Molnar [this message]
2008-11-13 13:54 ` Steven Rostedt
2008-11-13 13:59 ` Steven Rostedt
2008-11-13 14:01 ` Ingo Molnar
2008-11-13 14:14 ` Steven Rostedt
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=20081113131939.GA2669@elte.hu \
--to=mingo@elte.hu \
--cc=akpm@linux-foundation.org \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pq@iki.fi \
--cc=rostedt@goodmis.org \
--cc=srostedt@redhat.com \
--cc=tglx@linutronix.de \
/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
all inboxes | Powered by JetHome®