patches for DPDK stable branches
 help / color / mirror / Atom feed
From: "Peng, ZhihongX" <zhihongx.peng@intel.com>
To: Xueming Li <xuemingl@nvidia.com>
Cc: Luca Boccassi <bluca@debian.org>,
	Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>,
	Olivier Matz <olivier.matz@6wind.com>,
	"dpdk stable" <stable@dpdk.org>
Subject: Re: [dpdk-stable] patch 'cmdline: free on exit' has been queued to stable release 20.11.4
Date: Wed, 10 Nov 2021 07:23:47 +0000	[thread overview]
Message-ID: <DM8PR11MB559148D7FC81D907214B20ABF0939@DM8PR11MB5591.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20211110063216.2744012-175-xuemingl@nvidia.com>

Hi , Xueming

This patch is not backward compatible. Backward compatibility will cause
the app to change the CmdLine code. In addition, we found a bug in some
test cases of this patch, and I will submit a new patch for solution.

Regards,
Peng,Zhihong

> -----Original Message-----
> From: Xueming Li <xuemingl@nvidia.com>
> Sent: Wednesday, November 10, 2021 2:31 PM
> To: Peng, ZhihongX <zhihongx.peng@intel.com>
> Cc: Luca Boccassi <bluca@debian.org>; Dmitry Kozlyuk
> <dmitry.kozliuk@gmail.com>; Olivier Matz <olivier.matz@6wind.com>; dpdk
> stable <stable@dpdk.org>
> Subject: patch 'cmdline: free on exit' has been queued to stable release
> 20.11.4
> 
> Hi,
> 
> FYI, your patch has been queued to stable release 20.11.4
> 
> Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
> It will be pushed if I get no objections before 11/12/21. 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://github.com/steevenlee/dpdk
> 
> This queued commit can be viewed at:
> https://github.com/steevenlee/dpdk/commit/f181839864ae7ba170519235a6
> da969a7df36a85
> 
> Thanks.
> 
> Xueming Li <xuemingl@nvidia.com>
> 
> ---
> From f181839864ae7ba170519235a6da969a7df36a85 Mon Sep 17 00:00:00
> 2001
> From: Zhihong Peng <zhihongx.peng@intel.com>
> Date: Mon, 18 Oct 2021 21:58:50 +0800
> Subject: [PATCH] cmdline: free on exit
> Cc: Xueming Li <xuemingl@nvidia.com>
> 
> [ upstream commit 6ad06203a587a8ce10392d9224e9fbdcb77b3d5c ]
> 
> Malloc cl in the cmdline_stdin_new function, so release in the
> cmdline_stdin_exit function is logical, so that cl will not be released alone.
> 
> Fixes: af75078fece3 ("first public release")
> 
> Signed-off-by: Zhihong Peng <zhihongx.peng@intel.com>
> Reviewed-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
> Acked-by: Olivier Matz <olivier.matz@6wind.com>
> Tested-by: Zhihong Peng <zhihongx.peng@intel.com>
> ---
>  app/test/test.c                     | 1 -
>  app/test/test_cmdline_lib.c         | 1 -
>  lib/librte_cmdline/cmdline_socket.c | 1 +
>  3 files changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/app/test/test.c b/app/test/test.c index 864523ed61..f7d0946761
> 100644
> --- a/app/test/test.c
> +++ b/app/test/test.c
> @@ -195,7 +195,6 @@ main(int argc, char **argv)
> 
>  		cmdline_interact(cl);
>  		cmdline_stdin_exit(cl);
> -		cmdline_free(cl);
>  	}
>  #endif
>  	ret = 0;
> diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c index
> d5a09b4541..6bcfa6511e 100644
> --- a/app/test/test_cmdline_lib.c
> +++ b/app/test/test_cmdline_lib.c
> @@ -174,7 +174,6 @@ test_cmdline_socket_fns(void)
>  	/* void functions */
>  	cmdline_stdin_exit(NULL);
> 
> -	cmdline_free(cl);
>  	return 0;
>  error:
>  	printf("Error: function accepted null parameter!\n"); diff --git
> a/lib/librte_cmdline/cmdline_socket.c b/lib/librte_cmdline/cmdline_socket.c
> index 0fe1497008..f919537460 100644
> --- a/lib/librte_cmdline/cmdline_socket.c
> +++ b/lib/librte_cmdline/cmdline_socket.c
> @@ -57,4 +57,5 @@ cmdline_stdin_exit(struct cmdline *cl)
>  		return;
> 
>  	terminal_restore(cl);
> +	cmdline_free(cl);
>  }
> --
> 2.33.0
> 
> ---
>   Diff of the applied patch vs upstream commit (please double-check if non-
> empty:
> ---
> --- -	2021-11-10 14:17:09.660774437 +0800
> +++ 0174-cmdline-free-on-exit.patch	2021-11-10 14:17:01.984078497 +0800
> @@ -1 +1 @@
> -From 6ad06203a587a8ce10392d9224e9fbdcb77b3d5c Mon Sep 17 00:00:00
> 2001
> +From f181839864ae7ba170519235a6da969a7df36a85 Mon Sep 17 00:00:00
> 2001
> @@ -4,0 +5,3 @@
> +Cc: Xueming Li <xuemingl@nvidia.com>
> +
> +[ upstream commit 6ad06203a587a8ce10392d9224e9fbdcb77b3d5c ]
> @@ -17,5 +20,4 @@
> - app/test/test.c                        | 1 -
> - app/test/test_cmdline_lib.c            | 1 -
> - doc/guides/rel_notes/release_21_11.rst | 3 +++
> - lib/cmdline/cmdline_socket.c           | 1 +
> - 4 files changed, 4 insertions(+), 2 deletions(-)
> + app/test/test.c                     | 1 -
> + app/test/test_cmdline_lib.c         | 1 -
> + lib/librte_cmdline/cmdline_socket.c | 1 +
> + 3 files changed, 1 insertion(+), 2 deletions(-)
> @@ -24 +26 @@
> -index 173d202e47..5194131026 100644
> +index 864523ed61..f7d0946761 100644
> @@ -27 +29 @@
> -@@ -233,7 +233,6 @@ main(int argc, char **argv)
> +@@ -195,7 +195,6 @@ main(int argc, char **argv)
> @@ -36 +38 @@
> -index 054ebf5e9d..f238094b07 100644
> +index d5a09b4541..6bcfa6511e 100644
> @@ -39 +41 @@
> -@@ -180,7 +180,6 @@ test_cmdline_socket_fns(void)
> +@@ -174,7 +174,6 @@ test_cmdline_socket_fns(void)
> @@ -47,19 +49,5 @@
> -diff --git a/doc/guides/rel_notes/release_21_11.rst
> b/doc/guides/rel_notes/release_21_11.rst
> -index 9b1843eb09..450bcbb445 100644
> ---- a/doc/guides/rel_notes/release_21_11.rst
> -+++ b/doc/guides/rel_notes/release_21_11.rst
> -@@ -325,6 +325,9 @@ API Changes
> -   removed. Its usages have been replaced by a new function
> -   ``rte_kvargs_get_with_value()``.
> -
> -+* cmdline: ``cmdline_stdin_exit()`` now frees the ``cmdline`` structure.
> -+  Calls to ``cmdline_free()`` after it need to be deleted from applications.
> -+
> - * cmdline: Made ``cmdline`` structure definition hidden on Linux and
> FreeBSD.
> -
> - * cmdline: Made ``rdline`` structure definition hidden. Functions are added -
> diff --git a/lib/cmdline/cmdline_socket.c b/lib/cmdline/cmdline_socket.c -
> index 998e8ade25..ebd5343754 100644
> ---- a/lib/cmdline/cmdline_socket.c
> -+++ b/lib/cmdline/cmdline_socket.c
> -@@ -53,4 +53,5 @@ cmdline_stdin_exit(struct cmdline *cl)
> +diff --git a/lib/librte_cmdline/cmdline_socket.c
> +b/lib/librte_cmdline/cmdline_socket.c
> +index 0fe1497008..f919537460 100644
> +--- a/lib/librte_cmdline/cmdline_socket.c
> ++++ b/lib/librte_cmdline/cmdline_socket.c
> +@@ -57,4 +57,5 @@ cmdline_stdin_exit(struct cmdline *cl)

  reply	other threads:[~2021-11-10  7:24 UTC|newest]

Thread overview: 345+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-10  6:28 [dpdk-stable] patches " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/i40e: support 25G AOC/ACC cables' has been " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'examples/performance-thread: fix build with clang 12.0.1' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'drivers/net: fix typo in vector Rx comment' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'drivers/net: fix vector Rx comments' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice/base: fix typo in comment' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice: fix max entry number for ACL normal priority' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/txgbe: fix reading SFP module SFF-8472 data' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/mlx5: fix mbuf replenishment check for zipped CQE' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/mlx5: fix eCPRI matching' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/bnxt: update ring group after ring stop start' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'app/testpmd: fix Tx retry in flowgen engine' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/bnxt: fix crash after port stop/start' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'app/testpmd: fix check without outer checksum' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'app/testpmd: fix dump of Tx offload flags' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'crypto/octeontx2: fix unaligned access to device memory' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'eal/ppc: ignore GCC 10 stringop-overflow warnings' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'config/ppc: ignore GCC 11 psabi " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'crypto/openssl: fix CCM processing 0 length source' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'common/dpaax/caamflib: fix IV for short MAC-I in SNOW3G' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/nfp: fix minimum descriptor sizes' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice: fix memzone leak after device init failure' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice: fix RXDID default value in DCF' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice: fix deadlock on flow query' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice: fix queue config in DCF' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/iavf: fix overflow in maximum packet length config' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ixgbe: fix Rx multicast statistics after reset' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/bnxt: fix mbuf VLAN in scalar Rx' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/bnxt: check FW capability for VLAN offloads' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/bnxt: fix ring group free' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/bnxt: fix double allocation of ring groups' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/af_xdp: fix zero-copy Tx queue drain' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'doc: fix bonding driver name' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/axgbe: fix unreleased lock in I2C transfer' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/pcap: fix resource leakage on port probe' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/hns3: fix queue flow action validation' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/hns3: fix taskqueue pair reset command' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/sfc: set FDIR bit for flow mark in EF100 Rx' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ixgbe: fix hash handle leak' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ixgbe: fix queue resource " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ixgbe: fix MAC " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ixgbe: fix mbuf " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/ice: fix performance with writeback policy' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'build: propagate Windows system dependencies to pkg-config' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'test/func_reentrancy: free memzones after test' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'examples/service_cores: fix lcore count check' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'eal: fix memory leak when saving arguments' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'ethdev: fix typo in Rx queue setup API comment' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net: fix checksum offload for outer IPv4' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/virtio: fix mbuf count on Rx queue setup' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/virtio: fix split queue vectorized Rx' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/virtio: avoid unneeded link interrupt configuration' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/virtio-user: fix Rx interrupts with multi-queue' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'vhost: fix crash on port deletion' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'net/virtio: fix repeated freeing of virtqueue' " Xueming Li
2021-11-10  6:28 ` [dpdk-stable] patch 'vhost: log socket path on adding connection' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/virtio: fix device configure without jumbo Rx offload' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/octeontx2: fix MTU when PTP is enabled' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/i40e: fix mbuf leak' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/i40e: fix device startup resource release' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/ice/base: fix PF ID for DCF' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/iavf: fix mbuf leak' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/i40e/base: fix resource leakage' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/iavf: fix Rx queue buffer size alignment' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'doc: fix numbers power of 2 in LPM6 guide' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'bus/pci: fix unknown NUMA node value on Windows' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'sched: get 64-bit greatest common divisor' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'vdpa/mlx5: fix large VM memory region registration' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'stack: fix reload head when pop fails' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'examples/ipsec-secgw: fix parsing of flow queue' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'test/compress: fix buffer overflow' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/bonding: fix memory leak on closing device' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/ice/base: calculate logical PF ID' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/iavf: fix mbuf leak' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/octeontx: fix access to indirect buffers' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/mlx5: fix memory leak on context allocation failure' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/mlx5: fix shared RSS destruction' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/memif: fix chained mbuf determination' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'kvargs: fix comments style' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'bus/pci: fix unknown NUMA node value on Windows' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'eal/windows: export version function' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'eal: remove Windows-specific list of common files' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'ring: fix Doxygen comment of internal function' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'bitrate: fix registration to match API description' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'bitrate: fix calculation " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'usertools: fix handling EOF for telemetry input pipe' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'eal/freebsd: lock memory device to prevent conflicts' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'test/mem: fix memory autotests on FreeBSD' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'vhost: clean IOTLB cache on vring stop' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/virtio: fix Tx cleanup functions to have same signature' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/virtio: fix Tx completed mbuf leak on device stop' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/virtio: do not use PMD log type' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/iavf: fix high CPU usage on frequent command' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/ice: fix double free ACL flow entry' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/iavf: fix Rx queue IRQ resource leak' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'common/iavf: fix ARQ " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/ice: retry getting VF VSI map after failure' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/bnxt: fix function driver register/unregister' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/bnxt: fix Tx queue startup state' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/bnxt: fix memzone free for Tx and Rx rings' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/bnxt: fix tunnel port accounting' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/mlx5: fix flow tables double release' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'bus/vmbus: fix leak on device scan' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'test/latency: fix loop boundary' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'raw/ifpga/base: fix linking with librt' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'common/dpaax: fix physical address conversion' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'ethdev: fix xstats by ID API documentation' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/e1000: fix memzone leak on queue re-configure' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/ice: " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/i40e: " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/ixgbe: " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net/hns3: fix input parameters of MAC functions' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'net: fix checksum API documentation' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'eal/windows: fix CPU cores counting' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'eal/windows: do not install virt2phys header' " Xueming Li
2021-11-10  6:29 ` [dpdk-stable] patch 'examples/fips_validation: remove unused allocation' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'examples/fips_validation: fix resetting pointer' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'test/event_crypto: fix event crypto metadata write' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'test/service: fix some comment' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'test/service: fix race in attr check' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'eal/x86: fix some CPU extended features definitions' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'bus/vmbus: fix ring buffer mapping in secondary process' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'eal/freebsd: ignore in-memory option' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'telemetry: fix JSON output buffer length' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'mbuf: fix typo in comment' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'ip_frag: fix fragmenting IPv4 fragment' " Xueming Li
2021-11-10  6:57   ` Huichao Cai
2021-11-10  8:02     ` Xueming(Steven) Li
2021-11-10  6:30 ` [dpdk-stable] patch 'test/atomic: fix 128-bit atomic test with many cores' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'mbuf: enforce no option for dynamic fields and flags' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'mempool: deprecate unused physical page defines' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/crypto-perf: fix AAD template copy overrun' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'cryptodev: fix multi-segment raw vector processing' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'test/bpf: fix undefined behavior with clang' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/af_xdp: disable secondary process support' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/testpmd: update forward engine beginning' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/testpmd: fix txonly forwarding' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/bonding: fix dedicated queue mode in vector burst' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/bonding: fix RSS key length' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/testpmd: retain all original dev conf when config DCB' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/sfc: free MAE lock once switch domain is assigned' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/sfc: update comment about representor support' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e: fix Rx packet statistics' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/ixgbe: fix queue release' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix PHY identifiers for 2.5G and 5G adapters' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix PF reset' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix update link data for X722' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix AOC media type' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix function name in comments' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix potentially uninitialized variables' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e/base: fix using checksum before check' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/mlx5: fix software parsing support query' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/mlx5: fix tunneling " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/enic: fix filter mode detection' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/softnic: fix useless address check' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/testpmd: fix hex string parser in flow commands' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/txgbe: fix to get interrupt status' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'drivers/net: remove queue xstats auto-fill flag' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/ice: fix deadlock on flow redirect' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'doc: fix emulated device names in e1000 guide' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net: fix aliasing in checksum computation' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/ena: fix offload capabilities verification' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/ena: fix per-queue offload capabilities' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/ena: advertise scattered Rx capability' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/testpmd: fix access to DSCP table entries' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/testpmd: add tunnel types' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/mlx5: support more " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/ice: fix generic build on FreeBSD' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/i40e: fix risk in descriptor read in NEON Rx' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'ethdev: forbid closing started device' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'test/hash: fix buffer overflow with jhash' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'mbuf: fix reset on mbuf free' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'app/eventdev: fix terminal colour after control-c exit' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'eventdev/eth_rx: fix WRR buffer overrun' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'bpf: allow self-xor operation' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'devtools: fix letter case check in commit title' " Xueming Li
2021-11-10  6:30 ` [dpdk-stable] patch 'cmdline: free on exit' " Xueming Li
2021-11-10  7:23   ` Peng, ZhihongX [this message]
2021-11-10  8:29     ` Xueming(Steven) Li
2021-11-10  6:30 ` [dpdk-stable] patch 'net/mlx5: fix Rx queue resource cleanup' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/mlx5: close tools socket with last device' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/virtio: fix check scatter on all Rx queues' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'vdpa/mlx5: workaround FW first completion in start' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'vdpa/mlx5: retry VAR allocation during vDPA restart' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'vhost: add sanity check on inflight last index' " Xueming Li
2021-11-10 10:54   ` Li Feng
2021-11-10  6:31 ` [dpdk-stable] patch 'net/virtio: fix indirect descriptor reconnection' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/virtio: fix avail descriptor ID' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'ethdev: fix PCI device release in secondary process' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'app/testpmd: fix packet burst spreading stats' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'test/event: fix timer adapter creation test' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'pipeline: fix instruction label check' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'usertools/pmdinfo: fix plugin auto scan' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'doc: fix default mempool option in guides' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net: avoid cast-align warning in VLAN insert function' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'mbuf: avoid cast-align warning in data offset macro' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal/x86: avoid cast-align warning in memcpy functions' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal: reset lcore task callback and argument' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'hash: fix Doxygen comment of Toeplitz file' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'lpm6: fix buffer overflow' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'rib: fix IPv6 depth mask' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal/windows: fix IOVA mode detection and handling' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'common/mlx5: fix physical port name recognition' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/i40e: fix buffer size alignment' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/i40evf: extend the polling times of vf reset' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'test: fix ring PMD initialisation' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'pipeline: fix build with ASan' " Xueming Li
2021-11-10  7:27   ` Peng, ZhihongX
2021-11-10  8:33     ` Xueming(Steven) Li
2021-11-10  6:31 ` [dpdk-stable] patch 'examples/performance-thread: " Xueming Li
2021-11-10  7:27   ` Peng, ZhihongX
2021-11-10  8:35     ` Xueming(Steven) Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal/freebsd: fix IOVA mode selection' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'test/cmdline: fix memory leak' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'test/mbuf: fix access to freed memory' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal: fix device iterator when no bus is selected' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal/linux: remove unused variable for socket memory' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'eal/linux: fix uevent message parsing' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'malloc: fix allocation with unknown socket ID' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'mem: fix dynamic hugepage mapping in container' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/ice: fix function pointer in multi-process' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/iavf: fix shared data " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'doc: update NIC feature matrix for bnxt' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'app/testpmd: fix RSS key length' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'app/testpmd: fix RSS type display' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/mlx5: fix RSS RETA update' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/virtio: fix link update in speed feature' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/hns3: fix mailbox communication with HW' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/i40e: fix 32-bit build' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/bnxt: fix firmware version query' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/enic: avoid error message when no advanced filtering' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/ice: save rule on switch filter creation' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/ice: fix flow redirect' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/hns3: fix secondary process reference count' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/hns3: fix multi-process action register and unregister' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/hns3: unregister MP action on close for secondary' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'net/txgbe: fix packet statistics' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'test/crypto: fix max length for raw data path' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'crypto/qat: fix status in RSA decryption' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'crypto/qat: fix uncleared cookies after operation' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'examples/fips_validation: fix device start' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'test/compress-perf: remove unused variable' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'examples/ipsec-secgw: move global array from header' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'common/qat: fix queue pairs number' " Xueming Li
2021-11-10  6:31 ` [dpdk-stable] patch 'common/mlx5: fix flex parser DevX creation routine' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'net/mlx5: fix Altivec Rx' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'net/mlx5: fix Rx queue memory allocation return value' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'net/i40e: fix forward outer IPv6 VXLAN' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'ethdev: fix crash on owner delete' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'common/sfc_efx: fix debug compilation control' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'app/testpmd: remove double dependency on bitrate lib' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'common/mlx5: remove unreachable branch in UAR allocation' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'common/mlx5: fix UAR allocation diagnostics messages' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'net/mlx5: remove duplicated reference of Tx doorbell' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'kni: check error code of allmulticast mode switch' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'vfio: fix FreeBSD clear group stub' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'vfio: fix FreeBSD documentation' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'vfio: set errno on unsupported OS' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'interrupt: fix request notifier interrupt processing' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'net/hns3: simplify queue DMA address arithmetic' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'app/testpmd: remove unused header file' " Xueming Li
2021-11-10  6:32 ` [dpdk-stable] patch 'ip_frag: revert fix fragmenting IPv4 fragment' " Xueming Li
2021-11-10  7:09   ` Huichao Cai
2021-11-10  8:38     ` Xueming(Steven) Li
2021-11-28 14:53 ` your patch " Xueming Li
2021-11-28 14:53   ` patch 'common/mlx5: glue MR registration with IOVA' " Xueming Li
2021-11-28 14:53   ` patch 'common/mlx5: create wrapped MR' " Xueming Li
2021-11-28 14:53   ` patch 'vdpa/mlx5: workaround dirty bitmap MR creation' " Xueming Li
2021-11-28 14:53   ` patch 'vdpa/mlx5: workaround guest MR registrations' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: workaround MR creation for flow counter' " Xueming Li
2021-11-28 14:53   ` patch 'power: fix build with clang 13' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix tunnel offload validation' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix tag ID conflict with sample action' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix RETA update without stopping device' " Xueming Li
2021-11-28 14:53   ` patch 'common/mlx5: fix build for zero-length headroom array' " Xueming Li
2021-11-28 14:53   ` patch 'doc: describe timestamp limitations for mlx5' " Xueming Li
2021-11-28 14:53   ` patch 'net/i40e: fix risk in descriptor read in scalar Rx' " Xueming Li
2021-11-28 14:53   ` patch 'net/iavf: fix pointer of meta data' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix Tx scheduling check' " Xueming Li
2021-11-28 14:53   ` patch 'app/testpmd: fix DCB in VT configuration' " Xueming Li
2021-11-28 14:53   ` patch 'ethdev: fix typos' " Xueming Li
2021-11-28 14:53   ` patch 'test/red: fix typo in test description' " Xueming Li
2021-11-28 14:53   ` patch 'net/hinic/base: remove some unused variables' " Xueming Li
2021-11-28 14:53   ` patch 'net/octeontx: remove unused packet length' " Xueming Li
2021-11-28 14:53   ` patch 'bus/fslmc: remove unused device count' " Xueming Li
2021-11-28 14:53   ` patch 'event/sw: remove unused inflight events " Xueming Li
2021-11-28 14:53   ` patch 'net/bnxt: remove some unused variables' " Xueming Li
2021-11-28 14:53   ` patch 'net/liquidio: remove unused counter' " Xueming Li
2021-11-28 14:53   ` patch 'net/nfp: remove unused message length' " Xueming Li
2021-11-28 14:53   ` patch 'net/qede/base: remove unused message size' " Xueming Li
2021-11-28 14:53   ` patch 'net/vmxnet3: fix build with clang 13' " Xueming Li
2021-11-28 14:53   ` patch 'test/distributor: remove unused counter' " Xueming Li
2021-11-28 14:53   ` patch 'examples/performance-thread: remove unused hits count' " Xueming Li
2021-11-28 14:53   ` patch 'eventdev/eth_tx: fix queue delete logic' " Xueming Li
2021-11-28 14:53   ` patch 'event/dlb2: fix delayed pop test in selftest' " Xueming Li
2021-11-28 14:53   ` patch 'test/crypto: skip plain text compare for null cipher' " Xueming Li
2021-11-28 14:53   ` patch 'test/crypto: fix data lengths' " Xueming Li
2021-11-28 14:53   ` patch 'test/crypto: fix missing return checks' " Xueming Li
2021-11-28 14:53   ` patch 'common/cpt: fix KASUMI input length' " Xueming Li
2021-11-28 14:53   ` patch 'test/crypto: remove unnecessary stats retrieval' " Xueming Li
2021-11-28 14:53   ` patch 'examples/l3fwd-power: fix early shutdown' " Xueming Li
2021-11-28 14:53   ` patch 'examples/multi_process: fix Rx packets distribution' " Xueming Li
2021-11-28 14:53   ` patch 'fix spelling in comments and doxygen' " Xueming Li
2021-11-28 14:53   ` patch 'config/x86: skip GNU binutils bug check for LLVM' " Xueming Li
2021-11-28 14:53   ` patch 'examples/ntb: fix build dependency' " Xueming Li
2021-11-28 14:53   ` patch 'app/flow-perf: fix parsing of invalid option' " Xueming Li
2021-11-28 14:53   ` patch 'doc: fix Doxygen examples build on FreeBSD' " Xueming Li
2021-11-28 14:53   ` patch 'vdpa/mlx5: fix mkey creation check' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix VXLAN-GPE next protocol translation' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: add Ethernet header to GENEVE RSS expansion' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix RSS expansion scheme for GRE header' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix GENEVE protocol type translation' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix GRE " Xueming Li
2021-11-28 14:53   ` patch 'net/hns3: optimize Tx performance by mbuf fast free' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix mutex unlock in Tx packet pacing cleanup' " Xueming Li
2021-11-28 14:53   ` patch 'net/bnxt: fix Rx next consumer index in mbuf alloc fail' " Xueming Li
2021-11-28 14:53   ` patch 'net/failsafe: fix secondary process probe' " Xueming Li
2021-11-28 14:53   ` patch 'app/testpmd: fix tunnel offload validation' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix partial inline of fine grain packets' " Xueming Li
2021-11-28 14:53   ` patch 'net/mlx5: fix MPLS tunnel outer layer overwrite' " Xueming Li
2021-11-28 14:54   ` patch 'common/mlx5: fix user mode register access attribute' " Xueming Li
2021-11-28 14:54   ` patch 'crypto/ipsec_mb: fix cipher key setting' " Xueming Li
2021-12-06 12:45     ` Xueming(Steven) Li
2021-11-28 14:54   ` patch 'drivers/crypto: fix IPsec TTL decrement option' " Xueming Li
2021-11-28 14:54   ` patch 'kni: restrict bifurcated device support' " Xueming Li
2021-11-28 14:54   ` patch 'mbuf: fix dump of dynamic fields and flags' " Xueming Li
2021-11-28 14:54   ` patch 'doc: strip build artefacts for examples file list' " Xueming Li
2021-11-28 14:54   ` patch 'examples/ptpclient: fix delay request message' " Xueming Li
2021-11-28 14:54   ` patch 'doc: remove repeated repeated words' " Xueming Li
2021-11-28 14:54   ` patch 'net/bnxt: fix autoneg on PAM4 links' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx5: fix metadata and meter split shared tag' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx4: fix empty Ethernet spec with VLAN' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx5: fix flow mark with sampling and metering' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx5: fix multi-segment packet wraparound' " Xueming Li
2021-11-28 14:54   ` patch 'net/memif: allow stopping and closing device' " Xueming Li
2021-11-28 14:54   ` patch 'doc: fix memif driver acronyms' " Xueming Li
2021-11-28 14:54   ` patch 'app/testpmd: fix hexadecimal parser with odd length' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx5: fix GRE flow item matching' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx5: fix GENEVE and VXLAN-GPE " Xueming Li
2021-11-28 14:54   ` patch 'remove repeated 'the' in the code' " Xueming Li
2021-11-28 14:54   ` patch 'fix PMD wording' " Xueming Li
2021-11-28 14:54   ` patch 'doc: capitalise PMD' " Xueming Li
2021-11-28 14:54   ` patch 'doc: fix typo in coding style' " Xueming Li
2021-11-28 14:54   ` patch 'net/mlx5: fix devargs validation for multi-class probing' " Xueming Li
2021-11-28 14:54   ` patch 'doc: fix a typo in EAL guide' " 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=DM8PR11MB559148D7FC81D907214B20ABF0939@DM8PR11MB5591.namprd11.prod.outlook.com \
    --to=zhihongx.peng@intel.com \
    --cc=bluca@debian.org \
    --cc=dmitry.kozliuk@gmail.com \
    --cc=olivier.matz@6wind.com \
    --cc=stable@dpdk.org \
    --cc=xuemingl@nvidia.com \
    /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).