diff options
author | Tonghao Zhang <xiangxia.m.yue@gmail.com> | 2019-11-14 18:51:08 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-11-15 23:43:27 +0300 |
commit | 61ca533c0e94104c35fcb7858a23ec9a05d78143 (patch) | |
tree | a7598e6fe8882e6d04b987e6b1ca43ce75739b31 /drivers/net/tun.c | |
parent | 3bb884a4a0c4177c61233424d43d61545c4fc528 (diff) | |
download | linux-61ca533c0e94104c35fcb7858a23ec9a05d78143.tar.xz |
net: openvswitch: don't call pad_packet if not necessary
The nla_put_u16/nla_put_u32 makes sure that
*attrlen is align. The call tree is that:
nla_put_u16/nla_put_u32
-> nla_put attrlen = sizeof(u16) or sizeof(u32)
-> __nla_put attrlen
-> __nla_reserve attrlen
-> skb_put(skb, nla_total_size(attrlen))
nla_total_size returns the total length of attribute
including padding.
Cc: Joe Stringer <joe@ovn.org>
Cc: William Tu <u9012063@gmail.com>
Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tun.c')
0 files changed, 0 insertions, 0 deletions