From 40e01fd8c84c1ec71d41dc4fff23350428f4e48a Mon Sep 17 00:00:00 2001 From: Congwen Zhang Date: Thu, 8 Aug 2019 09:42:07 +0800 Subject: [PATCH] net/ixgbe: fix zeroing of RSS config Correct the rss_conf type in sizeof. Fixes: 518cc3927b13 ("net/ixgbe: move RSS to flow API") Cc: stable@dpdk.org Signed-off-by: Congwen Zhang Reviewed-by: Xiaolong Ye --- drivers/net/ixgbe/ixgbe_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/ixgbe_flow.c b/drivers/net/ixgbe/ixgbe_flow.c index 92377b81cb..b2a2bfc02f 100644 --- a/drivers/net/ixgbe/ixgbe_flow.c +++ b/drivers/net/ixgbe/ixgbe_flow.c @@ -2874,7 +2874,7 @@ ixgbe_parse_rss_filter(struct rte_eth_dev *dev, /* check if the next not void item is END */ act = next_no_void_action(actions, act); if (act->type != RTE_FLOW_ACTION_TYPE_END) { - memset(rss_conf, 0, sizeof(struct rte_eth_rss_conf)); + memset(rss_conf, 0, sizeof(struct ixgbe_rte_flow_rss_conf)); rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION, act, "Not supported action."); -- 2.20.1