patches for DPDK stable branches
 help / color / mirror / Atom feed
From: christian.ehrhardt@canonical.com
To: Lance Richardson <lance.richardson@broadcom.com>
Cc: Ferruh Yigit <ferruh.yigit@intel.com>,
	Olivier Matz <olivier.matz@6wind.com>,
	dpdk stable <stable@dpdk.org>
Subject: patch 'net: fix checksum API documentation' has been queued to stable release 19.11.11
Date: Tue, 30 Nov 2021 17:34:23 +0100	[thread overview]
Message-ID: <20211130163605.2460997-59-christian.ehrhardt@canonical.com> (raw)
In-Reply-To: <20211130163605.2460997-1-christian.ehrhardt@canonical.com>

Hi,

FYI, your patch has been queued to stable release 19.11.11

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before December 10th 2021. 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/cpaelzer/dpdk-stable-queue

This queued commit can be viewed at:
https://github.com/cpaelzer/dpdk-stable-queue/commit/0b9f46c0b78feacbbcfba8a1417f6926d83dd5aa

Thanks.

Christian Ehrhardt <christian.ehrhardt@canonical.com>

---
From 0b9f46c0b78feacbbcfba8a1417f6926d83dd5aa Mon Sep 17 00:00:00 2001
From: Lance Richardson <lance.richardson@broadcom.com>
Date: Tue, 21 Sep 2021 10:59:24 -0400
Subject: [PATCH] net: fix checksum API documentation

[ upstream commit dc954ae73aab9aaf45b8d5ce42f4490773dd1fab ]

Minor corrections and improvements to documentation
for checksum APIs.

Fixes: 6006818cfb26 ("net: new checksum functions")
Fixes: 45a08ef55e44 ("net: introduce functions to verify L4 checksums")

Signed-off-by: Lance Richardson <lance.richardson@broadcom.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
---
 lib/librte_net/rte_ip.h | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/lib/librte_net/rte_ip.h b/lib/librte_net/rte_ip.h
index f03db05e18..cedfd27ac1 100644
--- a/lib/librte_net/rte_ip.h
+++ b/lib/librte_net/rte_ip.h
@@ -322,15 +322,14 @@ rte_ipv4_phdr_cksum(const struct rte_ipv4_hdr *ipv4_hdr, uint64_t ol_flags)
 /**
  * Process the IPv4 UDP or TCP checksum.
  *
- * The IPv4 header should not contains options. The IP and layer 4
- * checksum must be set to 0 in the packet by the caller.
+ * The layer 4 checksum must be set to 0 in the L4 header by the caller.
  *
  * @param ipv4_hdr
  *   The pointer to the contiguous IPv4 header.
  * @param l4_hdr
  *   The pointer to the beginning of the L4 header.
  * @return
- *   The complemented checksum to set in the IP packet.
+ *   The complemented checksum to set in the L4 header.
  */
 static inline uint16_t
 rte_ipv4_udptcp_cksum(const struct rte_ipv4_hdr *ipv4_hdr, const void *l4_hdr)
@@ -423,15 +422,15 @@ rte_ipv6_phdr_cksum(const struct rte_ipv6_hdr *ipv6_hdr, uint64_t ol_flags)
 /**
  * Process the IPv6 UDP or TCP checksum.
  *
- * The IPv4 header should not contains options. The layer 4 checksum
- * must be set to 0 in the packet by the caller.
+ * The IPv6 header must not be followed by extension headers. The layer 4
+ * checksum must be set to 0 in the L4 header by the caller.
  *
  * @param ipv6_hdr
  *   The pointer to the contiguous IPv6 header.
  * @param l4_hdr
  *   The pointer to the beginning of the L4 header.
  * @return
- *   The complemented checksum to set in the IP packet.
+ *   The complemented checksum to set in the L4 header.
  */
 static inline uint16_t
 rte_ipv6_udptcp_cksum(const struct rte_ipv6_hdr *ipv6_hdr, const void *l4_hdr)
