diff options
author | Julian Anastasov <ja@ssi.bg> | 2014-04-13 11:08:02 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-13 23:23:41 -0400 |
commit | 91146153da2feab18efab2e13b0945b6bb704ded (patch) | |
tree | 5305412f9427f50f69822e5fa16bb6db5f7e2ea0 /net/ipv4 | |
parent | cc6ca3023f2c2bbcd062e9d4cf6afc2ba2821ada (diff) |
ipv4: return valid RTA_IIF on ip route get
Extend commit 13378cad02afc2adc6c0e07fca03903c7ada0b37
("ipv4: Change rt->rt_iif encoding.") from 3.6 to return valid
RTA_IIF on 'ip route get ... iif DEVICE' instead of rt_iif 0
which is displayed as 'iif *'.
inet_iif is not appropriate to use because skb_iif is not set.
Use the skb->dev->ifindex instead.
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 34d094cadb11..20a59c388e6e 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
@@ -2357,7 +2357,7 @@ static int rt_fill_info(struct net *net, __be32 dst, __be32 src, | |||
2357 | } | 2357 | } |
2358 | } else | 2358 | } else |
2359 | #endif | 2359 | #endif |
2360 | if (nla_put_u32(skb, RTA_IIF, rt->rt_iif)) | 2360 | if (nla_put_u32(skb, RTA_IIF, skb->dev->ifindex)) |
2361 | goto nla_put_failure; | 2361 | goto nla_put_failure; |
2362 | } | 2362 | } |
2363 | 2363 | ||