Re: [dpdk-dev] [PATCH v3 18/19] net/hinic: optimize RX performance

2019-10-08 Thread Wangxiaoyun (Cloud, Network Chip Application Development Dept)
Hi Ferruh, Thanks for your comments. I think you're right, i will modify it with Patch V4. Also I change it with the same structure for X86-64 and ARM platform with cache-aligned, and test the RX performance, all is OK. Best Regards Xiaoyun Wang 在 2019/9/30 23:10, Ferruh Yigit 写道: On 9/3

Re: [dpdk-dev] [PATCH v3 18/19] net/hinic: optimize RX performance

2019-09-30 Thread Ferruh Yigit
On 9/30/2019 3:00 PM, Xiaoyun wang wrote: > This patch optimizes receive packets performance > on arm platform. > > Signed-off-by: Xiaoyun wang <...> > @@ -28,6 +28,7 @@ struct hinic_rq_ctrl { > u32 ctrl_fmt; > }; > > +#if defined(__X86_64_SSE__) > struct hinic_rq_cqe { > u3

[dpdk-dev] [PATCH v3 18/19] net/hinic: optimize RX performance

2019-09-30 Thread Xiaoyun wang
This patch optimizes receive packets performance on arm platform. Signed-off-by: Xiaoyun wang --- drivers/net/hinic/hinic_pmd_rx.c | 5 + drivers/net/hinic/hinic_pmd_rx.h | 11 +++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/drivers/net/hinic/hinic_pmd_rx.c b/dri