aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Riesch <[email protected]>2013-04-08 05:45:26 +0000
committerDavid S. Miller <[email protected]>2013-04-08 17:12:26 -0400
commit88c5b5ce5cb57af6ca2a7cf4d5715fa320448ff9 (patch)
tree58ed73ef75a5de3ed76c5364374c6884098fee0e
parent69b0216ac255f523556fa3d4ff030d857eaaa37f (diff)
rtnetlink: Call nlmsg_parse() with correct header length
Signed-off-by: Michael Riesch <[email protected]> Cc: "David S. Miller" <[email protected]> Cc: Greg Kroah-Hartman <[email protected]> Cc: Jiri Benc <[email protected]> Cc: "Theodore Ts'o" <[email protected]> Cc: [email protected] Acked-by: Mark Rustad <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--net/core/rtnetlink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index b65441da74ab..23854b51a259 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -1072,7 +1072,7 @@ static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
rcu_read_lock();
cb->seq = net->dev_base_seq;
- if (nlmsg_parse(cb->nlh, sizeof(struct rtgenmsg), tb, IFLA_MAX,
+ if (nlmsg_parse(cb->nlh, sizeof(struct ifinfomsg), tb, IFLA_MAX,
ifla_policy) >= 0) {
if (tb[IFLA_EXT_MASK])
@@ -1922,7 +1922,7 @@ static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
u32 ext_filter_mask = 0;
u16 min_ifinfo_dump_size = 0;
- if (nlmsg_parse(nlh, sizeof(struct rtgenmsg), tb, IFLA_MAX,
+ if (nlmsg_parse(nlh, sizeof(struct ifinfomsg), tb, IFLA_MAX,
ifla_policy) >= 0) {
if (tb[IFLA_EXT_MASK])
ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);