Re: [dpdk-dev] [PATCH] net/virtio: fix Rx and Tx handler selection for arm32

2018-01-26 Thread Yuanhan Liu
On Thu, Dec 14, 2017 at 03:45:04PM +0100, Maxime Coquelin wrote: > Hi Olivier, > > On 12/14/2017 03:32 PM, Olivier Matz wrote: > >From: Samuel Gauthier > > > >On arm32, we were always selecting the simple handler, but it is only > >available if neon is present. > > > >This is due to a typo in the

Re: [dpdk-dev] [PATCH] net/virtio: fix Rx and Tx handler selection for arm32

2017-12-19 Thread Tiwei Bie
Hi Olivier, On Tue, Dec 19, 2017 at 11:50:31AM +0100, Olivier MATZ wrote: > On Mon, Dec 18, 2017 at 10:50:47AM +0800, Tiwei Bie wrote: > > On Thu, Dec 14, 2017 at 03:32:13PM +0100, Olivier Matz wrote: > > > From: Samuel Gauthier > > > > > > On arm32, we were always selecting the simple handler,

Re: [dpdk-dev] [PATCH] net/virtio: fix Rx and Tx handler selection for arm32

2017-12-19 Thread Olivier MATZ
Hi Tiwei, On Mon, Dec 18, 2017 at 10:50:47AM +0800, Tiwei Bie wrote: > On Thu, Dec 14, 2017 at 03:32:13PM +0100, Olivier Matz wrote: > > From: Samuel Gauthier > > > > On arm32, we were always selecting the simple handler, but it is only > > available if neon is present. > > > > This is due to a

Re: [dpdk-dev] [PATCH] net/virtio: fix Rx and Tx handler selection for arm32

2017-12-17 Thread Tiwei Bie
On Thu, Dec 14, 2017 at 03:32:13PM +0100, Olivier Matz wrote: > From: Samuel Gauthier > > On arm32, we were always selecting the simple handler, but it is only > available if neon is present. > > This is due to a typo in the name of the config option. > CONFIG_RTE_ARCH_ARM is for Makefiles. One

Re: [dpdk-dev] [PATCH] net/virtio: fix Rx and Tx handler selection for arm32

2017-12-14 Thread Maxime Coquelin
Hi Olivier, On 12/14/2017 03:32 PM, Olivier Matz wrote: From: Samuel Gauthier On arm32, we were always selecting the simple handler, but it is only available if neon is present. This is due to a typo in the name of the config option. CONFIG_RTE_ARCH_ARM is for Makefiles. One should use RTE_ARC

[dpdk-dev] [PATCH] net/virtio: fix Rx and Tx handler selection for arm32

2017-12-14 Thread Olivier Matz
From: Samuel Gauthier On arm32, we were always selecting the simple handler, but it is only available if neon is present. This is due to a typo in the name of the config option. CONFIG_RTE_ARCH_ARM is for Makefiles. One should use RTE_ARCH_ARM. Fixes: 2d7c37194ee4 ("net/virtio: add NEON based R