patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Xueming Li <xuemingl@nvidia.com>
To: "Ye, MingjinX" <mingjinx.ye@intel.com>,
	"Xu, HailinX" <hailinx.xu@intel.com>
Cc: dpdk stable <stable@dpdk.org>
Subject: Re: patch 'bus/vdev: revert fix devargs in secondary process' has been queued to stable release 23.11.2
Date: Sat, 31 Aug 2024 14:51:01 +0000	[thread overview]
Message-ID: <CH3PR12MB8658C8737685302D2F1566F6A1902@CH3PR12MB8658.namprd12.prod.outlook.com> (raw)
In-Reply-To: <LV3PR11MB86012C36C6A240B079D71A0AE5A32@LV3PR11MB8601.namprd11.prod.outlook.com>

[-- Attachment #1: Type: text/plain, Size: 4853 bytes --]

Hi Hailin,

This patch was originally queued to 23.11.2 list, but removed per Mingjin's request. If we do need the fix, let's schedule it to 23.11.3.

Regards,
Xueming
________________________________
From: Ye, MingjinX <mingjinx.ye@intel.com>
Sent: Wednesday, July 17, 2024 10:21 AM
To: Xueming Li <xuemingl@nvidia.com>
Cc: dpdk stable <stable@dpdk.org>
Subject: RE: patch 'bus/vdev: revert fix devargs in secondary process' has been queued to stable release 23.11.2

Hi,

Please not backport this revert commit. DPDK 23.11.2 does not need to do anything.

Thanks,
Mingjin

> -----Original Message-----
> From: Xueming Li <xuemingl@nvidia.com>
> Sent: Friday, July 12, 2024 7:02 PM
> To: Ye, MingjinX <mingjinx.ye@intel.com>
> Cc: dpdk stable <stable@dpdk.org>
> Subject: patch 'bus/vdev: revert fix devargs in secondary process' has been
> queued to stable release 23.11.2
>
> Hi,
>
> FYI, your patch has been queued to stable release 23.11.2
>
> Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
> It will be pushed if I get no objections before 07/14/24. So please shout if
> anyone has objections.
>
> Also note that after the patch there's a diff of the upstream commit vs the
> patch applied to the branch. This will indicate if there was any rebasing
> needed to apply to the stable branch. If there were code changes for
> rebasing
> (ie: not only metadata diffs), please double check that the rebase was
> correctly done.
>
> Queued patches are on a temporary branch at:
> https://git.dpdk.org/dpdk-stable/log/?h=23.11-staging
>
> This queued commit can be viewed at:
> https://git.dpdk.org/dpdk-stable/commit/?h=23.11-
> staging&id=8b75cfb86f90c816bdda28b8696beb18d553fd2b
>
> Thanks.
>
> Xueming Li <xuemingl@nvidia.com>
>
> ---
> From 8b75cfb86f90c816bdda28b8696beb18d553fd2b Mon Sep 17 00:00:00
> 2001
> From: Mingjin Ye <mingjinx.ye@intel.com>
> Date: Thu, 14 Mar 2024 09:36:28 +0000
> Subject: [PATCH] bus/vdev: revert fix devargs in secondary process
> Cc: Xueming Li <xuemingl@nvidia.com>
>
> [ upstream commit 22ce39b3aadb109cbefabb91aad44c94e8c2a5e6 ]
>
> The ASan tool detected a memory leak in the vdev driver alloc_devargs. The
> previous commit was that when inserting a vdev device, the primary process
> alloc devargs and the secondary process looks for devargs. This causes the
> device to not be created if the secondary process does not initialise the vdev
> device. And, this is not the root cause.
>
> Therefore the following commit was reverted accordingly.
>
> After restoring this commit, the memory leak still exists.
>
> Bugzilla ID: 1450
> Fixes: 6666628362c9 ("bus/vdev: fix devargs in secondary process")
>
> Signed-off-by: Mingjin Ye <mingjinx.ye@intel.com>
> ---
>  drivers/bus/vdev/vdev.c | 21 +--------------------
>  1 file changed, 1 insertion(+), 20 deletions(-)
>
> diff --git a/drivers/bus/vdev/vdev.c b/drivers/bus/vdev/vdev.c index
> 14cf856237..38d05a9fe9 100644
> --- a/drivers/bus/vdev/vdev.c
> +++ b/drivers/bus/vdev/vdev.c
> @@ -263,22 +263,6 @@ alloc_devargs(const char *name, const char *args)
>        return devargs;
>  }
>
> -static struct rte_devargs *
> -vdev_devargs_lookup(const char *name)
> -{
> -     struct rte_devargs *devargs;
> -     char dev_name[32];
> -
> -     RTE_EAL_DEVARGS_FOREACH("vdev", devargs) {
> -             devargs->bus->parse(devargs->name, &dev_name);
> -             if (strcmp(dev_name, name) == 0) {
> -                     VDEV_LOG(INFO, "devargs matched %s", dev_name);
> -                     return devargs;
> -             }
> -     }
> -     return NULL;
> -}
> -
>  static int
>  insert_vdev(const char *name, const char *args,
>                struct rte_vdev_device **p_dev,
> @@ -291,10 +275,7 @@ insert_vdev(const char *name, const char *args,
>        if (name == NULL)
>                return -EINVAL;
>
> -     if (rte_eal_process_type() == RTE_PROC_PRIMARY)
> -             devargs = alloc_devargs(name, args);
> -     else
> -             devargs = vdev_devargs_lookup(name);
> +     devargs = alloc_devargs(name, args);
>
>        if (!devargs)
>                return -ENOMEM;
> --
> 2.34.1
>
> ---
>   Diff of the applied patch vs upstream commit (please double-check if non-
> empty:
> ---
> --- - 2024-07-12 18:40:18.570682691 +0800
> +++ 0100-bus-vdev-revert-fix-devargs-in-secondary-process.patch       2024-
> 07-12 18:40:14.356594197 +0800
> @@ -1 +1 @@
> -From 22ce39b3aadb109cbefabb91aad44c94e8c2a5e6 Mon Sep 17 00:00:00
> 2001
> +From 8b75cfb86f90c816bdda28b8696beb18d553fd2b Mon Sep 17 00:00:00
> 2001
> @@ -4,0 +5,3 @@
> +Cc: Xueming Li <xuemingl@nvidia.com>
> +
> +[ upstream commit 22ce39b3aadb109cbefabb91aad44c94e8c2a5e6 ]
> @@ -20 +22,0 @@
> -Cc: stable@dpdk.org

[-- Attachment #2: Type: text/html, Size: 8760 bytes --]

  parent reply	other threads:[~2024-08-31 14:51 UTC|newest]

Thread overview: 271+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-12 10:43 patch " Xueming Li
2024-07-12 10:43 ` patch 'bus/pci: fix build with musl 1.2.4 / Alpine 3.19' " Xueming Li
2024-07-12 10:43 ` patch 'eal: fix type in destructor macro for MSVC' " Xueming Li
2024-07-12 10:43 ` patch 'eal/unix: support ZSTD compression for firmware' " Xueming Li
2024-07-12 11:05   ` David Marchand
2024-07-13  0:04     ` Xueming Li
2024-07-12 10:43 ` patch 'pcapng: add memcpy check' " Xueming Li
2024-07-12 10:43 ` patch 'net/virtio-user: " Xueming Li
2024-07-12 10:43 ` patch 'eal/windows: install sched.h file' " Xueming Li
2024-07-12 10:43 ` patch 'latencystats: fix literal float suffix' " Xueming Li
2024-07-12 10:43 ` patch 'net/nfp: fix representor port queue release' " Xueming Li
2024-07-12 10:43 ` patch 'net/bonding: fix failover time of LACP with mode 4' " Xueming Li
2024-07-12 10:43 ` patch 'app/testpmd: fix indirect action flush' " Xueming Li
2024-07-12 10:43 ` patch 'net/hns3: fix offload flag of IEEE 1588' " Xueming Li
2024-07-12 10:43 ` patch 'net/hns3: fix Rx timestamp flag' " Xueming Li
2024-07-12 10:43 ` patch 'net/hns3: fix double free for Rx/Tx queue' " Xueming Li
2024-07-12 10:44 ` patch 'net/hns3: fix variable overflow' " Xueming Li
2024-07-12 10:44 ` patch 'net/hns3: disable SCTP verification tag for RSS hash input' " Xueming Li
2024-07-12 10:44 ` patch 'doc: fix AF_XDP device plugin howto' " Xueming Li
2024-07-12 10:44 ` patch 'net/af_xdp: fix multi-interface support for k8s' " Xueming Li
2024-07-12 10:44 ` patch 'ethdev: fix strict aliasing in link up' " Xueming Li
2024-07-12 10:44 ` patch 'net/vmxnet3: add missing register command' " Xueming Li
2024-07-12 10:44 ` patch 'net/af_packet: align Rx/Tx structs to cache line' " Xueming Li
2024-07-12 10:44 ` patch 'doc: fix testpmd ring size command' " Xueming Li
2024-07-12 10:44 ` patch 'net/af_xdp: fix port ID in Rx mbuf' " Xueming Li
2024-07-12 10:44 ` patch 'net/af_xdp: count mbuf allocation failures' " Xueming Li
2024-07-12 10:44 ` patch 'net/af_xdp: fix stats reset' " Xueming Li
2024-07-12 10:44 ` patch 'net/af_xdp: remove unused local statistic' " Xueming Li
2024-07-12 10:44 ` patch 'net/nfp: fix resource leak in secondary process' " Xueming Li
2024-07-12 10:44 ` patch 'net/nfp: fix configuration BAR' " Xueming Li
2024-07-12 10:44 ` patch 'net/tap: fix file descriptor check in isolated flow' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: fix MDIO access for non-zero ports and CL45 PHYs' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: reset link when link never comes back' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: fix fluctuations for 1G Bel Fuse SFP' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: update DMA coherency values' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: disable interrupts during device removal' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: disable RRC for yellow carp devices' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: enable PLL control for fixed PHY modes only' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: fix SFP codes check for DAC cables' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: fix connection for SFP+ active " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: check only minimum speed for " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: fix Tx flow on 30H HW' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: delay AN timeout during KR training' " Xueming Li
2024-07-12 10:44 ` patch 'net/axgbe: fix linkup in PHY status' " Xueming Li
2024-07-12 10:44 ` patch 'net/ice: fix check for outer UDP checksum offload' " Xueming Li
2024-07-12 10:44 ` patch 'app/testpmd: fix outer IP " Xueming Li
2024-07-12 10:44 ` patch 'net: fix outer UDP checksum in Intel prepare helper' " Xueming Li
2024-07-12 10:44 ` patch 'net/i40e: fix outer UDP checksum offload for X710' " Xueming Li
2024-07-12 10:44 ` patch 'net/iavf: remove outer UDP checksum offload for X710 VF' " Xueming Li
2024-07-12 10:44 ` patch 'app/testpmd: fix lcore ID restriction' " Xueming Li
2024-07-12 10:44 ` patch 'net/nfp: fix xstats for multi PF firmware' " Xueming Li
2024-07-12 10:44 ` patch 'hash: fix return code description in Doxygen' " Xueming Li
2024-07-12 10:44 ` patch 'hash: check name when creating a hash' " Xueming Li
2024-07-12 10:44 ` patch 'vhost: fix build with GCC 13' " Xueming Li
2024-07-12 10:44 ` patch 'vhost: cleanup resubmit info before inflight setup' " Xueming Li
2024-07-12 10:44 ` patch 'net/virtio-user: fix control queue destruction' " Xueming Li
2024-07-12 10:44 ` patch 'net/virtio-user: fix shadow control queue notification init' " Xueming Li
2024-07-12 10:44 ` patch 'net/virtio-user: fix control queue allocation' " Xueming Li
2024-07-12 10:44 ` patch 'net/virtio: fix MAC table update' " Xueming Li
2024-07-12 10:44 ` patch 'baseband/acc: fix memory barrier' " Xueming Li
2024-07-12 10:44 ` patch 'event/sw: fix warning from useless snprintf' " Xueming Li
2024-07-12 10:44 ` patch 'eventdev/crypto: fix opaque field handling' " Xueming Li
2024-07-12 10:44 ` patch 'net/iavf: fix VF reset when using DCF' " Xueming Li
2024-07-12 10:44 ` patch 'net/fm10k: fix cleanup during init failure' " Xueming Li
2024-07-12 10:44 ` patch 'net/ice: fix VLAN stripping in double VLAN mode' " Xueming Li
2024-07-12 10:44 ` patch 'net/ixgbe: do not update link status in secondary process' " Xueming Li
2024-07-12 10:44 ` patch 'net/ixgbe: do not create delayed interrupt handler twice' " Xueming Li
2024-07-12 10:44 ` patch 'net/e1000/base: fix link power down' " Xueming Li
2024-07-12 10:44 ` patch 'net/ixgbe/base: revert advertising for X550 2.5G/5G' " Xueming Li
2024-07-12 10:44 ` patch 'net/ixgbe/base: fix 5G link speed reported on VF' " Xueming Li
2024-07-12 10:44 ` patch 'net/ixgbe/base: fix PHY ID for X550' " Xueming Li
2024-07-12 10:44 ` patch 'net/cnxk: fix RSS config' " Xueming Li
2024-07-12 10:44 ` patch 'common/cnxk: fix flow aging cleanup' " Xueming Li
2024-07-12 10:44 ` patch 'common/cnxk: fix segregation of logs based on module' " Xueming Li
2024-07-12 10:44 ` patch 'net/cnxk: fix extbuf handling for multisegment packet' " Xueming Li
2024-07-12 10:44 ` patch 'net/cnxk: update SA userdata and keep original cookie' " Xueming Li
2024-07-12 10:45 ` patch 'net/cnxk: fix outbound security with higher packet burst' " Xueming Li
2024-07-12 10:45 ` patch 'net/cnxk: fix promiscuous state after MAC change' " Xueming Li
2024-07-12 10:45 ` patch 'graph: fix ID collisions' " Xueming Li
2024-07-12 10:45 ` patch 'graph: fix stats retrieval while destroying a graph' " Xueming Li
2024-07-12 10:45 ` patch 'bpf: disable on 32-bit x86' " Xueming Li
2024-07-12 10:45 ` patch 'hash: fix RCU reclamation size' " Xueming Li
2024-07-12 11:01 ` patch 'common/mlx5: fix unsigned/signed mismatch' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: decrease log level for creation failure' " Xueming Li
2024-07-12 11:01   ` patch 'common/mlx5: fix PRM structs' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: fix function comment' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: fix spinlock release on context open' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: add template match none flag' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: extend tag saving for match and jumbo' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: set default miss when replacing table' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: fix action template dump' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: fix indexed pool with invalid index' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: fix hash Rx queue release in flow sample' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: fix flow template indirect action failure' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: break flow resource release loop' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: fix access to flow template operations' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: support jump in meter hierarchy' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5: fix crash on counter pool destroy' " Xueming Li
2024-07-12 11:01   ` patch 'net/mlx5/hws: fix matcher reconnect' " Xueming Li
2024-07-12 11:01   ` patch 'test/crypto: fix RSA cases in QAT suite' " Xueming Li
2024-07-12 11:01   ` patch 'test/crypto: fix enqueue/dequeue callback case' " Xueming Li
2024-07-12 11:01   ` patch 'telemetry: lower log level on socket error' " Xueming Li
2024-07-13 13:38     ` David Marchand
2024-07-15  6:59       ` Xueming Li
2024-07-12 11:01   ` patch 'bus/vdev: revert fix devargs in secondary process' " Xueming Li
2024-07-17  2:21     ` Ye, MingjinX
2024-07-17  9:17       ` Xueming Li
2024-08-31 14:51       ` Xueming Li [this message]
2024-09-02  2:01         ` Jiang, YuX
2024-09-02  7:11           ` Xueming Li
2024-07-12 11:01   ` patch 'doc: fix link to hugepage mapping from Linux guide' " Xueming Li
2024-07-12 11:01   ` patch 'v23.11.2-rc1' " Xueming Li
2024-08-12 12:47     ` patch " Xueming Li
2024-08-12 12:47       ` patch 'config: fix warning for cross build with meson >= 1.3.0' " Xueming Li
2024-08-12 12:47       ` patch 'build: use builtin helper for python dependencies' " Xueming Li
2024-08-12 12:48       ` patch 'app/bbdev: fix TB logic' " Xueming Li
2024-08-12 12:48       ` patch 'app/bbdev: fix MLD output size computation' " Xueming Li
2024-08-12 12:48       ` patch 'app/bbdev: fix interrupt tests' " Xueming Li
2024-08-12 12:48       ` patch 'common/cnxk: fix flow aging on application exit' " Xueming Li
2024-08-12 12:48       ` patch 'dmadev: fix structure alignment' " Xueming Li
2024-08-12 12:48       ` patch 'vdpa/sfc: remove dead code' " Xueming Li
2024-08-12 12:48       ` patch 'graph: fix mcore dispatch walk' " Xueming Li
2024-08-12 12:48       ` patch 'mbuf: fix dynamic fields copy' " Xueming Li
2024-08-12 12:48       ` patch 'bpf: fix MOV instruction evaluation' " Xueming Li
2024-08-12 12:48       ` patch 'bpf: fix load hangs with six IPv6 addresses' " Xueming Li
2024-08-12 12:48       ` patch 'telemetry: fix connection parameter parsing' " Xueming Li
2024-08-12 12:48       ` patch 'baseband/la12xx: forbid secondary process' " Xueming Li
2024-08-12 12:48       ` patch 'net/virtio-user: fix control queue allocation for non-vDPA' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/cnxk: fix out-of-bound access' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/cnxk: fix ECDH public key verification' " Xueming Li
2024-08-12 12:48       ` patch 'app/crypto-perf: remove redundant local variable' " Xueming Li
2024-08-12 12:48       ` patch 'app/crypto-perf: fix result for asymmetric' " Xueming Li
2024-08-12 12:48       ` patch 'test/crypto: validate modex from first non-zero' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/cnxk: fix minimal input normalization' " Xueming Li
2024-08-12 12:48       ` patch 'cryptodev: fix build without crypto callbacks' " Xueming Li
2024-08-12 12:48       ` patch 'cryptodev: validate crypto callbacks from next node' " Xueming Li
2024-08-12 12:48       ` patch 'examples/fips_validation: fix dereference and out-of-bound' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/openssl: fix GCM and CCM thread unsafe contexts' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/openssl: optimize 3DES-CTR context init' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/openssl: make per-QP cipher context clones' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/openssl: set cipher padding once' " Xueming Li
2024-08-12 12:48       ` patch 'common/dpaax/caamflib: fix PDCP-SDAP watchdog error' " Xueming Li
2024-08-12 12:48       ` patch 'common/dpaax/caamflib: fix PDCP AES-AES " Xueming Li
2024-08-12 12:48       ` patch 'crypto/dpaa_sec: fix IPsec descriptor' " Xueming Li
2024-08-12 12:48       ` patch 'crypto/dpaa2_sec: fix event queue user context' " Xueming Li
2024-08-12 12:48       ` patch 'examples/ipsec-secgw: fix SA salt endianness' " Xueming Li
2024-08-12 12:48       ` patch 'fbarray: fix incorrect lookahead behavior' " Xueming Li
2024-08-12 12:48       ` patch 'fbarray: fix incorrect lookbehind " Xueming Li
2024-08-12 12:48       ` patch 'fbarray: fix lookahead ignore mask handling' " Xueming Li
2024-08-12 12:48       ` patch 'fbarray: fix lookbehind " Xueming Li
2024-08-12 12:48       ` patch 'devtools: fix symbol listing' " Xueming Li
2024-08-12 12:48       ` patch 'eal/linux: lower log level on allocation attempt failure' " Xueming Li
2024-08-12 12:48       ` patch 'dma/idxd: fix setup with Ubuntu 24.04' " Xueming Li
2024-08-12 12:48       ` patch 'app/testpmd: fix help string of BPF load command' " Xueming Li
2024-08-12 12:48       ` patch 'bus/dpaa: fix bus scan for DMA devices' " Xueming Li
2024-08-12 12:48       ` patch 'bus/dpaa: fix memory leak in bus scan' " Xueming Li
2024-08-12 12:48       ` patch 'common/dpaax: fix IOVA table cleanup' " Xueming Li
2024-08-12 12:48       ` patch 'common/dpaax: fix node array overrun' " Xueming Li
2024-08-12 12:48       ` patch 'bus/dpaa: remove redundant file descriptor check' " Xueming Li
2024-08-12 12:48       ` patch 'net/dpaa: forbid MTU configuration for shared interface' " Xueming Li
2024-08-12 12:48       ` patch 'net/mlx5: fix start without duplicate flow patterns' " Xueming Li
2024-08-12 12:48       ` patch 'fbarray: fix finding for unaligned length' " Xueming Li
2024-08-12 12:48       ` patch 'buildtools: fix build with clang 17 and ASan' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix pointer to variable outside scope' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix memory leak in firmware version check' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix resource leak' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix sign extension' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix size when allocating children arrays' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix GCS descriptor field offsets' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix return type of bitmap hamming weight' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix check for existing switch rule' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix potential TLV length overflow' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix board type definition' " Xueming Li
2024-08-12 12:48       ` patch 'net/ice/base: fix masking when reading context' " Xueming Li
2024-08-12 12:48       ` patch 'common/idpf: fix flex descriptor mask' " Xueming Li
2024-08-12 12:49       ` patch 'common/idpf: fix PTP message validation' " Xueming Li
2024-08-12 12:49       ` patch 'net/cpfl: add checks on control queue messages' " Xueming Li
2024-08-12 12:49       ` patch 'net/cpfl: fix 32-bit build' " Xueming Li
2024-08-12 12:49       ` patch 'app/testpmd: handle IEEE1588 init failure' " Xueming Li
2024-08-12 12:49       ` patch 'doc: remove empty section from testpmd guide' " Xueming Li
2024-08-12 12:49       ` patch 'app/testpmd: fix parsing for connection tracking item' " Xueming Li
2024-08-12 12:49       ` patch 'net/mana: fix uninitialized return value' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix tunnel packet parsing' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix flow filters in VT mode' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix Tx hang on queue disable' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: restrict configuration of VLAN strip offload' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: reconfigure more MAC Rx registers' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix VF promiscuous and allmulticast' " Xueming Li
2024-08-12 12:49       ` patch 'net/ngbe: add special config for YT8531SH-CA PHY' " Xueming Li
2024-08-12 12:49       ` patch 'net/ngbe: keep PHY power down while device probing' " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix hotplug remove' " Xueming Li
2024-08-12 12:49       ` patch 'net/ngbe: " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix MTU range' " Xueming Li
2024-08-12 12:49       ` patch 'net/ngbe: " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix memory leaks' " Xueming Li
2024-08-12 12:49       ` patch 'net/ngbe: " Xueming Li
2024-08-12 12:49       ` patch 'net/txgbe: fix Rx interrupt' " Xueming Li
2024-08-12 12:49       ` patch 'net/vmxnet3: fix init logs' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix IPv6 TTL and DSCP flow action' " Xueming Li
2024-08-12 12:49       ` patch 'net/netvsc: fix MTU set' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix allocation of switch domain' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix flow mask table entry' " Xueming Li
2024-08-12 12:49       ` patch 'net/ionic: fix mbuf double-free when emptying array' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: disable ctrl VNIC queues on close' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix dereference of null pointer' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix repeat disable port' " Xueming Li
2024-08-12 12:49       ` patch 'net/ena: fix bad checksum handling' " Xueming Li
2024-08-12 12:49       ` patch 'net/ena: fix return value check' " Xueming Li
2024-08-12 12:49       ` patch 'net/ena: fix checksum handling' " Xueming Li
2024-08-12 12:49       ` patch 'net/gve: fix RSS hash endianness in DQO format' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: remove redundant function call' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix getting firmware version' " Xueming Li
2024-08-12 12:49       ` patch 'doc: update metadata description in nfp guide' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: remove unneeded logic for VLAN layer' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: adapt reverse sequence card' " Xueming Li
2024-08-12 12:49       ` patch 'doc: update AF_XDP device plugin repository' " Xueming Li
2024-08-12 12:49       ` patch 'net/nfp: fix disabling 32-bit build' " Xueming Li
2024-08-12 12:49       ` patch 'crypto/qat: fix GEN4 write' " Xueming Li
2024-08-12 12:49       ` patch 'crypto/ipsec_mb: fix function comment' " Xueming Li
2024-08-12 12:49       ` patch 'test/crypto: fix allocation " Xueming Li
2024-08-12 12:49       ` patch 'crypto/qat: fix log message typo' " Xueming Li
2024-08-12 12:49       ` patch 'doc: fix typo in l2fwd-crypto guide' " Xueming Li
2024-08-12 12:49       ` patch 'test/crypto: remove unused stats in setup' " Xueming Li
2024-08-12 12:49       ` patch 'test/crypto: fix asymmetric capability test' " Xueming Li
2024-08-12 12:49       ` patch 'test/crypto: fix modex comparison' " Xueming Li
2024-08-12 12:49       ` patch 'crypto/qat: fix placement of OOP offset' " Xueming Li
2024-08-12 12:49       ` patch 'common/cnxk: fix integer overflow' " Xueming Li
2024-08-12 12:49       ` patch 'net/ice: fix memory leaks in raw pattern parsing' " Xueming Li
2024-08-12 12:49       ` patch 'net/ice: fix return value for " Xueming Li
2024-08-12 12:49       ` patch 'net/mlx5: fix shared Rx queue data access race' " Xueming Li
2024-08-12 12:49       ` patch 'net/mlx5: fix Arm build with GCC 9.1' " Xueming Li
2024-08-12 12:49       ` patch 'net/mlx5: fix MTU configuration' " Xueming Li
2024-08-12 12:49       ` patch 'net/mlx5/hws: fix memory leak in modify header' " Xueming Li
2024-08-12 12:49       ` patch 'net/mlx5/hws: fix check of range templates' " Xueming Li
2024-08-12 12:49       ` patch 'net/mlx5/hws: fix deletion of action vport' " Xueming Li
2024-08-12 12:50       ` patch 'net/mlx5/hws: fix port ID on root item convert' " Xueming Li
2024-08-12 12:50       ` patch 'net/mlx5/hws: remove unused variable' " Xueming Li
2024-08-12 12:50       ` patch 'net/mlx5: fix end condition of reading xstats' " Xueming Li
2024-08-12 12:50       ` patch 'net/mlx5: fix uplink port probing in bonding mode' " Xueming Li
2024-08-12 12:50       ` patch 'common/mlx5: remove unneeded field when modify RQ table' " Xueming Li
2024-08-12 12:50       ` patch 'net/mlx5: fix disabling E-Switch default flow rules' " Xueming Li
2024-08-12 12:50       ` patch 'net/hns3: check Rx DMA address alignmnent' " Xueming Li
2024-08-12 12:50       ` patch 'net/ark: fix index arithmetic' " Xueming Li
2024-08-12 12:50       ` patch 'ethdev: fix GENEVE option item conversion' " Xueming Li
2024-08-12 12:50       ` patch 'net/netvsc: use ethdev API to set VF MTU' " Xueming Li
2024-08-12 12:50       ` patch 'app/testpmd: add postpone option to async flow destroy' " Xueming Li
2024-08-12 12:50       ` patch 'ethdev: fix device init without socket-local memory' " Xueming Li
2024-08-12 12:50       ` patch 'net/gve: fix Tx queue state on queue start' " Xueming Li
2024-08-12 12:50       ` patch 'app/testpmd: fix build on signed comparison' " Xueming Li
2024-08-12 12:50       ` patch 'bus/pci: fix UIO resource mapping in secondary process' " Xueming Li
2024-08-12 12:50       ` patch 'bus/pci: fix FD " Xueming Li
2024-08-12 12:50       ` patch 'dma/hisilicon: remove support for HIP09 platform' " Xueming Li
2024-08-12 12:50       ` patch 'app/dumpcap: handle SIGTERM and SIGHUP' " Xueming Li
2024-08-12 12:50       ` patch 'app/pdump: " Xueming Li
2024-08-12 12:50       ` patch 'power: fix number of uncore frequencies' " Xueming Li
2024-08-12 12:50       ` patch 'malloc: fix multi-process wait condition handling' " Xueming Li
2024-08-12 12:50       ` patch 'bus/vdev: fix device reinitialization' " Xueming Li
2024-08-12 12:50       ` patch 'examples/l3fwd: fix crash in ACL mode for mixed traffic' " Xueming Li
2024-08-12 12:50       ` patch 'examples/l3fwd: fix crash on multiple sockets' " Xueming Li
2024-08-12 12:50       ` patch 'net/hns3: fix uninitialized variable in FEC query' " Xueming Li
2024-08-12 12:50       ` patch 'net/ice/base: fix temporary failures reading NVM' " Xueming Li
2024-08-12 12:50       ` patch 'examples: fix queue ID restriction' " Xueming Li
2024-08-12 12:50       ` patch 'doc: remove reference to mbuf pkt field' " Xueming Li
2024-08-12 12:50       ` patch 'examples/ipsec-secgw: revert SA salt endianness' " Xueming Li
2024-08-12 12:50       ` patch 'doc: fix mbuf flags' " Xueming Li
2024-08-12 12:50       ` patch 'doc: add power uncore in API index' " Xueming Li
2024-08-12 12:50       ` patch 'doc: describe mlx5 HWS actions order' " Xueming Li
2024-08-12 12:50       ` patch 'doc: fix DMA performance test invocation' " Xueming Li
2024-08-12 12:50       ` patch 'doc: add baseline mode in l3fwd-power guide' " Xueming Li
2024-08-12 12:50       ` patch 'examples: fix lcore ID restriction' " Xueming Li
2024-08-12 12:50       ` patch 'examples: fix port " Xueming Li

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CH3PR12MB8658C8737685302D2F1566F6A1902@CH3PR12MB8658.namprd12.prod.outlook.com \
    --to=xuemingl@nvidia.com \
    --cc=hailinx.xu@intel.com \
    --cc=mingjinx.ye@intel.com \
    --cc=stable@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).