From: Steven Rostedt <rostedt@goodmis.org>
To: Chen Gang <gang.chen@asianux.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
Jens Axboe <axboe@kernel.dk>, Tejun Heo <tj@kernel.org>,
Jan Kara <jack@suse.cz>, "mingo@redhat.com" <mingo@redhat.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] kernel: trace: blktrace: remove redundent memcpy() in compat_blk_trace_setup()
Date: Sun, 3 Nov 2013 12:36:47 -0500 [thread overview]
Message-ID: <20131103123647.0bae8cf6@gandalf.local.home> (raw)
In-Reply-To: <52765C6B.7080608@asianux.com>
A quick review of this patch looks fine to me.
Although, using ARRAY_SIZE() for a character string seems to me a bit
over paranoid. But I'm fine with it, as it makes sure that the string
is an array and not a pointer.
Jens,
Can you give me an Acked-by?
-- Steve
On Sun, 03 Nov 2013 22:23:39 +0800
Chen Gang <gang.chen@asianux.com> wrote:
> do_blk_trace_setup() will fully initialize 'buts.name', so can remove
> the related memcpy(). And also use BLKTRACE_BDEV_SIZE and ARRAY_SIZE
> instead of hard code number '32'.
>
>
> Signed-off-by: Chen Gang <gang.chen@asianux.com>
> ---
> include/linux/blktrace_api.h | 2 +-
> kernel/trace/blktrace.c | 3 +--
> 2 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/include/linux/blktrace_api.h b/include/linux/blktrace_api.h
> index a12f6ed..afc1343 100644
> --- a/include/linux/blktrace_api.h
> +++ b/include/linux/blktrace_api.h
> @@ -89,7 +89,7 @@ static inline int blk_trace_init_sysfs(struct device *dev)
> #ifdef CONFIG_COMPAT
>
> struct compat_blk_user_trace_setup {
> - char name[32];
> + char name[BLKTRACE_BDEV_SIZE];
> u16 act_mask;
> u32 buf_size;
> u32 buf_nr;
> diff --git a/kernel/trace/blktrace.c b/kernel/trace/blktrace.c
> index 7f727b3..f785aef 100644
> --- a/kernel/trace/blktrace.c
> +++ b/kernel/trace/blktrace.c
> @@ -579,13 +579,12 @@ static int compat_blk_trace_setup(struct request_queue *q, char *name,
> .end_lba = cbuts.end_lba,
> .pid = cbuts.pid,
> };
> - memcpy(&buts.name, &cbuts.name, 32);
>
> ret = do_blk_trace_setup(q, name, dev, bdev, &buts);
> if (ret)
> return ret;
>
> - if (copy_to_user(arg, &buts.name, 32)) {
> + if (copy_to_user(arg, &buts.name, ARRAY_SIZE(buts.name))) {
> blk_trace_remove(q);
> return -EFAULT;
> }
next prev parent reply other threads:[~2013-11-03 17:36 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-03 14:23 [PATCH] kernel: trace: blktrace: remove redundent memcpy() in compat_blk_trace_setup() Chen Gang
2013-11-03 17:36 ` Steven Rostedt [this message]
2013-11-03 18:16 ` Jens Axboe
2013-11-03 20:15 ` Steven Rostedt
2013-11-04 0:51 ` Chen Gang
2013-11-04 0:55 ` Chen Gang
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=20131103123647.0bae8cf6@gandalf.local.home \
--to=rostedt@goodmis.org \
--cc=axboe@kernel.dk \
--cc=fweisbec@gmail.com \
--cc=gang.chen@asianux.com \
--cc=jack@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=tj@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