Re: [PATCH] net/ice: fix dcf init rss blocked

2023-05-08 Thread Tyler Retzlaff
On Sat, May 06, 2023 at 02:48:22PM +0800, Kaiwen Deng wrote: > The i variable type is uint8_t which causes a dead loop, > changing it to uint32_t will solve this issue. > > Fixes: 3220d865382c ("net/ice: init RSS during DCF start") > Cc: sta...@dpdk.org > > Signed-off-by: Kaiwen Deng > --- > dr

[PATCH] net/ice: fix dcf init rss blocked

2023-05-06 Thread Kaiwen Deng
The i variable type is uint8_t which causes a dead loop, changing it to uint32_t will solve this issue. Fixes: 3220d865382c ("net/ice: init RSS during DCF start") Cc: sta...@dpdk.org Signed-off-by: Kaiwen Deng --- drivers/net/ice/ice_dcf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)