From: Xueming Li <xuemingl@nvidia.com> To: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com> Cc: Luca Boccassi <bluca@debian.org>, Ciara Power <ciara.power@intel.com>, dpdk stable <stable@dpdk.org> Subject: [dpdk-stable] patch 'telemetry: fix JSON output buffer length' has been queued to stable release 20.11.4 Date: Wed, 10 Nov 2021 14:30:07 +0800 Message-ID: <20211110063216.2744012-124-xuemingl@nvidia.com> (raw) In-Reply-To: <20211110063216.2744012-1-xuemingl@nvidia.com> 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/aa4a2ef3fee892f204a04bef2329e65775510f38 Thanks. Xueming Li <xuemingl@nvidia.com> --- From aa4a2ef3fee892f204a04bef2329e65775510f38 Mon Sep 17 00:00:00 2001 From: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com> Date: Mon, 11 Oct 2021 16:24:43 +0530 Subject: [PATCH] telemetry: fix JSON output buffer length Cc: Xueming Li <xuemingl@nvidia.com> [ upstream commit b76731683b048337d853cca4fa1530218b82aa40 ] Earlier, JSON message length was limited to 1024 which would not allow data more than this size. Removed this limitation by creating output buffer based on requested data length. Fixes: 52af6ccb2b39 ("telemetry: add utility functions for creating JSON") Signed-off-by: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com> Acked-by: Ciara Power <ciara.power@intel.com> --- lib/librte_telemetry/telemetry_json.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/librte_telemetry/telemetry_json.h b/lib/librte_telemetry/telemetry_json.h index ad270b9b30..f02a12f5b0 100644 --- a/lib/librte_telemetry/telemetry_json.h +++ b/lib/librte_telemetry/telemetry_json.h @@ -9,6 +9,7 @@ #include <stdarg.h> #include <stdio.h> #include <rte_common.h> +#include <rte_telemetry.h> /** * @file @@ -23,13 +24,13 @@ * @internal * Copies a value into a buffer if the buffer has enough available space. * Nothing written to buffer if an overflow ocurs. - * This function is not for use for values larger than 1k. + * This function is not for use for values larger than given buffer length. */ __rte_format_printf(3, 4) static inline int __json_snprintf(char *buf, const int len, const char *format, ...) { - char tmp[1024]; + char tmp[len]; va_list ap; int ret; -- 2.33.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2021-11-10 14:17:07.437541909 +0800 +++ 0123-telemetry-fix-JSON-output-buffer-length.patch 2021-11-10 14:17:01.884079315 +0800 @@ -1 +1 @@ -From b76731683b048337d853cca4fa1530218b82aa40 Mon Sep 17 00:00:00 2001 +From aa4a2ef3fee892f204a04bef2329e65775510f38 Mon Sep 17 00:00:00 2001 @@ -4,0 +5,3 @@ +Cc: Xueming Li <xuemingl@nvidia.com> + +[ upstream commit b76731683b048337d853cca4fa1530218b82aa40 ] @@ -11 +13,0 @@ -Cc: stable@dpdk.org @@ -16 +18 @@ - lib/telemetry/telemetry_json.h | 5 +++-- + lib/librte_telemetry/telemetry_json.h | 5 +++-- @@ -19 +21 @@ -diff --git a/lib/telemetry/telemetry_json.h b/lib/telemetry/telemetry_json.h +diff --git a/lib/librte_telemetry/telemetry_json.h b/lib/librte_telemetry/telemetry_json.h @@ -21,2 +23,2 @@ ---- a/lib/telemetry/telemetry_json.h -+++ b/lib/telemetry/telemetry_json.h +--- a/lib/librte_telemetry/telemetry_json.h ++++ b/lib/librte_telemetry/telemetry_json.h
next prev parent reply other threads:[~2021-11-10 6:46 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 ` Xueming Li [this message] 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 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=20211110063216.2744012-124-xuemingl@nvidia.com \ --to=xuemingl@nvidia.com \ --cc=bluca@debian.org \ --cc=ciara.power@intel.com \ --cc=gmuthukrishn@marvell.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
patches for DPDK stable branches This inbox may be cloned and mirrored by anyone: git clone --mirror http://inbox.dpdk.org/stable/0 stable/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 stable stable/ http://inbox.dpdk.org/stable \ stable@dpdk.org public-inbox-index stable Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.stable AGPL code for this site: git clone https://public-inbox.org/public-inbox.git