From: Oliver Hartkopp <socketcan@hartkopp.net>
To: Julia Lawall <julia@diku.dk>
Cc: Urs Thuermann <urs.thuermann@volkswagen.de>,
Oliver Hartkopp <oliver.hartkopp@volkswagen.de>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org, chri <chripell@gmail.com>,
chripell@evolware.org
Subject: Re: [PATCH 4/5] drivers/net/can: Correct NULL test
Date: Mon, 28 Dec 2009 13:49:58 +0000 [thread overview]
Message-ID: <4B38B786.9020609@hartkopp.net> (raw)
In-Reply-To: <Pine.LNX.4.64.0912272227290.20548@ask.diku.dk>
Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
Thanks Julia!
I added Christian Pellegrin who is the author of this driver in CC.
An obvious copy/paste error :-)
Regards,
Oliver
Acked-by: Oliver Hartkopp <oliver@hartkopp.net>
>
> Test the just-allocated value for NULL rather than some other value.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression x,y;
> statement S;
> @@
>
> x = \(kmalloc\|kcalloc\|kzalloc\)(...);
> (
> if ((x) = NULL) S
> |
> if (
> - y
> + x
> = NULL)
> S
> )
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
> drivers/net/can/mcp251x.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff -u -p a/drivers/net/can/mcp251x.c b/drivers/net/can/mcp251x.c
> --- a/drivers/net/can/mcp251x.c
> +++ b/drivers/net/can/mcp251x.c
> @@ -990,7 +990,7 @@ static int __devinit mcp251x_can_probe(s
> goto error_tx_buf;
> }
> priv->spi_rx_buf = kmalloc(SPI_TRANSFER_BUF_LEN, GFP_KERNEL);
> - if (!priv->spi_tx_buf) {
> + if (!priv->spi_rx_buf) {
> ret = -ENOMEM;
> goto error_rx_buf;
> }
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Oliver Hartkopp <socketcan@hartkopp.net>
To: Julia Lawall <julia@diku.dk>
Cc: Urs Thuermann <urs.thuermann@volkswagen.de>,
Oliver Hartkopp <oliver.hartkopp@volkswagen.de>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org, chri <chripell@gmail.com>,
chripell@evolware.org
Subject: Re: [PATCH 4/5] drivers/net/can: Correct NULL test
Date: Mon, 28 Dec 2009 14:49:58 +0100 [thread overview]
Message-ID: <4B38B786.9020609@hartkopp.net> (raw)
In-Reply-To: <Pine.LNX.4.64.0912272227290.20548@ask.diku.dk>
Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
Thanks Julia!
I added Christian Pellegrin who is the author of this driver in CC.
An obvious copy/paste error :-)
Regards,
Oliver
Acked-by: Oliver Hartkopp <oliver@hartkopp.net>
>
> Test the just-allocated value for NULL rather than some other value.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression x,y;
> statement S;
> @@
>
> x = \(kmalloc\|kcalloc\|kzalloc\)(...);
> (
> if ((x) == NULL) S
> |
> if (
> - y
> + x
> == NULL)
> S
> )
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
> drivers/net/can/mcp251x.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff -u -p a/drivers/net/can/mcp251x.c b/drivers/net/can/mcp251x.c
> --- a/drivers/net/can/mcp251x.c
> +++ b/drivers/net/can/mcp251x.c
> @@ -990,7 +990,7 @@ static int __devinit mcp251x_can_probe(s
> goto error_tx_buf;
> }
> priv->spi_rx_buf = kmalloc(SPI_TRANSFER_BUF_LEN, GFP_KERNEL);
> - if (!priv->spi_tx_buf) {
> + if (!priv->spi_rx_buf) {
> ret = -ENOMEM;
> goto error_rx_buf;
> }
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2009-12-28 13:49 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-27 21:27 [PATCH 4/5] drivers/net/can: Correct NULL test Julia Lawall
2009-12-27 21:27 ` Julia Lawall
2009-12-28 13:49 ` Oliver Hartkopp [this message]
2009-12-28 13:49 ` Oliver Hartkopp
2009-12-29 9:43 ` christian pellegrin
2009-12-29 9:43 ` christian pellegrin
2010-01-04 5:44 ` David Miller
2010-01-04 5:44 ` David Miller
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=4B38B786.9020609@hartkopp.net \
--to=socketcan@hartkopp.net \
--cc=chripell@evolware.org \
--cc=chripell@gmail.com \
--cc=julia@diku.dk \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=oliver.hartkopp@volkswagen.de \
--cc=urs.thuermann@volkswagen.de \
/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.