diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2016-04-26 10:06:17 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-26 12:00:49 -0400 |
commit | b676338fb3aab0b63b4a2489feb8f35003db22e8 (patch) | |
tree | d812530e1f632a05113717680f55cf35c6fc73d7 /net | |
parent | 270cb4d05b2923a4a4d712276e61f64c82567138 (diff) | |
download | linux-b676338fb3aab0b63b4a2489feb8f35003db22e8.tar.gz linux-b676338fb3aab0b63b4a2489feb8f35003db22e8.tar.bz2 linux-b676338fb3aab0b63b4a2489feb8f35003db22e8.zip |
neigh: align nlattr properly when needed
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/neighbour.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 6a395d440228..29dd8cc22bbf 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -1857,7 +1857,8 @@ static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl, ndst.ndts_table_fulls += st->table_fulls; } - if (nla_put(skb, NDTA_STATS, sizeof(ndst), &ndst)) + if (nla_put_64bit(skb, NDTA_STATS, sizeof(ndst), &ndst, + NDTA_PAD)) goto nla_put_failure; } |