diff options
author | 2017-06-13 14:28:18 +0200 | |
---|---|---|
committer | 2017-06-13 13:54:03 -0400 | |
commit | aa9f979c41043d9fcf7957c99948e20bbddefc7f (patch) | |
tree | 121013b5d9c5ae6189070a7bb9f7d209962e4a22 /include | |
parent | Merge tag 'mac80211-next-for-davem-2017-06-13' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next (diff) | |
download | wireguard-linux-aa9f979c41043d9fcf7957c99948e20bbddefc7f.tar.xz wireguard-linux-aa9f979c41043d9fcf7957c99948e20bbddefc7f.zip |
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>
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions