mbox series

[v2,0/2] fix testpmd quit error after FDIR rule created

Message ID 20191118222343.45282-1-yahui.cao@intel.com (mailing list archive)
Headers
Series fix testpmd quit error after FDIR rule created |

Message

Cao, Yahui Nov. 18, 2019, 10:23 p.m. UTC
  This patch series fixes FDIR error when immediately quit without
flushing FDIR rule in testpmd.

- Patch 1 adds programming status check mechanism to monitor FDIR status.
- Patch 2 moves FDIR queue irq config out of device start/stop.

--
v2:
* Seperate FDIR/LAN queue irq config

Yahui Cao (2):
  net/ice: fix FDIR programming status check issue
  net/ice: fix FDIR rule failure after device stop

 drivers/net/ice/ice_ethdev.c      | 15 +----
 drivers/net/ice/ice_ethdev.h      |  3 +
 drivers/net/ice/ice_fdir_filter.c |  7 +++
 drivers/net/ice/ice_rxtx.c        | 93 +++++++++++++++++++++++++++++--
 4 files changed, 100 insertions(+), 18 deletions(-)
  

Comments

Qi Zhang Nov. 19, 2019, 1:14 a.m. UTC | #1
> -----Original Message-----
> From: Cao, Yahui <yahui.cao@intel.com>
> Sent: Tuesday, November 19, 2019 6:24 AM
> To: Yang, Qiming <qiming.yang@intel.com>; Lu, Wenzhuo
> <wenzhuo.lu@intel.com>
> Cc: dev@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com>; Cao, Yahui
> <yahui.cao@intel.com>; Ye, Xiaolong <xiaolong.ye@intel.com>; Xing, Beilei
> <beilei.xing@intel.com>
> Subject: [PATCH v2 0/2] fix testpmd quit error after FDIR rule created
> 
> This patch series fixes FDIR error when immediately quit without flushing FDIR
> rule in testpmd.
> 
> - Patch 1 adds programming status check mechanism to monitor FDIR status.
> - Patch 2 moves FDIR queue irq config out of device start/stop.
> 
> --
> v2:
> * Seperate FDIR/LAN queue irq config
> 
> Yahui Cao (2):
>   net/ice: fix FDIR programming status check issue
>   net/ice: fix FDIR rule failure after device stop
> 
>  drivers/net/ice/ice_ethdev.c      | 15 +----
>  drivers/net/ice/ice_ethdev.h      |  3 +
>  drivers/net/ice/ice_fdir_filter.c |  7 +++
>  drivers/net/ice/ice_rxtx.c        | 93 +++++++++++++++++++++++++++++--
>  4 files changed, 100 insertions(+), 18 deletions(-)
> 
> --
> 2.17.1

Tested-by: Qi Zhang <qi.z.zhang@intel.com>
Acked-by: Qi Zhang <qi.z.z.hang@intel.com>
  
Xiaolong Ye Nov. 19, 2019, 5:11 a.m. UTC | #2
On 11/19, Yahui Cao wrote:
>This patch series fixes FDIR error when immediately quit without
>flushing FDIR rule in testpmd.
>
>- Patch 1 adds programming status check mechanism to monitor FDIR status.
>- Patch 2 moves FDIR queue irq config out of device start/stop.
>
>--
>v2:
>* Seperate FDIR/LAN queue irq config
>
>Yahui Cao (2):
>  net/ice: fix FDIR programming status check issue
>  net/ice: fix FDIR rule failure after device stop
>
> drivers/net/ice/ice_ethdev.c      | 15 +----
> drivers/net/ice/ice_ethdev.h      |  3 +
> drivers/net/ice/ice_fdir_filter.c |  7 +++
> drivers/net/ice/ice_rxtx.c        | 93 +++++++++++++++++++++++++++++--
> 4 files changed, 100 insertions(+), 18 deletions(-)
>
>-- 
>2.17.1
>

Applied to dpdk-next-net-intel, Thanks.