DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 00/15] DPAA and DPAA2 driver changes
@ 2022-09-28  5:25 Gagandeep Singh
  2022-09-28  5:25 ` [PATCH 01/15] bus/dpaa: use non-block mode for FD open Gagandeep Singh
                   ` (17 more replies)
  0 siblings, 18 replies; 52+ messages in thread
From: Gagandeep Singh @ 2022-09-28  5:25 UTC (permalink / raw)
  To: ferruh.yigit, dev; +Cc: Gagandeep Singh

This series have list of patch for bug fixes and
some enhancements to DPAA1 and DPAA2 net drivers.

Apeksha Gupta (2):
  net/enetfec: fix restart issue
  net/enetfec: fix buffer leak issue

Gagandeep Singh (7):
  net/dpaa: support ESP packet type in packet parsing
  net/dpaa2: use internal mempool for SG table
  net/dpaa2: fix buffer free on transmit SG packets
  net/dpaa: use internal mempool for SG table
  bus/dpaa: mempool ops registration change
  net/dpaa: fix buffer free on transmit SG packets
  net/dpaa: fix buffer free in slow path

Rohit Raj (3):
  bus/fslmc: add timeout in MC send command API
  net/dpaa: fix Jumbo packet Rx in case of VSP
  bus/dpaa: pass interface name as a string instead of pointer

Vanshika Shukla (2):
  bus/dpaa: use non-block mode for FD open
  net/dpaa2: fix dpdmux configuration for error behaviour

brick (1):
  net/dpaa2: check free enqueue descriptors before Tx

 drivers/bus/dpaa/base/qbman/process.c     |   8 +-
 drivers/bus/dpaa/base/qbman/qman_driver.c |   6 +-
 drivers/bus/dpaa/dpaa_bus.c               |  10 +-
 drivers/bus/fslmc/mc/mc_sys.c             |  18 ++-
 drivers/event/dpaa2/dpaa2_eventdev.c      |   8 +-
 drivers/net/dpaa/dpaa_ethdev.c            |  20 ++-
 drivers/net/dpaa/dpaa_ethdev.h            |  19 +++
 drivers/net/dpaa/dpaa_flow.c              |  13 +-
 drivers/net/dpaa/dpaa_flow.h              |   5 +-
 drivers/net/dpaa/dpaa_rxtx.c              |  97 +++++++-----
 drivers/net/dpaa/dpaa_rxtx.h              |   6 +
 drivers/net/dpaa2/dpaa2_ethdev.c          |  14 ++
 drivers/net/dpaa2/dpaa2_ethdev.h          |  21 +++
 drivers/net/dpaa2/dpaa2_mux.c             |   2 +-
 drivers/net/dpaa2/dpaa2_rxtx.c            | 174 +++++++++++++++-------
 drivers/net/enetfec/enet_ethdev.c         |   4 +
 drivers/net/enetfec/enet_rxtx.c           |  29 ++--
 17 files changed, 315 insertions(+), 139 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2022-10-07 15:22 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-28  5:25 [PATCH 00/15] DPAA and DPAA2 driver changes Gagandeep Singh
2022-09-28  5:25 ` [PATCH 01/15] bus/dpaa: use non-block mode for FD open Gagandeep Singh
2022-09-28  5:25 ` [PATCH 02/15] net/enetfec: fix restart issue Gagandeep Singh
2022-09-28  5:25 ` [PATCH 03/15] net/enetfec: fix buffer leak issue Gagandeep Singh
2022-09-28  5:25 ` [PATCH 04/15] net/dpaa2: fix dpdmux configuration for error behaviour Gagandeep Singh
2022-09-28  5:25 ` [PATCH 05/15] net/dpaa2: check free enqueue descriptors before Tx Gagandeep Singh
2022-10-05 14:30   ` Ferruh Yigit
2022-09-28  5:25 ` [PATCH 06/15] net/dpaa: support ESP packet type in packet parsing Gagandeep Singh
2022-10-05 14:20   ` Ferruh Yigit
2022-10-06  8:48     ` Gagandeep Singh
2022-09-28  5:25 ` [PATCH 07/15] net/dpaa2: use internal mempool for SG table Gagandeep Singh
2022-10-05 14:20   ` Ferruh Yigit
2022-10-06  8:49     ` Gagandeep Singh
2022-10-06  9:38       ` Ferruh Yigit
2022-10-06 11:18         ` Gagandeep Singh
2022-09-28  5:25 ` [PATCH 08/15] net/dpaa2: fix buffer free on transmit SG packets Gagandeep Singh
2022-10-06  7:48   ` Ferruh Yigit
2022-09-28  5:25 ` [PATCH 09/15] bus/fslmc: add timeout in MC send command API Gagandeep Singh
2022-09-28  5:25 ` [PATCH 10/15] net/dpaa: fix Jumbo packet Rx in case of VSP Gagandeep Singh
2022-09-28  5:25 ` [PATCH 11/15] bus/dpaa: pass interface name as a string instead of pointer Gagandeep Singh
2022-10-05 14:21   ` Ferruh Yigit
2022-10-06  8:51     ` Gagandeep Singh
2022-10-06  9:39       ` Ferruh Yigit
2022-10-06 11:18         ` Gagandeep Singh
2022-09-28  5:25 ` [PATCH 12/15] net/dpaa: use internal mempool for SG table Gagandeep Singh
2022-09-28  5:25 ` [PATCH 13/15] bus/dpaa: mempool ops registration change Gagandeep Singh
2022-09-28  5:25 ` [PATCH 14/15] net/dpaa: fix buffer free on transmit SG packets Gagandeep Singh
2022-09-28  5:25 ` [PATCH 15/15] net/dpaa: fix buffer free in slow path Gagandeep Singh
2022-10-05 14:21   ` Ferruh Yigit
2022-10-06  8:51     ` Gagandeep Singh
2022-10-06  9:42       ` Ferruh Yigit
2022-10-06 11:19         ` Gagandeep Singh
2022-10-05 14:27 ` [PATCH 00/15] DPAA and DPAA2 driver changes Ferruh Yigit
2022-10-06 11:15 ` Hemant Agrawal
2022-10-07  3:27 ` [PATCH v2 00/16] " Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 01/16] bus/dpaa: use non-block mode for FD open Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 02/16] net/enetfec: fix restart issue Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 03/16] net/enetfec: fix buffer leak issue Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 04/16] net/dpaa2: fix dpdmux configuration for error behaviour Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 05/16] net/dpaa2: check free enqueue descriptors before Tx Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 06/16] net/dpaa: support ESP packet type in packet parsing Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 07/16] net/dpaa2: use internal mempool for SG table Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 08/16] net/dpaa2: fix buffer free on transmit SG packets Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 09/16] bus/fslmc: add timeout in MC send command API Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 10/16] net/dpaa: fix Jumbo packet Rx in case of VSP Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 11/16] doc: add kernel version compatible information Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 12/16] bus/dpaa: pass interface name as a string instead of pointer Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 13/16] net/dpaa: use internal mempool for SG table Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 14/16] bus/dpaa: mempool ops registration change Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 15/16] net/dpaa: fix buffer free on transmit SG packets Gagandeep Singh
2022-10-07  3:27   ` [PATCH v2 16/16] net/dpaa: fix buffer free in slow path Gagandeep Singh
2022-10-07 15:22   ` [PATCH v2 00/16] DPAA and DPAA2 driver changes Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).