From: Samuel Ortiz <samuel.ortiz@intel.com>
To: Julia Lawall <julia@diku.dk>
Cc: "Zhu, Yi" <yi.zhu@intel.com>,
Intel Linux Wireless <ilw@linux.intel.com>,
"John W. Linville" <linville@tuxdriver.com>,
"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kernel-janitors@vger.kernel.org"
<kernel-janitors@vger.kernel.org>
Subject: Re: [PATCH 13/37] drivers/net/wireless/iwmc3200wifi: Use kmemdup
Date: Sun, 16 May 2010 23:01:36 +0000 [thread overview]
Message-ID: <20100516230135.GA3112@sortiz.org> (raw)
In-Reply-To: <Pine.LNX.4.64.1005152316400.21345@ask.diku.dk>
On Sat, May 15, 2010 at 10:16:58PM +0100, 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>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Cheers,
Samuel.
> ---
> drivers/net/wireless/iwmc3200wifi/rx.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff -u -p a/drivers/net/wireless/iwmc3200wifi/rx.c b/drivers/net/wireless/iwmc3200wifi/rx.c
> --- a/drivers/net/wireless/iwmc3200wifi/rx.c
> +++ b/drivers/net/wireless/iwmc3200wifi/rx.c
> @@ -321,14 +321,14 @@ iwm_rx_ticket_node_alloc(struct iwm_priv
> return ERR_PTR(-ENOMEM);
> }
>
> - ticket_node->ticket = kzalloc(sizeof(struct iwm_rx_ticket), GFP_KERNEL);
> + ticket_node->ticket = kmemdup(ticket, sizeof(struct iwm_rx_ticket),
> + GFP_KERNEL);
> if (!ticket_node->ticket) {
> IWM_ERR(iwm, "Couldn't allocate RX ticket\n");
> kfree(ticket_node);
> return ERR_PTR(-ENOMEM);
> }
>
> - memcpy(ticket_node->ticket, ticket, sizeof(struct iwm_rx_ticket));
> INIT_LIST_HEAD(&ticket_node->node);
>
> return ticket_node;
--
Intel Open Source Technology Centre
http://oss.intel.com/
---------------------------------------------------------------------
Intel Corporation SAS (French simplified joint stock company)
Registered headquarters: "Les Montalets"- 2, rue de Paris,
92196 Meudon Cedex, France
Registration Number: 302 456 199 R.C.S. NANTERRE
Capital: 4,572,000 Euros
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
WARNING: multiple messages have this Message-ID (diff)
From: Samuel Ortiz <samuel.ortiz@intel.com>
To: Julia Lawall <julia@diku.dk>
Cc: "Zhu, Yi" <yi.zhu@intel.com>,
Intel Linux Wireless <ilw@linux.intel.com>,
"John W. Linville" <linville@tuxdriver.com>,
"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kernel-janitors@vger.kernel.org"
<kernel-janitors@vger.kernel.org>
Subject: Re: [PATCH 13/37] drivers/net/wireless/iwmc3200wifi: Use kmemdup
Date: Mon, 17 May 2010 01:01:36 +0200 [thread overview]
Message-ID: <20100516230135.GA3112@sortiz.org> (raw)
In-Reply-To: <Pine.LNX.4.64.1005152316400.21345@ask.diku.dk>
On Sat, May 15, 2010 at 10:16:58PM +0100, 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>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Cheers,
Samuel.
> ---
> drivers/net/wireless/iwmc3200wifi/rx.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff -u -p a/drivers/net/wireless/iwmc3200wifi/rx.c b/drivers/net/wireless/iwmc3200wifi/rx.c
> --- a/drivers/net/wireless/iwmc3200wifi/rx.c
> +++ b/drivers/net/wireless/iwmc3200wifi/rx.c
> @@ -321,14 +321,14 @@ iwm_rx_ticket_node_alloc(struct iwm_priv
> return ERR_PTR(-ENOMEM);
> }
>
> - ticket_node->ticket = kzalloc(sizeof(struct iwm_rx_ticket), GFP_KERNEL);
> + ticket_node->ticket = kmemdup(ticket, sizeof(struct iwm_rx_ticket),
> + GFP_KERNEL);
> if (!ticket_node->ticket) {
> IWM_ERR(iwm, "Couldn't allocate RX ticket\n");
> kfree(ticket_node);
> return ERR_PTR(-ENOMEM);
> }
>
> - memcpy(ticket_node->ticket, ticket, sizeof(struct iwm_rx_ticket));
> INIT_LIST_HEAD(&ticket_node->node);
>
> return ticket_node;
--
Intel Open Source Technology Centre
http://oss.intel.com/
---------------------------------------------------------------------
Intel Corporation SAS (French simplified joint stock company)
Registered headquarters: "Les Montalets"- 2, rue de Paris,
92196 Meudon Cedex, France
Registration Number: 302 456 199 R.C.S. NANTERRE
Capital: 4,572,000 Euros
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
next prev parent reply other threads:[~2010-05-16 23:01 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-15 21:16 [PATCH 13/37] drivers/net/wireless/iwmc3200wifi: Use kmemdup Julia Lawall
2010-05-15 21:16 ` Julia Lawall
2010-05-16 23:01 ` Samuel Ortiz [this message]
2010-05-16 23:01 ` Samuel Ortiz
-- strict thread matches above, loose matches on Subject: below --
2010-05-15 21:16 Julia Lawall
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=20100516230135.GA3112@sortiz.org \
--to=samuel.ortiz@intel.com \
--cc=ilw@linux.intel.com \
--cc=julia@diku.dk \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=netdev@vger.kernel.org \
--cc=yi.zhu@intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.