Re: [PATCH v2 13/18] net/ixgbe: parse TCP SYN filter
From: Ferruh Yigit <hidden>
Date: 2017-01-06 17:19:45
From: Ferruh Yigit <hidden>
Date: 2017-01-06 17:19:45
On 12/30/2016 7:53 AM, Wei Zhao wrote:
check if the rule is a TCP SYN rule, and get the SYN info. Signed-off-by: Wei Zhao <redacted> Signed-off-by: Wenzhuo Lu <redacted> --- v2:add new error set function ---
<...>
+static int
+ixgbe_parse_syn_filter(const struct rte_flow_attr *attr,
+ const struct rte_flow_item pattern[],
+ const struct rte_flow_action actions[],
+ struct rte_eth_syn_filter *filter,
+ struct rte_flow_error *error)
+{
+ int ret;
+
+ ret = cons_parse_syn_filter(attr, pattern,
+ actions, filter, error);
++ if (ret) + return ret; + + return 0;
"return ret;" will do the same. Or remove ret completely perhaps.
+} +
<...>