On 5/23/2017 5:31 PM, Jiri Pirko wrote:
@@ -683,6 +708,12 @@ bool __skb_flow_dissect(const struct sk_buff *skb,
case IPPROTO_MPLS:
proto = htons(ETH_P_MPLS_UC);
goto mpls;
+ case IPPROTO_TCP:
+ __skb_flow_dissect_tcp(skb, flow_dissector, target_container,
+ data, nhoff, hlen);
+ /* Regardless of the return value, continue to process TCP
+ * ports dissection below.
+ */
the comment here is a bit misleading, since __skb_flow_dissect_tcp is void other-wise Acked-by: Or Gerlitz <[email protected]>
