From: Gustavo Padovan <gustavo@padovan.org>
To: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
Cc: Marcel Holtmann <marcel@holtmann.org>,
Johan Hedberg <johan.hedberg@gmail.com>,
linux-bluetooth@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] net: bluetooth: Replaced kzalloc and memcpy with kmemdup
Date: Mon, 18 Mar 2013 11:56:18 -0300 [thread overview]
Message-ID: <20130318145618.GA16337@joana> (raw)
In-Reply-To: <1363442830-13754-1-git-send-email-gheorghiuandru@gmail.com>
Hi Alexandru,
* Alexandru Gheorghiu <gheorghiuandru@gmail.com> [2013-03-16 16:07:10 +0200=
]:
> Replaced calls to kzalloc followed by memcpy with a single call to kmemdu=
p.
> Patch found using coccinelle.
>=20
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> ---
> net/bluetooth/a2mp.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>=20
> diff --git a/net/bluetooth/a2mp.c b/net/bluetooth/a2mp.c
> index eb0f4b1..140e81c 100644
> --- a/net/bluetooth/a2mp.c
> +++ b/net/bluetooth/a2mp.c
> @@ -397,13 +397,12 @@ static int a2mp_getampassoc_rsp(struct amp_mgr *mgr=
, struct sk_buff *skb,
> if (ctrl) {
> u8 *assoc;
> =20
> - assoc =3D kzalloc(assoc_len, GFP_KERNEL);
> + assoc =3D kmemdup(rsp->amp_assoc, assoc_len, GFP_KERNEL);
> if (!assoc) {
> amp_ctrl_put(ctrl);
> return -ENOMEM;
> }
> =20
> - memcpy(assoc, rsp->amp_assoc, assoc_len);
> ctrl->assoc =3D assoc;
> ctrl->assoc_len =3D assoc_len;
> ctrl->assoc_rem_len =3D assoc_len;
> @@ -472,13 +471,12 @@ static int a2mp_createphyslink_req(struct amp_mgr *=
mgr, struct sk_buff *skb,
> size_t assoc_len =3D le16_to_cpu(hdr->len) - sizeof(*req);
> u8 *assoc;
> =20
> - assoc =3D kzalloc(assoc_len, GFP_KERNEL);
> + assoc =3D kmemdup(rep->amp_assoc, assoc_len, GFP_KERNEL);
Please get into the habit of build your patches before sending them upstrea=
m:
CC [M] net/bluetooth/a2mp.o
net/bluetooth/a2mp.c: In function =E2=80=98a2mp_createphyslink_req=E2=80=99:
net/bluetooth/a2mp.c:474:19: error: =E2=80=98rep=E2=80=99 undeclared (first=
use in this function)
net/bluetooth/a2mp.c:474:19: note: each undeclared identifier is reported o=
nly once for each function it appears in
make[2]: *** [net/bluetooth/a2mp.o] Error 1
make[1]: *** [net/bluetooth] Error 2
Gustavo
WARNING: multiple messages have this Message-ID (diff)
From: Gustavo Padovan <gustavo@padovan.org>
To: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
Cc: Marcel Holtmann <marcel@holtmann.org>,
Johan Hedberg <johan.hedberg@gmail.com>,
linux-bluetooth@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] net: bluetooth: Replaced kzalloc and memcpy with kmemdup
Date: Mon, 18 Mar 2013 11:56:18 -0300 [thread overview]
Message-ID: <20130318145618.GA16337@joana> (raw)
In-Reply-To: <1363442830-13754-1-git-send-email-gheorghiuandru@gmail.com>
Hi Alexandru,
* Alexandru Gheorghiu <gheorghiuandru@gmail.com> [2013-03-16 16:07:10 +0200]:
> Replaced calls to kzalloc followed by memcpy with a single call to kmemdup.
> Patch found using coccinelle.
>
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> ---
> net/bluetooth/a2mp.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/net/bluetooth/a2mp.c b/net/bluetooth/a2mp.c
> index eb0f4b1..140e81c 100644
> --- a/net/bluetooth/a2mp.c
> +++ b/net/bluetooth/a2mp.c
> @@ -397,13 +397,12 @@ static int a2mp_getampassoc_rsp(struct amp_mgr *mgr, struct sk_buff *skb,
> if (ctrl) {
> u8 *assoc;
>
> - assoc = kzalloc(assoc_len, GFP_KERNEL);
> + assoc = kmemdup(rsp->amp_assoc, assoc_len, GFP_KERNEL);
> if (!assoc) {
> amp_ctrl_put(ctrl);
> return -ENOMEM;
> }
>
> - memcpy(assoc, rsp->amp_assoc, assoc_len);
> ctrl->assoc = assoc;
> ctrl->assoc_len = assoc_len;
> ctrl->assoc_rem_len = assoc_len;
> @@ -472,13 +471,12 @@ static int a2mp_createphyslink_req(struct amp_mgr *mgr, struct sk_buff *skb,
> size_t assoc_len = le16_to_cpu(hdr->len) - sizeof(*req);
> u8 *assoc;
>
> - assoc = kzalloc(assoc_len, GFP_KERNEL);
> + assoc = kmemdup(rep->amp_assoc, assoc_len, GFP_KERNEL);
Please get into the habit of build your patches before sending them upstream:
CC [M] net/bluetooth/a2mp.o
net/bluetooth/a2mp.c: In function ‘a2mp_createphyslink_req’:
net/bluetooth/a2mp.c:474:19: error: ‘rep’ undeclared (first use in this function)
net/bluetooth/a2mp.c:474:19: note: each undeclared identifier is reported only once for each function it appears in
make[2]: *** [net/bluetooth/a2mp.o] Error 1
make[1]: *** [net/bluetooth] Error 2
Gustavo
next prev parent reply other threads:[~2013-03-18 14:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-16 14:07 [PATCH] net: bluetooth: Replaced kzalloc and memcpy with kmemdup Alexandru Gheorghiu
2013-03-18 14:56 ` Gustavo Padovan [this message]
2013-03-18 14:56 ` Gustavo Padovan
-- strict thread matches above, loose matches on Subject: below --
2013-03-17 5:16 Alexandru Gheorghiu
2013-03-18 15:17 ` Gustavo Padovan
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=20130318145618.GA16337@joana \
--to=gustavo@padovan.org \
--cc=gheorghiuandru@gmail.com \
--cc=johan.hedberg@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcel@holtmann.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 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.