diff options
author | Thomas Graf <tgraf@suug.ch> | 2012-06-26 19:36:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-27 18:36:44 -0400 |
commit | 74a0bd7d0ef4ed11345aaebc29bf4578ccf44087 (patch) | |
tree | 28398e84e848715ea11e2680077b3c11c3259217 | |
parent | 92a395e52f0c97f38ff675d7c698404bfc812dc2 (diff) |
ip6mr: Do not use RTA_PUT() macros
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/ip6mr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 461e47c8e956..4532973f0dd4 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c | |||
@@ -2104,8 +2104,9 @@ static int __ip6mr_fill_mroute(struct mr6_table *mrt, struct sk_buff *skb, | |||
2104 | if (c->mf6c_parent >= MAXMIFS) | 2104 | if (c->mf6c_parent >= MAXMIFS) |
2105 | return -ENOENT; | 2105 | return -ENOENT; |
2106 | 2106 | ||
2107 | if (MIF_EXISTS(mrt, c->mf6c_parent)) | 2107 | if (MIF_EXISTS(mrt, c->mf6c_parent) && |
2108 | RTA_PUT(skb, RTA_IIF, 4, &mrt->vif6_table[c->mf6c_parent].dev->ifindex); | 2108 | nla_put_u32(skb, RTA_IIF, mrt->vif6_table[c->mf6c_parent].dev->ifindex) < 0) |
2109 | return -EMSGSIZE; | ||
2109 | 2110 | ||
2110 | mp_head = (struct rtattr *)skb_put(skb, RTA_LENGTH(0)); | 2111 | mp_head = (struct rtattr *)skb_put(skb, RTA_LENGTH(0)); |
2111 | 2112 | ||