mbox series

[v3,0/4] aarch32 compilation

Message ID 20200624071016.210656-1-ruifeng.wang@arm.com (mailing list archive)
Headers
Series aarch32 compilation |

Message

Ruifeng Wang June 24, 2020, 7:10 a.m. UTC
  Build aarch32 binary on aarch64 platform hit issues with l3fwd [1]
and ixgbe PMD [2]. This patch set is to fix these.

When building with make, please refer to guide:
http://patches.dpdk.org/patch/62820/

When building with meson, requires series:
http://patches.dpdk.org/cover/69536/

[1] https://mails.dpdk.org/archives/dev/2020-April/162673.html
[2] https://mails.dpdk.org/archives/dev/2020-April/163846.html


v3:
Remove ixgbe/i40e from armv7 config to set these PMDs enabled.
v2:
Fix aarch32 Make build for ixgbe, and enable ixgbe PMD by default.
Add aarch32 support for i40e, and enable i40e PMD by default.

Ruifeng Wang (4):
  arch/arm: add vcopyq intrinsic for aarch32
  net/ixgbe: add support for aarch32
  net/ixgbe: fix include of vector header file
  net/i40e: add support for aarch32

 config/defconfig_arm-armv7a-linuxapp-gcc | 2 --
 drivers/net/i40e/Makefile                | 2 +-
 drivers/net/i40e/i40e_rxtx_vec_neon.c    | 2 +-
 drivers/net/ixgbe/Makefile               | 2 +-
 drivers/net/ixgbe/ixgbe_rxtx.h           | 4 ++--
 drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c  | 3 +--
 lib/librte_eal/arm/include/rte_vect.h    | 6 +++++-
 7 files changed, 11 insertions(+), 10 deletions(-)
  

Comments

Ferruh Yigit June 26, 2020, 1:44 p.m. UTC | #1
On 6/24/2020 8:10 AM, Ruifeng Wang wrote:
> Build aarch32 binary on aarch64 platform hit issues with l3fwd [1]
> and ixgbe PMD [2]. This patch set is to fix these.
> 
> When building with make, please refer to guide:
> http://patches.dpdk.org/patch/62820/
> 
> When building with meson, requires series:
> http://patches.dpdk.org/cover/69536/
> 
> [1] https://mails.dpdk.org/archives/dev/2020-April/162673.html
> [2] https://mails.dpdk.org/archives/dev/2020-April/163846.html
> 
> 
> v3:
> Remove ixgbe/i40e from armv7 config to set these PMDs enabled.
> v2:
> Fix aarch32 Make build for ixgbe, and enable ixgbe PMD by default.
> Add aarch32 support for i40e, and enable i40e PMD by default.
> 
> Ruifeng Wang (4):
>   arch/arm: add vcopyq intrinsic for aarch32
>   net/ixgbe: add support for aarch32
>   net/ixgbe: fix include of vector header file
>   net/i40e: add support for aarch32

For series,
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied to dpdk-next-net/master, thanks.