提交 91146153 编写于 作者: J Julian Anastasov 提交者: David S. Miller

ipv4: return valid RTA_IIF on ip route get

Extend commit 13378cad
("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: NJulian Anastasov <ja@ssi.bg>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 cc6ca302
无相关合并请求
...@@ -2357,7 +2357,7 @@ static int rt_fill_info(struct net *net, __be32 dst, __be32 src, ...@@ -2357,7 +2357,7 @@ static int rt_fill_info(struct net *net, __be32 dst, __be32 src,
} }
} else } else
#endif #endif
if (nla_put_u32(skb, RTA_IIF, rt->rt_iif)) if (nla_put_u32(skb, RTA_IIF, skb->dev->ifindex))
goto nla_put_failure; goto nla_put_failure;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
反馈
建议
客服 返回
顶部