DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/i40e: fix bug in RSS flow action parser
@ 2018-01-25  5:10 Qi Zhang
  2018-01-25  5:16 ` Zhao1, Wei
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Qi Zhang @ 2018-01-25  5:10 UTC (permalink / raw)
  To: beilei.xing; +Cc: dev, wei.zhao1, Qi Zhang

Parameter action_flag is not used correctly in i40e_flow_parse_rss_action.
Also change it from point type to value type since it is not an output
parameter.

Fixes: ecad87d22383e ("net/i40e: move RSS to flow API")

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/i40e/i40e_flow.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c
index a74fa08ab..74708f168 100644
--- a/drivers/net/i40e/i40e_flow.c
+++ b/drivers/net/i40e/i40e_flow.c
@@ -4188,7 +4188,7 @@ static int
 i40e_flow_parse_rss_action(struct rte_eth_dev *dev,
 			    const struct rte_flow_action *actions,
 			    struct rte_flow_error *error,
-			    uint8_t *action_flag,
+			    uint8_t action_flag,
 			    struct i40e_queue_regions *conf_info,
 			    union i40e_filter_t *filter)
 {
@@ -4378,7 +4378,7 @@ i40e_parse_rss_filter(struct rte_eth_dev *dev,
 		return ret;
 
 	ret = i40e_flow_parse_rss_action(dev, actions, error,
-					&action_flag, &info, filter);
+					action_flag, &info, filter);
 	if (ret)
 		return ret;
 
-- 
2.13.6

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-01-26  9:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-25  5:10 [dpdk-dev] [PATCH] net/i40e: fix bug in RSS flow action parser Qi Zhang
2018-01-25  5:16 ` Zhao1, Wei
2018-01-26  9:51   ` Zhang, Helin
2018-01-25  5:28 ` Yang, Zhiyong
2018-01-25  6:02 ` Yang, Zhiyong
2018-01-25  7:49   ` Zhang, Qi Z
2018-01-25  8:01     ` Yang, Zhiyong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).