[SLIP]: Simplify sl_free_bufs()
authorJesper Juhl <juhl-lkml@dif.dk>
Fri, 24 Jun 2005 04:06:56 +0000 (21:06 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 24 Jun 2005 04:06:56 +0000 (21:06 -0700)
We can avoid assignments to the local variable 'tmp' and
actually get rid of tmp alltogether in sl_free_bufs(). This patch does
that.  This is safe since both kfree() and slhc_free() handles NULL
pointers gracefully.

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/slip.c

index 19112712daf03ccab4eee49fa32063dbba5e0e84..c79e0ad4ba027afd1f8807de71ea1bc0cab0e68e 100644 (file)
@@ -198,18 +198,12 @@ err_exit:
 static void
 sl_free_bufs(struct slip *sl)
 {
-       void * tmp;
-
        /* Free all SLIP frame buffers. */
-       tmp = xchg(&sl->rbuff, NULL);
-       kfree(tmp);
-       tmp = xchg(&sl->xbuff, NULL);
-       kfree(tmp);
+       kfree(xchg(&sl->rbuff, NULL));
+       kfree(xchg(&sl->xbuff, NULL));
 #ifdef SL_INCLUDE_CSLIP
-       tmp = xchg(&sl->cbuff, NULL);
-       kfree(tmp);
-       if ((tmp = xchg(&sl->slcomp, NULL)) != NULL)
-               slhc_free(tmp);
+       kfree(xchg(&sl->cbuff, NULL));
+       slhc_free(xchg(&sl->slcomp, NULL));
 #endif
 }
 
This page took 0.031434 seconds and 5 git commands to generate.