Files
linux/net
Johannes Berg aa9f979c41 networking: use skb_put_zero()
Use the recently introduced helper to replace the pattern of
skb_put() && memset(), this transformation was done with the
following spatch:

@@
identifier p;
expression len;
expression skb;
@@
-p = skb_put(skb, len);
-memset(p, 0, len);
+p = skb_put_zero(skb, len);

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-06-13 13:54:03 -04:00
..
2017-04-12 22:02:40 +02:00
2017-06-12 10:01:29 -04:00
2017-05-17 16:06:01 -04:00
2017-04-13 13:58:20 -04:00
2016-10-20 11:23:08 -04:00
2017-06-01 11:49:39 -04:00
2017-06-13 13:54:03 -04:00
2017-04-06 12:43:04 -07:00