linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/5] drivers/net/can: Correct NULL test
@ 2009-12-27 21:27 Julia Lawall
  2009-12-28 13:49 ` Oliver Hartkopp
  2010-01-04  5:44 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Julia Lawall @ 2009-12-27 21:27 UTC (permalink / raw)
  To: Urs Thuermann, Oliver Hartkopp, netdev, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

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;
 		}

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4/5] drivers/net/can: Correct NULL test
  2009-12-27 21:27 [PATCH 4/5] drivers/net/can: Correct NULL test Julia Lawall
@ 2009-12-28 13:49 ` Oliver Hartkopp
  2009-12-29  9:43   ` christian pellegrin
  2010-01-04  5:44 ` David Miller
  1 sibling, 1 reply; 4+ messages in thread
From: Oliver Hartkopp @ 2009-12-28 13:49 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Urs Thuermann, Oliver Hartkopp, netdev, linux-kernel,
	kernel-janitors, chri, chripell

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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4/5] drivers/net/can: Correct NULL test
  2009-12-28 13:49 ` Oliver Hartkopp
@ 2009-12-29  9:43   ` christian pellegrin
  0 siblings, 0 replies; 4+ messages in thread
From: christian pellegrin @ 2009-12-29  9:43 UTC (permalink / raw)
  To: Oliver Hartkopp
  Cc: Julia Lawall, Urs Thuermann, Oliver Hartkopp, netdev,
	linux-kernel, kernel-janitors

On Mon, Dec 28, 2009 at 2:49 PM, Oliver Hartkopp <socketcan@hartkopp.net> wrote:
> 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 :-)
>

yes, exactly that: copy & paste is among the sweetest evils out there.
I'll try the semantic checker myself next time. Thanks!



-- 
Christian Pellegrin, see http://www.evolware.org/chri/
"Real Programmers don't play tennis, or any other sport which requires
you to change clothes. Mountain climbing is OK, and Real Programmers
wear their climbing boots to work in case a mountain should suddenly
spring up in the middle of the computer room."

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 4/5] drivers/net/can: Correct NULL test
  2009-12-27 21:27 [PATCH 4/5] drivers/net/can: Correct NULL test Julia Lawall
  2009-12-28 13:49 ` Oliver Hartkopp
@ 2010-01-04  5:44 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2010-01-04  5:44 UTC (permalink / raw)
  To: julia
  Cc: urs.thuermann, oliver.hartkopp, netdev, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>
Date: Sun, 27 Dec 2009 22:27:44 +0100 (CET)

> From: Julia Lawall <julia@diku.dk>
> 
> Test the just-allocated value for NULL rather than some other value.
 ...
> Signed-off-by: Julia Lawall <julia@diku.dk>

Applied.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-01-04  5:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-27 21:27 [PATCH 4/5] drivers/net/can: Correct NULL test Julia Lawall
2009-12-28 13:49 ` Oliver Hartkopp
2009-12-29  9:43   ` christian pellegrin
2010-01-04  5:44 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).