提交 9070683b 编写于 作者: T Thomas Graf 提交者: David S. Miller

[IPV4]: Remove some dead code from ip_forward()

Signed-off-by: NThomas Graf <tgraf@suug.ch>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 3e192bea
...@@ -76,16 +76,12 @@ int ip_forward(struct sk_buff *skb) ...@@ -76,16 +76,12 @@ int ip_forward(struct sk_buff *skb)
* that reaches zero, we must reply an ICMP control message telling * that reaches zero, we must reply an ICMP control message telling
* that the packet's lifetime expired. * that the packet's lifetime expired.
*/ */
if (skb->nh.iph->ttl <= 1)
iph = skb->nh.iph;
if (iph->ttl <= 1)
goto too_many_hops; goto too_many_hops;
if (!xfrm4_route_forward(skb)) if (!xfrm4_route_forward(skb))
goto drop; goto drop;
iph = skb->nh.iph;
rt = (struct rtable*)skb->dst; rt = (struct rtable*)skb->dst;
if (opt->is_strictroute && rt->rt_dst != rt->rt_gateway) if (opt->is_strictroute && rt->rt_dst != rt->rt_gateway)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册