Re: [dpdk-dev] [PATCH v2] net/mlx5: fix hashed list size for tunnel flow groups

2021-02-24 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Wednesday, February 24, 2021 10:15 AM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Matan Azrad > ; sta...@dpdk.org > Subject: [PATCH v2] net/mlx5: fix hashed list size for tunnel flow groups > > The hashed list size must be the

[dpdk-dev] [PATCH v2] net/mlx5: fix hashed list size for tunnel flow groups

2021-02-24 Thread Viacheslav Ovsiienko
The hashed list size must be the power of 2, otherwise the adjustment is applied and the warning message is emitted. This patch provides the correct list size to eliminate the warning. Fixes: 4ec6360de37d ("net/mlx5: implement tunnel offload") Cc: sta...@dpdk.org Signed-off-by: Viacheslav Ovsiien