From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Amerigo Wang <amwang@redhat.com>
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org
Subject: Re: [Patch] RCU trace: use scnprintf instead of snprintf
Date: Tue, 12 May 2009 09:15:47 -0700 [thread overview]
Message-ID: <20090512161547.GD6768@linux.vnet.ibm.com> (raw)
In-Reply-To: <20090512100504.6008.52782.sendpatchset@localhost.localdomain>
On Tue, May 12, 2009 at 06:04:15AM -0400, Amerigo Wang wrote:
>
> snprintf can return more than the size of buffer, this case
> is not expected here, obviously. Use scnprintf instead.
Good catch!!! I would welcome a simlarly careful review of the tracing
for the other RCU variants.
Reviewed-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Signed-off-by: WANG Cong <amwang@redhat.com>
> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
>
> ---
> diff --git a/kernel/rcupreempt_trace.c b/kernel/rcupreempt_trace.c
> index 7c2665c..4ea4300 100644
> --- a/kernel/rcupreempt_trace.c
> +++ b/kernel/rcupreempt_trace.c
> @@ -234,11 +234,11 @@ static ssize_t rcuctrs_read(struct file *filp, char __user *buffer,
>
> mutex_lock(&rcupreempt_trace_mutex);
>
> - cnt += snprintf(&rcupreempt_trace_buf[cnt], RCUPREEMPT_TRACE_BUF_SIZE,
> + cnt += scnprintf(&rcupreempt_trace_buf[cnt], RCUPREEMPT_TRACE_BUF_SIZE,
> "CPU last cur F M\n");
> for_each_online_cpu(cpu) {
> long *flipctr = rcupreempt_flipctr(cpu);
> - cnt += snprintf(&rcupreempt_trace_buf[cnt],
> + cnt += scnprintf(&rcupreempt_trace_buf[cnt],
> RCUPREEMPT_TRACE_BUF_SIZE - cnt,
> "%3d %4ld %3ld %d %d\n",
> cpu,
> @@ -247,12 +247,12 @@ static ssize_t rcuctrs_read(struct file *filp, char __user *buffer,
> rcupreempt_flip_flag(cpu),
> rcupreempt_mb_flag(cpu));
> }
> - cnt += snprintf(&rcupreempt_trace_buf[cnt],
> + cnt += scnprintf(&rcupreempt_trace_buf[cnt],
> RCUPREEMPT_TRACE_BUF_SIZE - cnt,
> "ggp = %ld, state = %s\n",
> rcu_batches_completed(),
> rcupreempt_try_flip_state_name());
> - cnt += snprintf(&rcupreempt_trace_buf[cnt],
> + cnt += scnprintf(&rcupreempt_trace_buf[cnt],
> RCUPREEMPT_TRACE_BUF_SIZE - cnt,
> "\n");
> bcount = simple_read_from_buffer(buffer, count, ppos,
prev parent reply other threads:[~2009-05-12 16:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-12 10:04 [Patch] RCU trace: use scnprintf instead of snprintf Amerigo Wang
2009-05-12 16:15 ` Paul E. McKenney [this message]
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=20090512161547.GD6768@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=amwang@redhat.com \
--cc=linux-kernel@vger.kernel.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