-- 
2.34.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2021-11-30 16:50:09.442171659 +0100
+++ 0059-net-fix-checksum-API-documentation.patch	2021-11-30 16:50:05.726873060 +0100
@@ -1 +1 @@
-From dc954ae73aab9aaf45b8d5ce42f4490773dd1fab Mon Sep 17 00:00:00 2001
+From 0b9f46c0b78feacbbcfba8a1417f6926d83dd5aa Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit dc954ae73aab9aaf45b8d5ce42f4490773dd1fab ]
+
@@ -11 +12,0 @@
-Cc: stable@dpdk.org
@@ -17,2 +18,2 @@
- lib/net/rte_ip.h | 13 ++++++-------
- 1 file changed, 6 insertions(+), 7 deletions(-)
+ lib/librte_net/rte_ip.h | 11 +++++------
+ 1 file changed, 5 insertions(+), 6 deletions(-)
@@ -20,5 +21,5 @@
-diff --git a/lib/net/rte_ip.h b/lib/net/rte_ip.h
-index bbd8650962..b3d45e85db 100644
---- a/lib/net/rte_ip.h
-+++ b/lib/net/rte_ip.h
-@@ -372,15 +372,14 @@ __rte_ipv4_udptcp_cksum(const struct rte_ipv4_hdr *ipv4_hdr, const void *l4_hdr)
+diff --git a/lib/librte_net/rte_ip.h b/lib/librte_net/rte_ip.h
+index f03db05e18..cedfd27ac1 100644
+--- a/lib/librte_net/rte_ip.h
++++ b/lib/librte_net/rte_ip.h
+@@ -322,15 +322,14 @@ rte_ipv4_phdr_cksum(const struct rte_ipv4_hdr *ipv4_hdr, uint64_t ol_flags)
@@ -28,2 +29,2 @@
-- * The IP and layer 4 checksum must be set to 0 in the packet by
-- * the caller.
+- * The IPv4 header should not contains options. The IP and layer 4
+- * checksum must be set to 0 in the packet by the caller.
@@ -42,10 +43 @@
-@@ -489,7 +488,7 @@ rte_ipv6_phdr_cksum(const struct rte_ipv6_hdr *ipv6_hdr, uint64_t ol_flags)
- }
- 
- /**
-- * @internal Calculate the non-complemented IPv4 L4 checksum
-+ * @internal Calculate the non-complemented IPv6 L4 checksum
-  */
- static inline uint16_t
- __rte_ipv6_udptcp_cksum(const struct rte_ipv6_hdr *ipv6_hdr, const void *l4_hdr)
-@@ -510,15 +509,15 @@ __rte_ipv6_udptcp_cksum(const struct rte_ipv6_hdr *ipv6_hdr, const void *l4_hdr)
+@@ -423,15 +422,15 @@ rte_ipv6_phdr_cksum(const struct rte_ipv6_hdr *ipv6_hdr, uint64_t ol_flags)

  parent reply	other threads:[~2021-11-30 16:39 UTC|newest]

