diff options
author | Marc Kleine-Budde <mkl@pengutronix.de> | 2013-10-07 23:19:58 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-08 16:32:41 -0400 |
commit | c33a39c575068c2ea9bffb22fd6de2df19c74b89 (patch) | |
tree | dabba848fe22d4c3a4254aedb17a31a04e303cbe /net/8021q | |
parent | ede869cd0f45488195d56267d0c09ed511611d66 (diff) | |
download | linux-c33a39c575068c2ea9bffb22fd6de2df19c74b89.tar.bz2 |
net: vlan: fix nlmsg size calculation in vlan_get_size()
This patch fixes the calculation of the nlmsg size, by adding the missing
nla_total_size().
Cc: Patrick McHardy <kaber@trash.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/8021q/vlan_netlink.c b/net/8021q/vlan_netlink.c index 309129732285..c7e634af8516 100644 --- a/net/8021q/vlan_netlink.c +++ b/net/8021q/vlan_netlink.c @@ -171,7 +171,7 @@ static size_t vlan_get_size(const struct net_device *dev) return nla_total_size(2) + /* IFLA_VLAN_PROTOCOL */ nla_total_size(2) + /* IFLA_VLAN_ID */ - sizeof(struct ifla_vlan_flags) + /* IFLA_VLAN_FLAGS */ + nla_total_size(sizeof(struct ifla_vlan_flags)) + /* IFLA_VLAN_FLAGS */ vlan_qos_map_size(vlan->nr_ingress_mappings) + vlan_qos_map_size(vlan->nr_egress_mappings); } |