From: Tom Herbert Date: Mon, 29 Jul 2013 18:07:36 +0000 (-0700) Subject: flow_dissector: clean up IPIP case X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fca418955148e4f4555d7ce911e9eee3e7970a7f;p=linux-beck.git flow_dissector: clean up IPIP case Explicitly set proto to ETH_P_IP and jump directly to ip processing. Signed-off-by: Tom Herbert Signed-off-by: David S. Miller --- diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c index 00ee068efc1c..3259446f3026 100644 --- a/net/core/flow_dissector.c +++ b/net/core/flow_dissector.c @@ -139,7 +139,8 @@ ipv6: break; } case IPPROTO_IPIP: - goto again; + proto = htons(ETH_P_IP); + goto ip; default: break; }