Files
linux-st/lib
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-02-24 17:46:57 -08:00
2017-03-30 09:37:20 +02:00
2017-02-24 17:46:57 -08:00
2017-01-24 12:23:35 -05:00
2017-01-24 12:23:35 -05:00
2017-02-24 17:46:57 -08:00
2017-02-13 21:44:10 -05:00
2017-06-13 13:54:03 -04:00
2017-02-24 17:46:57 -08:00
2017-03-28 18:22:11 -04:00