net/e1000: fix zeroing of RSS config
The type of rss_conf is struct igb_rte_flow_rss_conf *, not struct rte_eth_rss_conf *. Fixes: 424ae915baf0 ("net/e1000: move RSS to flow API") Cc: stable@dpdk.org Signed-off-by: Congwen Zhang <zhang.congwen@zte.com.cn> Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>
This commit is contained in:
parent
40e01fd8c8
commit
0e4949639b
@ -1381,7 +1381,7 @@ igb_parse_rss_filter(struct rte_eth_dev *dev,
|
|||||||
index++;
|
index++;
|
||||||
NEXT_ITEM_OF_ACTION(act, actions, index);
|
NEXT_ITEM_OF_ACTION(act, actions, index);
|
||||||
if (act->type != RTE_FLOW_ACTION_TYPE_END) {
|
if (act->type != RTE_FLOW_ACTION_TYPE_END) {
|
||||||
memset(rss_conf, 0, sizeof(struct rte_eth_rss_conf));
|
memset(rss_conf, 0, sizeof(struct igb_rte_flow_rss_conf));
|
||||||
rte_flow_error_set(error, EINVAL,
|
rte_flow_error_set(error, EINVAL,
|
||||||
RTE_FLOW_ERROR_TYPE_ACTION,
|
RTE_FLOW_ERROR_TYPE_ACTION,
|
||||||
act, "Not supported action.");
|
act, "Not supported action.");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user