Re: [dpdk-dev] [PATCH v5 8/9] net/virtio: add in-order Rx/Tx into selection

2018-07-02 Thread Liu, Yong
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Monday, July 02, 2018 11:18 PM > To: Liu, Yong ; Bie, Tiwei ; > Yigit, Ferruh > Cc: Wang, Zhihong ; dev@dpdk.org > Subject: Re: [PATCH v5 8/9] net/virtio: add in-order Rx/Tx into selection > > > >

Re: [dpdk-dev] [PATCH v5 8/9] net/virtio: add in-order Rx/Tx into selection

2018-07-02 Thread Maxime Coquelin
On 07/02/2018 02:41 PM, Maxime Coquelin wrote: On 07/02/2018 01:24 PM, Maxime Coquelin wrote: On 07/02/2018 03:56 PM, Marvin Liu wrote: After IN_ORDER Rx/Tx paths added, need to update Rx/Tx path selection logic. Rx path select logic: If IN_ORDER and merge-able are enabled will select I

Re: [dpdk-dev] [PATCH v5 8/9] net/virtio: add in-order Rx/Tx into selection

2018-07-02 Thread Maxime Coquelin
On 07/02/2018 01:24 PM, Maxime Coquelin wrote: On 07/02/2018 03:56 PM, Marvin Liu wrote: After IN_ORDER Rx/Tx paths added, need to update Rx/Tx path selection logic. Rx path select logic: If IN_ORDER and merge-able are enabled will select IN_ORDER Rx path. If IN_ORDER is enabled, Rx offloa

Re: [dpdk-dev] [PATCH v5 8/9] net/virtio: add in-order Rx/Tx into selection

2018-07-02 Thread Maxime Coquelin
On 07/02/2018 03:56 PM, Marvin Liu wrote: After IN_ORDER Rx/Tx paths added, need to update Rx/Tx path selection logic. Rx path select logic: If IN_ORDER and merge-able are enabled will select IN_ORDER Rx path. If IN_ORDER is enabled, Rx offload and merge-able are disabled will select simple R

[dpdk-dev] [PATCH v5 8/9] net/virtio: add in-order Rx/Tx into selection

2018-07-01 Thread Marvin Liu
After IN_ORDER Rx/Tx paths added, need to update Rx/Tx path selection logic. Rx path select logic: If IN_ORDER and merge-able are enabled will select IN_ORDER Rx path. If IN_ORDER is enabled, Rx offload and merge-able are disabled will select simple Rx path. Otherwise will select normal Rx path.