]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rtnetlink: fix FDB size computation
authorSabrina Dubroca <sd@queasysnail.net>
Fri, 18 Nov 2016 14:50:39 +0000 (15:50 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 18 Nov 2016 19:09:42 +0000 (14:09 -0500)
Add missing NDA_VLAN attribute's size.

Fixes: 1e53d5bb8878 ("net: Pass VLAN ID to rtnl_fdb_notify.")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/rtnetlink.c

index a6529c55ffb7adc5c48203e1a57c59c0ba01b806..2b9d7d08ed4d0f7540914bbbb9e895e5fc1d9fe6 100644 (file)
@@ -2852,7 +2852,10 @@ nla_put_failure:
 
 static inline size_t rtnl_fdb_nlmsg_size(void)
 {
-       return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN);
+       return NLMSG_ALIGN(sizeof(struct ndmsg)) +
+              nla_total_size(ETH_ALEN) +       /* NDA_LLADDR */
+              nla_total_size(sizeof(u16)) +    /* NDA_VLAN */
+              0;
 }
 
 static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, u16 vid, int type,