From: Petko Manolov <petkan@nucleusys.com>
To: Julia Lawall <julia@diku.dk>
Cc: Petko Manolov <petkan@users.sourceforge.net>,
Greg Kroah-Hartman <gregkh@suse.de>,
linux-usb@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH 19/37] drivers/net/usb: Use kmemdup
Date: Wed, 19 May 2010 11:07:50 +0300 (EEST) [thread overview]
Message-ID: <alpine.DEB.2.00.1005191106430.3093@bender.nucleusys.com> (raw)
In-Reply-To: <Pine.LNX.4.64.1005152318410.21345@ask.diku.dk>
Looks all right to me.
Petko
On Sat, 15 May 2010, Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
>
> Use kmemdup when some other buffer is immediately copied into the
> allocated region.
>
> A simplified version of the semantic patch that makes this change is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression from,to,size,flag;
> statement S;
> @@
>
> - to = \(kmalloc\|kzalloc\)(size,flag);
> + to = kmemdup(from,size,flag);
> if (to==NULL || ...) S
> - memcpy(to, from, size);
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
> drivers/net/usb/pegasus.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff -u -p a/drivers/net/usb/pegasus.c b/drivers/net/usb/pegasus.c
> --- a/drivers/net/usb/pegasus.c
> +++ b/drivers/net/usb/pegasus.c
> @@ -203,13 +203,12 @@ static int set_registers(pegasus_t * peg
> char *buffer;
> DECLARE_WAITQUEUE(wait, current);
>
> - buffer = kmalloc(size, GFP_KERNEL);
> + buffer = kmemdup(data, size, GFP_KERNEL);
> if (!buffer) {
> netif_warn(pegasus, drv, pegasus->net,
> "out of memory in %s\n", __func__);
> return -ENOMEM;
> }
> - memcpy(buffer, data, size);
>
> add_wait_queue(&pegasus->ctrl_wait, &wait);
> set_current_state(TASK_UNINTERRUPTIBLE);
> @@ -255,13 +254,12 @@ static int set_register(pegasus_t * pega
> char *tmp;
> DECLARE_WAITQUEUE(wait, current);
>
> - tmp = kmalloc(1, GFP_KERNEL);
> + tmp = kmemdup(&data, 1, GFP_KERNEL);
> if (!tmp) {
> netif_warn(pegasus, drv, pegasus->net,
> "out of memory in %s\n", __func__);
> return -ENOMEM;
> }
> - memcpy(tmp, &data, 1);
> add_wait_queue(&pegasus->ctrl_wait, &wait);
> set_current_state(TASK_UNINTERRUPTIBLE);
> while (pegasus->flags & ETH_REGS_CHANGED)
>
prev parent reply other threads:[~2010-05-19 8:07 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-15 21:18 [PATCH 19/37] drivers/net/usb: Use kmemdup Julia Lawall
2010-05-19 8:07 ` Petko Manolov [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=alpine.DEB.2.00.1005191106430.3093@bender.nucleusys.com \
--to=petkan@nucleusys.com \
--cc=gregkh@suse.de \
--cc=julia@diku.dk \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=petkan@users.sourceforge.net \
/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