Re: [dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-31 Thread Ferruh Yigit
On 3/31/2021 1:55 AM, Min Hu (Connor) wrote: 在 2021/3/30 0:10, Ferruh Yigit 写道: On 3/23/2021 1:45 PM, Min Hu (Connor) wrote: From: Huisong Li The 'queue_full_cnt' stats have been encapsulated in 'dfx_stats'. However, the modification in the SVE algorithm is omitted. As a result, the driver

Re: [dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-30 Thread Min Hu (Connor)
在 2021/3/30 0:10, Ferruh Yigit 写道: On 3/23/2021 1:45 PM, Min Hu (Connor) wrote: From: Huisong Li The 'queue_full_cnt' stats have been encapsulated in 'dfx_stats'. However, the modification in the SVE algorithm is omitted. As a result, the driver fails to be compiled when the SVE algorithm i

Re: [dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-29 Thread Honnappa Nagarahalli
> Subject: Re: [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm > > On Mon, Mar 29, 2021 at 8:32 PM Aaron Conole > wrote: > > Ferruh Yigit writes: > > > This is a very obvious build error, I am concerned how this is > > > released. Do you have any internal testing? > > > > > >

Re: [dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-29 Thread David Marchand
On Mon, Mar 29, 2021 at 8:32 PM Aaron Conole wrote: > Ferruh Yigit writes: > > This is a very obvious build error, I am concerned how this is > > released. Do you have any internal testing? > > > > + Aaron & Honnappa, > > > > If we can have a build test in our public CI with SVE? > > Maybe it's p

Re: [dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-29 Thread Aaron Conole
Ferruh Yigit writes: > On 3/23/2021 1:45 PM, Min Hu (Connor) wrote: >> From: Huisong Li >> >> The 'queue_full_cnt' stats have been encapsulated in 'dfx_stats'. >> However, the modification in the SVE algorithm is omitted. >> As a result, the driver fails to be compiled when the SVE >> algorithm

Re: [dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-29 Thread Ferruh Yigit
On 3/23/2021 1:45 PM, Min Hu (Connor) wrote: From: Huisong Li The 'queue_full_cnt' stats have been encapsulated in 'dfx_stats'. However, the modification in the SVE algorithm is omitted. As a result, the driver fails to be compiled when the SVE algorithm is used. Fixes: 9b77f1fe303f ("net/hns3

[dpdk-dev] [PATCH 2/6] net/hns3: fix compiling error for using SVE algorithm

2021-03-23 Thread Min Hu (Connor)
From: Huisong Li The 'queue_full_cnt' stats have been encapsulated in 'dfx_stats'. However, the modification in the SVE algorithm is omitted. As a result, the driver fails to be compiled when the SVE algorithm is used. Fixes: 9b77f1fe303f ("net/hns3: encapsulate DFX stats in datapath") Signed-o