Thread overview: 162+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-30 16:33 patch 'net/i40e: support 25G AOC/ACC cables' " christian.ehrhardt
2021-11-30 16:33 ` patch 'test/power: fix CPU frequency when turbo enabled' " christian.ehrhardt
2021-11-30 16:33 ` patch 'examples/performance-thread: fix build with clang 12.0.1' " christian.ehrhardt
2021-11-30 16:33 ` patch 'drivers/net: fix typo in vector Rx comment' " christian.ehrhardt
2021-11-30 16:33 ` patch 'drivers/net: fix vector Rx comments' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/ice/base: fix typo in comment' " christian.ehrhardt
2021-11-30 16:33 ` patch 'app/testpmd: fix Tx retry in flowgen engine' " christian.ehrhardt
2021-11-30 16:33 ` patch 'app/testpmd: fix check without outer checksum' " christian.ehrhardt
2021-11-30 16:33 ` patch 'app/testpmd: fix dump of Tx offload flags' " christian.ehrhardt
2021-11-30 16:33 ` patch 'eal/ppc: ignore GCC 10 stringop-overflow warnings' " christian.ehrhardt
2021-11-30 16:33 ` patch 'config/ppc: ignore GCC 11 psabi " christian.ehrhardt
2021-11-30 16:33 ` patch 'crypto/openssl: fix CCM processing 0 length source' " christian.ehrhardt
2021-11-30 16:33 ` patch 'common/dpaax/caamflib: fix IV for short MAC-I in SNOW3G' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/nfp: fix minimum descriptor sizes' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/iavf: fix overflow in maximum packet length config' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/ixgbe: fix Rx multicast statistics after reset' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/bnxt: fix ring group free' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/bnxt: fix double allocation of ring groups' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/axgbe: fix unreleased lock in I2C transfer' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/pcap: fix resource leakage on port probe' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/ixgbe: fix hash handle leak' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/ixgbe: fix queue resource " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/ixgbe: fix MAC " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/ixgbe: fix mbuf " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/qede: fix minsize build' " christian.ehrhardt
2021-11-30 16:33 ` patch 'examples/service_cores: fix lcore count check' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/virtio: fix mbuf count on Rx queue setup' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/virtio: avoid unneeded link interrupt configuration' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/virtio-user: fix Rx interrupts with multi-queue' " christian.ehrhardt
2021-11-30 16:33 ` patch 'vhost: log socket path on adding connection' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/octeontx2: fix MTU when PTP is enabled' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/i40e: fix mbuf leak' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/i40e: fix device startup resource release' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/iavf: fix mbuf leak' " christian.ehrhardt
2021-11-30 16:33 ` patch 'net/i40e/base: fix resource leakage' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/iavf: fix Rx queue buffer size alignment' " christian.ehrhardt
2021-11-30 16:34 ` patch 'doc: fix numbers power of 2 in LPM6 guide' " christian.ehrhardt
2021-11-30 16:34 ` patch 'stack: fix reload head when pop fails' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/compress: fix buffer overflow' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/memif: fix chained mbuf determination' " christian.ehrhardt
2021-11-30 16:34 ` patch 'ring: fix Doxygen comment of internal function' " christian.ehrhardt
2021-11-30 16:34 ` patch 'bitrate: fix registration to match API description' " christian.ehrhardt
2021-11-30 16:34 ` patch 'bitrate: fix calculation " christian.ehrhardt
2021-11-30 16:34 ` patch 'efd: allow more CPU sockets in table creation' " christian.ehrhardt
2021-11-30 16:34 ` patch 'eal/freebsd: lock memory device to prevent conflicts' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/mem: fix memory autotests on FreeBSD' " christian.ehrhardt
2021-11-30 16:34 ` patch 'vhost: clean IOTLB cache on vring stop' " christian.ehrhardt
2021-11-30 16:34 ` patch 'common/iavf: fix ARQ resource leak' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/bnxt: fix function driver register/unregister' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/bnxt: fix Tx queue startup state' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/bnxt: fix memzone free for Tx and Rx rings' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/bnxt: fix tunnel port accounting' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/mlx5: fix flow tables double release' " christian.ehrhardt
2021-11-30 16:34 ` patch 'bus/vmbus: fix leak on device scan' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/latency: fix loop boundary' " christian.ehrhardt
2021-11-30 16:34 ` patch 'common/dpaax: fix physical address conversion' " christian.ehrhardt
2021-11-30 16:34 ` patch 'ethdev: fix xstats by ID API documentation' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/hns3: fix input parameters of MAC functions' " christian.ehrhardt
2021-11-30 16:34 ` christian.ehrhardt [this message]
2021-11-30 16:34 ` patch 'examples/fips_validation: remove unused allocation' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/event_crypto: fix event crypto metadata write' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/service: fix some comment' " christian.ehrhardt
2021-11-30 16:34 ` patch 'eal/x86: fix some CPU extended features definitions' " christian.ehrhardt
2021-11-30 16:34 ` patch 'bus/vmbus: fix ring buffer mapping in secondary process' " christian.ehrhardt
2021-11-30 16:34 ` patch 'eal/freebsd: ignore in-memory option' " christian.ehrhardt
2021-11-30 16:34 ` patch 'mbuf: fix typo in comment' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/atomic: fix 128-bit atomic test with many cores' " christian.ehrhardt
2021-11-30 16:34 ` patch 'mbuf: enforce no option for dynamic fields and flags' " christian.ehrhardt
2021-11-30 16:34 ` patch 'app/crypto-perf: fix AAD template copy overrun' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/bpf: fix undefined behavior with clang' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/af_xdp: disable secondary process support' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/bonding: fix dedicated queue mode in vector burst' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/bonding: fix RSS key length' " christian.ehrhardt
2021-11-30 16:34 ` patch 'app/testpmd: retain all original dev conf when config DCB' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e: fix Rx packet statistics' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/ixgbe: fix queue release' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix PHY identifiers for 2.5G and 5G adapters' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix PF reset' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix update link data for X722' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix AOC media type' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix function name in comments' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix potentially uninitialized variables' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/i40e/base: fix using checksum before check' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/enic: fix filter mode detection' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net/softnic: fix useless address check' " christian.ehrhardt
2021-11-30 16:34 ` patch 'app/testpmd: fix hex string parser in flow commands' " christian.ehrhardt
2021-11-30 16:34 ` patch 'doc: fix emulated device names in e1000 guide' " christian.ehrhardt
2021-11-30 16:34 ` patch 'net: fix aliasing in checksum computation' " christian.ehrhardt
2021-11-30 16:34 ` patch 'app/testpmd: fix access to DSCP table entries' " christian.ehrhardt
2021-11-30 16:34 ` patch 'app/eventdev: fix terminal colour after control-c exit' " christian.ehrhardt
2021-11-30 16:34 ` patch 'eventdev/eth_rx: fix WRR buffer overrun' " christian.ehrhardt
2021-11-30 16:34 ` patch 'bpf: allow self-xor operation' " christian.ehrhardt
2021-11-30 16:34 ` patch 'vhost: add sanity check on inflight last index' " christian.ehrhardt
2021-11-30 16:34 ` patch 'ethdev: fix PCI device release in secondary process' " christian.ehrhardt
2021-11-30 16:34 ` patch 'test/event: fix timer adapter creation test' " christian.ehrhardt
2021-11-30 16:35 ` patch 'kni: fix build for SLES15-SP3' " christian.ehrhardt
2021-11-30 16:35 ` patch 'doc: fix default mempool option in guides' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net: avoid cast-align warning in VLAN insert function' " christian.ehrhardt
2021-11-30 16:35 ` patch 'mbuf: avoid cast-align warning in data offset macro' " christian.ehrhardt
2021-11-30 16:35 ` patch 'eal/x86: avoid cast-align warning in memcpy functions' " christian.ehrhardt
2021-11-30 16:35 ` patch 'eal: reset lcore task callback and argument' " christian.ehrhardt
2021-11-30 16:35 ` patch 'hash: fix Doxygen comment of Toeplitz file' " christian.ehrhardt
2021-11-30 16:35 ` patch 'lpm6: fix buffer overflow' " christian.ehrhardt
2021-11-30 16:35 ` patch 'rib: fix IPv6 depth mask' " christian.ehrhardt
2021-11-30 16:35 ` patch 'test: fix ring PMD initialisation' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/performance-thread: fix build with ASan' " christian.ehrhardt
2021-12-01  1:44   ` Peng, ZhihongX
2021-11-30 16:35 ` patch 'eal: fix device iterator when no bus is selected' " christian.ehrhardt
2021-11-30 16:35 ` patch 'eal/linux: remove unused variable for socket memory' " christian.ehrhardt
2021-11-30 16:35 ` patch 'eal/linux: fix uevent message parsing' " christian.ehrhardt
2021-11-30 16:35 ` patch 'mem: fix dynamic hugepage mapping in container' " christian.ehrhardt
2021-11-30 16:35 ` patch 'app/testpmd: fix RSS key length' " christian.ehrhardt
2021-11-30 16:35 ` patch 'app/testpmd: fix RSS type display' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/mlx5: fix RSS RETA update' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/i40e: fix 32-bit build' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/bnxt: fix firmware version query' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/enic: avoid error message when no advanced filtering' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/ice: save rule on switch filter creation' " christian.ehrhardt
2021-11-30 16:35 ` patch 'crypto/qat: fix status in RSA decryption' " christian.ehrhardt
2021-11-30 16:35 ` patch 'crypto/qat: fix uncleared cookies after operation' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/fips_validation: fix device start' " christian.ehrhardt
2021-11-30 16:35 ` patch 'common/qat: fix queue pairs number' " christian.ehrhardt
2021-11-30 16:35 ` patch 'ethdev: fix crash on owner delete' " christian.ehrhardt
2021-11-30 16:35 ` patch 'kni: check error code of allmulticast mode switch' " christian.ehrhardt
2021-11-30 16:35 ` patch 'vfio: fix FreeBSD clear group stub' " christian.ehrhardt
2021-11-30 16:35 ` patch 'vfio: fix FreeBSD documentation' " christian.ehrhardt
2021-11-30 16:35 ` patch 'interrupt: fix request notifier interrupt processing' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/hns3: simplify queue DMA address arithmetic' " christian.ehrhardt
2021-11-30 16:35 ` patch 'app/testpmd: remove unused header file' " christian.ehrhardt
2021-11-30 16:35 ` patch 'power: fix build with clang 13' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/mlx5: fix RETA update without stopping device' " christian.ehrhardt
2021-11-30 16:35 ` patch 'doc: describe timestamp limitations for mlx5' " christian.ehrhardt
2021-11-30 16:35 ` patch 'test/red: fix typo in test description' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/hinic/base: remove some unused variables' " christian.ehrhardt
2021-11-30 16:35 ` patch 'bus/fslmc: remove unused device count' " christian.ehrhardt
2021-11-30 16:35 ` patch 'event/sw: remove unused inflight events " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/liquidio: remove unused counter' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/qede/base: remove unused message size' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/vmxnet3: fix build with clang 13' " christian.ehrhardt
2021-11-30 16:35 ` patch 'test/distributor: remove unused counter' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/performance-thread: remove unused hits count' " christian.ehrhardt
2021-11-30 16:35 ` patch 'eventdev/eth_tx: fix queue delete logic' " christian.ehrhardt
2021-11-30 16:35 ` patch 'test/crypto: skip plain text compare for null cipher' " christian.ehrhardt
2021-11-30 16:35 ` patch 'test/crypto: fix data lengths' " christian.ehrhardt
2021-11-30 16:35 ` patch 'common/cpt: fix KASUMI input length' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/l3fwd-power: fix early shutdown' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/multi_process: fix Rx packets distribution' " christian.ehrhardt
2021-11-30 16:35 ` patch 'fix spelling in comments and doxygen' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/ntb: fix build dependency' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/mlx5: fix RSS expansion scheme for GRE header' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/failsafe: fix secondary process probe' " christian.ehrhardt
2021-11-30 16:35 ` patch 'net/mlx5: fix MPLS tunnel outer layer overwrite' " christian.ehrhardt
2021-11-30 16:35 ` patch 'drivers/crypto: fix IPsec TTL decrement option' " christian.ehrhardt
2021-11-30 16:35 ` patch 'mbuf: fix dump of dynamic fields and flags' " christian.ehrhardt
2021-11-30 16:35 ` patch 'doc: strip build artefacts for examples file list' " christian.ehrhardt
2021-11-30 16:35 ` patch 'examples/ptpclient: fix delay request message' " christian.ehrhardt
2021-11-30 16:36 ` patch 'doc: remove repeated repeated words' " christian.ehrhardt
2021-11-30 16:36 ` patch 'net/mlx5: fix metadata and meter split shared tag' " christian.ehrhardt
2021-11-30 16:36 ` patch 'net/mlx4: fix empty Ethernet spec with VLAN' " christian.ehrhardt
2021-11-30 16:36 ` patch 'app/testpmd: fix hexadecimal parser with odd length' " christian.ehrhardt
2021-11-30 16:36 ` patch 'remove repeated 'the' in the code' " christian.ehrhardt
2021-11-30 16:36 ` patch 'doc: fix typo in coding style' " christian.ehrhardt

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=20211130163605.2460997-59-christian.ehrhardt@canonical.com \
    --to=christian.ehrhardt@canonical.com \
    --cc=ferruh.yigit@intel.com \
    --cc=lance.richardson@broadcom.com \
    --cc=olivier.matz@6wind.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).