aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorNicolas Dichtel <nicolas.dichtel@6wind.com>2016-04-26 10:06:17 +0200
committerDavid S. Miller <davem@davemloft.net>2016-04-26 12:00:49 -0400
commitb676338fb3aab0b63b4a2489feb8f35003db22e8 (patch)
treed812530e1f632a05113717680f55cf35c6fc73d7 /net
parentrtnl: align nlattr properly when needed (diff)
downloadlinux-dev-b676338fb3aab0b63b4a2489feb8f35003db22e8.tar.xz
linux-dev-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.c3
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;
}