Re: [dpdk-dev] [PATCH] app/testpmd: fix str2flowtype not used warnings

2020-11-25 Thread Thomas Monjalon
24/11/2020 14:22, Ferruh Yigit: > On 11/24/2020 11:49 AM, Viacheslav Ovsiienko wrote: > > If there was no RTE_NET_I40E configured the static routine > > str2flowtype() was not used causing compilation warning. > > > > The str2flowtype() is moved under #ifdef RTE_NET_I40E block. > > > > Fixes: 1be

Re: [dpdk-dev] [PATCH] app/testpmd: fix str2flowtype not used warnings

2020-11-24 Thread Ferruh Yigit
On 11/24/2020 11:49 AM, Viacheslav Ovsiienko wrote: If there was no RTE_NET_I40E configured the static routine str2flowtype() was not used causing compilation warning. The str2flowtype() is moved under #ifdef RTE_NET_I40E block. Fixes: 1be514fbcea9 ("ethdev: remove legacy FDIR filter type suppo

[dpdk-dev] [PATCH] app/testpmd: fix str2flowtype not used warnings

2020-11-24 Thread Viacheslav Ovsiienko
If there was no RTE_NET_I40E configured the static routine str2flowtype() was not used causing compilation warning. The str2flowtype() is moved under #ifdef RTE_NET_I40E block. Fixes: 1be514fbcea9 ("ethdev: remove legacy FDIR filter type support") Signed-off-by: Viacheslav Ovsiienko --- app/te