[dpdk-dev] [PATCH 2/2] net/ice: fix generic build on FreeBSD

2021-09-29 Thread Leyi Rong
The common header file for vectorization is included in multiple files, and so must use macros for the current compilation unit, rather than the compiler-capability flag set for the whole driver. With the current, incorrect, macro, the AVX512 or AVX2 flags may be set when compiling up SSE code, lea

Re: [dpdk-dev] [PATCH 2/2] net/ice: fix generic build on FreeBSD

2021-08-31 Thread Zhang, Qi Z
> -Original Message- > From: Rong, Leyi > Sent: Monday, August 30, 2021 4:18 PM > To: Richardson, Bruce ; dev@dpdk.org > Cc: brian90...@gmail.com; Lu, Wenzhuo ; > sta...@dpdk.org; Yang, Qiming ; Zhang, Qi Z > > Subject: RE: [PATCH 2/2] net/ice: fix generic build on FreeBSD > > > > --

Re: [dpdk-dev] [PATCH 2/2] net/ice: fix generic build on FreeBSD

2021-08-30 Thread Rong, Leyi
> -Original Message- > From: Richardson, Bruce > Sent: Thursday, August 19, 2021 12:38 AM > To: dev@dpdk.org > Cc: brian90...@gmail.com; Richardson, Bruce ; > Lu, Wenzhuo ; Rong, Leyi ; > sta...@dpdk.org; Yang, Qiming ; Zhang, Qi Z > > Subject: [PATCH 2/2] net/ice: fix generic build on

[dpdk-dev] [PATCH 2/2] net/ice: fix generic build on FreeBSD

2021-08-18 Thread Bruce Richardson
The common header file for vectorization is included in multiple files, and so must use macros for the current compilation unit, rather than the compiler-capability flag set for the whole driver. With the current, incorrect, macro, the AVX512 or AVX2 flags may be set when compiling up SSE code, lea