diff options
author | Johannes Berg <johannes.berg@intel.com> | 2017-06-13 14:28:18 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-13 13:54:03 -0400 |
commit | aa9f979c41043d9fcf7957c99948e20bbddefc7f (patch) | |
tree | 121013b5d9c5ae6189070a7bb9f7d209962e4a22 /lib/nlattr.c | |
parent | 0e74008b668febb7ae024c7ee04b30dcbd1f1efd (diff) | |
download | linux-aa9f979c41043d9fcf7957c99948e20bbddefc7f.tar.gz linux-aa9f979c41043d9fcf7957c99948e20bbddefc7f.tar.bz2 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 'lib/nlattr.c')
-rw-r--r-- | lib/nlattr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/nlattr.c b/lib/nlattr.c index a7e0b16078df..d09d9746fc5d 100644 --- a/lib/nlattr.c +++ b/lib/nlattr.c @@ -400,8 +400,7 @@ void *__nla_reserve_nohdr(struct sk_buff *skb, int attrlen) { void *start; - start = skb_put(skb, NLA_ALIGN(attrlen)); - memset(start, 0, NLA_ALIGN(attrlen)); + start = skb_put_zero(skb, NLA_ALIGN(attrlen)); return start; } |