提交 fca41895 编写于 作者: T Tom Herbert 提交者: David S. Miller

flow_dissector: clean up IPIP case

Explicitly set proto to ETH_P_IP and jump directly to ip processing.
Signed-off-by: NTom Herbert <therbert@google.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 69e12d88
...@@ -139,7 +139,8 @@ bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow) ...@@ -139,7 +139,8 @@ bool skb_flow_dissect(const struct sk_buff *skb, struct flow_keys *flow)
break; break;
} }
case IPPROTO_IPIP: case IPPROTO_IPIP:
goto again; proto = htons(ETH_P_IP);
goto ip;
default: default:
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册