Ingo Oeser 322f74a432 [IPV6]: Cleanups for net/ipv6/addrconf.c (kzalloc, early exit) v2
Here are some possible (and trivial) cleanups.
- use kzalloc() where possible
- invert allocation failure test like
  if (object) {
        /* Rest of function here */
  }
  to

  if (object == NULL)
        return NULL;

  /* Rest of function here */

Signed-off-by: Ingo Oeser <ioe-lkml@rameria.de>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2006-03-20 23:01:47 -08:00
..
2006-03-20 22:35:41 -08:00
2006-01-11 18:42:14 -08:00
2006-01-07 13:24:25 -08:00
2005-04-16 15:20:36 -07:00
2006-01-11 18:42:14 -08:00
2005-08-29 16:01:32 -07:00
2006-03-20 22:33:17 -08:00