mbox series

[v2,0/3] fix Rx and Tx queue status get

Message ID 20230712083153.3250798-1-qiming.yang@intel.com (mailing list archive)
Headers
Series fix Rx and Tx queue status get |

Message

Qiming Yang July 12, 2023, 8:31 a.m. UTC
  Some Intel drivers not support queue start/stop ops, it will caused
application can't get correct queue status and can't forward packets.
This patchset fixed the issue by updating the queue states when the
queue is disabled or enabled.
This issue related commit 141a520b35f7
app/testpmd: fix primary process not polling all queues

---
v2 changes: add CC stable@dpdk.org

Qiming Yang (3):
  net/ixgbevf: fix Rx and Tx queue status get
  net/igc: fix Rx and Tx queue status get
  net/e1000: fix Rx and Tx queue status

 drivers/net/e1000/igb_rxtx.c   | 4 ++++
 drivers/net/igc/igc_txrx.c     | 4 ++++
 drivers/net/ixgbe/ixgbe_rxtx.c | 6 ++++++
 3 files changed, 14 insertions(+)
  

Comments

Qi Zhang July 14, 2023, 3:08 a.m. UTC | #1
> -----Original Message-----
> From: Yang, Qiming <qiming.yang@intel.com>
> Sent: Wednesday, July 12, 2023 4:32 PM
> To: dev@dpdk.org
> Cc: Xing, Beilei <beilei.xing@intel.com>; Zhang, Qi Z <qi.z.zhang@intel.com>;
> Yang, Qiming <qiming.yang@intel.com>
> Subject: [PATCH v2 0/3] fix Rx and Tx queue status get
> 
> Some Intel drivers not support queue start/stop ops, it will caused
> application can't get correct queue status and can't forward packets.
> This patchset fixed the issue by updating the queue states when the queue
> is disabled or enabled.
> This issue related commit 141a520b35f7
> app/testpmd: fix primary process not polling all queues
> 
> ---
> v2 changes: add CC stable@dpdk.org
> 
> Qiming Yang (3):
>   net/ixgbevf: fix Rx and Tx queue status get
>   net/igc: fix Rx and Tx queue status get
>   net/e1000: fix Rx and Tx queue status
> 
>  drivers/net/e1000/igb_rxtx.c   | 4 ++++
>  drivers/net/igc/igc_txrx.c     | 4 ++++
>  drivers/net/ixgbe/ixgbe_rxtx.c | 6 ++++++
>  3 files changed, 14 insertions(+)
> 
> --
> 2.25.1

Acked-by: Qi Zhang <qi.z.zhang@intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi