Message ID | 20240710085534.2564668-1-vanshika.shukla@nxp.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7EBC2455D0; Wed, 10 Jul 2024 10:55:38 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4C32A40647; Wed, 10 Jul 2024 10:55:38 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by mails.dpdk.org (Postfix) with ESMTP id C97654029C for <dev@dpdk.org>; Wed, 10 Jul 2024 10:55:36 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 9B56E2005CE for <dev@dpdk.org>; Wed, 10 Jul 2024 10:55:36 +0200 (CEST) Received: from aprdc01srsp001v.ap-rdc01.nxp.com (aprdc01srsp001v.ap-rdc01.nxp.com [165.114.16.16]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 63974200128 for <dev@dpdk.org>; Wed, 10 Jul 2024 10:55:36 +0200 (CEST) Received: from lsv03379.swis.in-blr01.nxp.com (lsv03379.swis.in-blr01.nxp.com [92.120.147.188]) by aprdc01srsp001v.ap-rdc01.nxp.com (Postfix) with ESMTP id 9B3571820F77 for <dev@dpdk.org>; Wed, 10 Jul 2024 16:55:35 +0800 (+08) From: vanshika.shukla@nxp.com To: dev@dpdk.org Subject: [v5 0/8] DPAA specific fixes Date: Wed, 10 Jul 2024 14:25:26 +0530 Message-Id: <20240710085534.2564668-1-vanshika.shukla@nxp.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240709100505.2476972-1-vanshika.shukla@nxp.com> References: <20240709100505.2476972-1-vanshika.shukla@nxp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org |
Series |
DPAA specific fixes
|
|
Message
vanshika.shukla@nxp.com
July 10, 2024, 8:55 a.m. UTC
From: Vanshika Shukla <vanshika.shukla@nxp.com>
This series includes fixes for NXP DPAA drivers.
V5 changes:
Added CID for "remove redundant file descriptor check" patch.
Note: Other patches are bug fixes reported by our internal coverity tool.
V4 changes:
Removed \n from debug prints in "cache free optimization" patch.
Added fixline for "restrict MTU config for shared intf" patch.
Added CID for "fix resource leak in variable dev" patch.
V3 changes:
Fixed compilation issue for "restrict MTU config for shared intf" patch.
Added back "mempool/dpaax: cache free optimization" patch.
V2 changes:
Removed "mempool/dpaax: cache free optimization" patch.
Apeksha Gupta (2):
bus/dpaa: fix resource leak in variable dev
common/dpaax: fix array overrun issue
Gagandeep Singh (3):
bus/dpaa: fix bus scan for DMA devices
common/dpaax: fix IOVA table cleanup
bus/dpaa: remove unused code
Rohit Raj (2):
bus/dpaa: remove redundant file descriptor check
net/dpaa: restrict MTU config for shared intf
Sachin Saxena (1):
mempool/dpaax: cache free optimization
drivers/bus/dpaa/base/qbman/process.c | 7 ++---
drivers/bus/dpaa/base/qbman/qman.c | 31 ----------------------
drivers/bus/dpaa/dpaa_bus.c | 5 +++-
drivers/bus/dpaa/include/fsl_qman.h | 31 ----------------------
drivers/bus/dpaa/version.map | 1 -
drivers/common/dpaax/dpaax_iova_table.c | 13 +++++-----
drivers/mempool/dpaa/dpaa_mempool.c | 16 +++++++++++-
drivers/mempool/dpaa2/dpaa2_hw_mempool.c | 15 +++++++++++
drivers/net/dpaa/dpaa_ethdev.c | 33 ++++++++++++++++++++++--
9 files changed, 75 insertions(+), 77 deletions(-)
Comments
On Wed, Jul 10, 2024 at 10:55 AM <vanshika.shukla@nxp.com> wrote: > > From: Vanshika Shukla <vanshika.shukla@nxp.com> > > This series includes fixes for NXP DPAA drivers. > > V5 changes: > Added CID for "remove redundant file descriptor check" patch. > Note: Other patches are bug fixes reported by our internal coverity tool. > > V4 changes: > Removed \n from debug prints in "cache free optimization" patch. > Added fixline for "restrict MTU config for shared intf" patch. > Added CID for "fix resource leak in variable dev" patch. > > V3 changes: > Fixed compilation issue for "restrict MTU config for shared intf" patch. > Added back "mempool/dpaax: cache free optimization" patch. > > V2 changes: > Removed "mempool/dpaax: cache free optimization" patch. > > Apeksha Gupta (2): > bus/dpaa: fix resource leak in variable dev > common/dpaax: fix array overrun issue > > Gagandeep Singh (3): > bus/dpaa: fix bus scan for DMA devices > common/dpaax: fix IOVA table cleanup > bus/dpaa: remove unused code > > Rohit Raj (2): > bus/dpaa: remove redundant file descriptor check > net/dpaa: restrict MTU config for shared intf > > Sachin Saxena (1): > mempool/dpaax: cache free optimization > > drivers/bus/dpaa/base/qbman/process.c | 7 ++--- > drivers/bus/dpaa/base/qbman/qman.c | 31 ---------------------- > drivers/bus/dpaa/dpaa_bus.c | 5 +++- > drivers/bus/dpaa/include/fsl_qman.h | 31 ---------------------- > drivers/bus/dpaa/version.map | 1 - > drivers/common/dpaax/dpaax_iova_table.c | 13 +++++----- > drivers/mempool/dpaa/dpaa_mempool.c | 16 +++++++++++- > drivers/mempool/dpaa2/dpaa2_hw_mempool.c | 15 +++++++++++ > drivers/net/dpaa/dpaa_ethdev.c | 33 ++++++++++++++++++++++-- > 9 files changed, 75 insertions(+), 77 deletions(-) Series applied, thanks.