From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>,
Bruce Richardson <bruce.richardson@intel.com>,
Konstantin Ananyev <konstantin.ananyev@huawei.com>,
Jerin Jacob <jerinj@marvell.com>,
Kiran Kumar K <kirankumark@marvell.com>,
Nithin Dabilpuram <ndabilpuram@marvell.com>,
Zhirun Yan <yanzhirun_163@163.com>,
Vladimir Medvedkin <vladimir.medvedkin@intel.com>,
Pavan Nikhilesh <pbhagavatula@marvell.com>,
Cristian Dumitrescu <cristian.dumitrescu@intel.com>,
Maxime Coquelin <maxime.coquelin@redhat.com>,
Chenbo Xia <chenbox@nvidia.com>
Subject: [PATCH v2 02/68] lib: add missing include of rte_memcpy.h
Date: Fri, 21 Aug 2026 12:23:57 -0700 [thread overview]
Message-ID: <20260821192646.146382-3-stephen@networkplumber.org> (raw)
In-Reply-To: <20260821192646.146382-1-stephen@networkplumber.org>
These files use rte_memcpy() but relied on rte_memcpy.h being
included indirectly via another header. Add the direct include
so that later patches which remove now-unnecessary includes of
rte_memcpy.h do not break the build.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
lib/eal/x86/include/rte_memcpy.h | 1 +
lib/graph/rte_graph_model_mcore_dispatch.c | 1 +
lib/ipsec/esp_inb.c | 1 +
lib/ipsec/esp_outb.c | 1 +
lib/node/interface_tx_feature.c | 1 +
lib/node/ip4_local.c | 1 +
lib/node/ip4_lookup.c | 1 +
lib/node/ip4_lookup_fib.c | 1 +
lib/node/ip4_reassembly.c | 1 +
lib/node/ip4_rewrite.c | 1 +
lib/node/ip6_lookup.c | 1 +
lib/node/ip6_lookup_fib.c | 1 +
lib/node/ip6_rewrite.c | 1 +
lib/node/pkt_cls.c | 1 +
lib/node/udp4_input.c | 1 +
lib/port/rte_swx_port_source_sink.c | 1 +
lib/vhost/vhost.c | 1 +
lib/vhost/vhost_crypto.c | 1 +
18 files changed, 18 insertions(+)
diff --git a/lib/eal/x86/include/rte_memcpy.h b/lib/eal/x86/include/rte_memcpy.h
index 8ed8c55010..fabd0a286d 100644
--- a/lib/eal/x86/include/rte_memcpy.h
+++ b/lib/eal/x86/include/rte_memcpy.h
@@ -14,6 +14,7 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
+#include <rte_memcpy.h>
#include <rte_vect.h>
#include <rte_common.h>
#include <rte_config.h>
diff --git a/lib/graph/rte_graph_model_mcore_dispatch.c b/lib/graph/rte_graph_model_mcore_dispatch.c
index 706b5469f0..4e42b7e96c 100644
--- a/lib/graph/rte_graph_model_mcore_dispatch.c
+++ b/lib/graph/rte_graph_model_mcore_dispatch.c
@@ -5,6 +5,7 @@
#include "graph_private.h"
#include <eal_export.h>
#include "rte_graph_model_mcore_dispatch.h"
+#include <rte_memcpy.h>
int
graph_sched_wq_create(struct graph *_graph, struct graph *_parent_graph,
diff --git a/lib/ipsec/esp_inb.c b/lib/ipsec/esp_inb.c
index f159bf7460..ca836ec63c 100644
--- a/lib/ipsec/esp_inb.c
+++ b/lib/ipsec/esp_inb.c
@@ -6,6 +6,7 @@
#include <rte_esp.h>
#include <rte_errno.h>
#include <rte_cryptodev.h>
+#include <rte_memcpy.h>
#include "sa.h"
#include "ipsec_sqn.h"
diff --git a/lib/ipsec/esp_outb.c b/lib/ipsec/esp_outb.c
index 617fc52b21..5f4279102f 100644
--- a/lib/ipsec/esp_outb.c
+++ b/lib/ipsec/esp_outb.c
@@ -4,6 +4,7 @@
#include <rte_ipsec.h>
#include <rte_esp.h>
+#include <rte_memcpy.h>
#include <rte_udp.h>
#include <rte_errno.h>
#include <rte_cryptodev.h>
diff --git a/lib/node/interface_tx_feature.c b/lib/node/interface_tx_feature.c
index c8809d5f91..fe2b6800fd 100644
--- a/lib/node/interface_tx_feature.c
+++ b/lib/node/interface_tx_feature.c
@@ -9,6 +9,7 @@
#include <rte_ether.h>
#include <rte_graph_feature_arc_worker.h>
#include <rte_malloc.h>
+#include <rte_memcpy.h>
#include "rte_node_ip4_api.h"
#include "node_private.h"
diff --git a/lib/node/ip4_local.c b/lib/node/ip4_local.c
index 288f9399ff..e9c6607e50 100644
--- a/lib/node/ip4_local.c
+++ b/lib/node/ip4_local.c
@@ -15,6 +15,7 @@
#include <rte_fbk_hash.h>
#include <rte_jhash.h>
#include <rte_hash_crc.h>
+#include <rte_memcpy.h>
#include "rte_node_ip4_api.h"
diff --git a/lib/node/ip4_lookup.c b/lib/node/ip4_lookup.c
index 42db993142..0aeeb203b7 100644
--- a/lib/node/ip4_lookup.c
+++ b/lib/node/ip4_lookup.c
@@ -12,6 +12,7 @@
#include <rte_graph_worker.h>
#include <rte_ip.h>
#include <rte_lpm.h>
+#include <rte_memcpy.h>
#include "rte_node_ip4_api.h"
diff --git a/lib/node/ip4_lookup_fib.c b/lib/node/ip4_lookup_fib.c
index 0857d889fc..f62701c623 100644
--- a/lib/node/ip4_lookup_fib.c
+++ b/lib/node/ip4_lookup_fib.c
@@ -11,6 +11,7 @@
#include <rte_graph.h>
#include <rte_graph_worker.h>
#include <rte_ip.h>
+#include <rte_memcpy.h>
#include "rte_node_ip4_api.h"
diff --git a/lib/node/ip4_reassembly.c b/lib/node/ip4_reassembly.c
index b61ddfd7d1..55c785b400 100644
--- a/lib/node/ip4_reassembly.c
+++ b/lib/node/ip4_reassembly.c
@@ -16,6 +16,7 @@
#include <rte_ip.h>
#include <rte_ip_frag.h>
#include <rte_mbuf.h>
+#include <rte_memcpy.h>
#include <rte_tcp.h>
#include <rte_udp.h>
diff --git a/lib/node/ip4_rewrite.c b/lib/node/ip4_rewrite.c
index 37bc3a511f..7ce95061d2 100644
--- a/lib/node/ip4_rewrite.c
+++ b/lib/node/ip4_rewrite.c
@@ -9,6 +9,7 @@
#include <rte_graph_feature_arc_worker.h>
#include <rte_ip.h>
#include <rte_malloc.h>
+#include <rte_memcpy.h>
#include <rte_vect.h>
#include "rte_node_ip4_api.h"
diff --git a/lib/node/ip6_lookup.c b/lib/node/ip6_lookup.c
index 83c0500c76..5583e27439 100644
--- a/lib/node/ip6_lookup.c
+++ b/lib/node/ip6_lookup.c
@@ -12,6 +12,7 @@
#include <rte_graph_worker.h>
#include <rte_ip.h>
#include <rte_lpm6.h>
+#include <rte_memcpy.h>
#include "rte_node_ip6_api.h"
diff --git a/lib/node/ip6_lookup_fib.c b/lib/node/ip6_lookup_fib.c
index 40c5c753df..600acde535 100644
--- a/lib/node/ip6_lookup_fib.c
+++ b/lib/node/ip6_lookup_fib.c
@@ -11,6 +11,7 @@
#include <rte_graph.h>
#include <rte_graph_worker.h>
#include <rte_ip.h>
+#include <rte_memcpy.h>
#include "rte_node_ip6_api.h"
diff --git a/lib/node/ip6_rewrite.c b/lib/node/ip6_rewrite.c
index d5488e7fa3..debd7a0fc0 100644
--- a/lib/node/ip6_rewrite.c
+++ b/lib/node/ip6_rewrite.c
@@ -9,6 +9,7 @@
#include <rte_graph_worker.h>
#include <rte_ip.h>
#include <rte_malloc.h>
+#include <rte_memcpy.h>
#include <rte_vect.h>
#include "rte_node_ip6_api.h"
diff --git a/lib/node/pkt_cls.c b/lib/node/pkt_cls.c
index ca323ea573..ea257128b5 100644
--- a/lib/node/pkt_cls.c
+++ b/lib/node/pkt_cls.c
@@ -6,6 +6,7 @@
#include <rte_graph.h>
#include <rte_graph_worker.h>
+#include <rte_memcpy.h>
#include "pkt_cls_priv.h"
#include "node_private.h"
diff --git a/lib/node/udp4_input.c b/lib/node/udp4_input.c
index 5a74e28c85..55477dd6df 100644
--- a/lib/node/udp4_input.c
+++ b/lib/node/udp4_input.c
@@ -16,6 +16,7 @@
#include <rte_fbk_hash.h>
#include <rte_jhash.h>
#include <rte_hash_crc.h>
+#include <rte_memcpy.h>
#include "rte_node_udp4_input_api.h"
diff --git a/lib/port/rte_swx_port_source_sink.c b/lib/port/rte_swx_port_source_sink.c
index af8b9ec68d..7ff80fc506 100644
--- a/lib/port/rte_swx_port_source_sink.c
+++ b/lib/port/rte_swx_port_source_sink.c
@@ -13,6 +13,7 @@
#include <rte_common.h>
#include <rte_mbuf.h>
#include <rte_hexdump.h>
+#include <rte_memcpy.h>
#include "rte_swx_port_source_sink.h"
diff --git a/lib/vhost/vhost.c b/lib/vhost/vhost.c
index 7e68b2c3be..18fcbb7708 100644
--- a/lib/vhost/vhost.c
+++ b/lib/vhost/vhost.c
@@ -15,6 +15,7 @@
#include <eal_export.h>
#include <rte_errno.h>
#include <rte_log.h>
+#include <rte_memcpy.h>
#include <rte_memory.h>
#include <rte_malloc.h>
#include <rte_vhost.h>
diff --git a/lib/vhost/vhost_crypto.c b/lib/vhost/vhost_crypto.c
index 648e2d731b..71c6d747b8 100644
--- a/lib/vhost/vhost_crypto.c
+++ b/lib/vhost/vhost_crypto.c
@@ -8,6 +8,7 @@
#include <rte_log.h>
#include <rte_mbuf.h>
#include <rte_cryptodev.h>
+#include <rte_memcpy.h>
#include "iotlb.h"
#include "rte_vhost_crypto.h"
--
2.53.0
next prev parent reply other threads:[~2026-08-21 19:27 UTC|newest]
Thread overview: 146+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-20 5:11 [PATCH 00/61] reduce use of rte_memcpy Stephen Hemminger
2026-08-20 5:11 ` [PATCH 01/61] devtools/cocci: add script to replace fixed size rte_memcpy Stephen Hemminger
2026-08-20 5:11 ` [PATCH 02/61] app/testpmd: replace rte_memcpy with memcpy Stephen Hemminger
2026-08-20 5:11 ` [PATCH 03/61] test: use memcpy instead of rte_memcpy Stephen Hemminger
2026-08-20 6:22 ` Morten Brørup
2026-08-20 16:22 ` Stephen Hemminger
2026-08-21 6:37 ` Morten Brørup
2026-08-20 5:11 ` [PATCH 04/61] app/graph: replace rte_memcpy with memcpy Stephen Hemminger
2026-08-20 5:11 ` [PATCH 05/61] lpm: remove unnecessary include of rte_memcpy.h Stephen Hemminger
2026-08-20 5:11 ` [PATCH 06/61] acl: " Stephen Hemminger
2026-08-20 5:11 ` [PATCH 07/61] drivers/bus: " Stephen Hemminger
2026-08-20 5:11 ` [PATCH 08/61] security: replace fixed size rte_memcpy Stephen Hemminger
2026-08-20 5:11 ` [PATCH 09/61] ethdev: replace use of rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 10/61] net: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 11/61] pdcp: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 12/61] eventdev: replace fixed size rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 13/61] eal: replace rte_memcpy of cpuset Stephen Hemminger
2026-08-20 5:12 ` [PATCH 14/61] cryptodev: replace use of rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 15/61] drivers/raw: use memcpy for fixed size data Stephen Hemminger
2026-08-20 5:12 ` [PATCH 16/61] test-pipeline: replace use of rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 17/61] net/af_xdp: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 18/61] net/avp: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 19/61] net/axgbe: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 20/61] net/bnx2x: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 21/61] net/bnxt: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 22/61] net/bonding: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 23/61] net/cnxk: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 24/61] net/cxgbe: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 25/61] net/dpaa2: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 26/61] net/enic: " Stephen Hemminger
2026-08-20 9:05 ` Hyong Youb Kim (hyonkim)
2026-08-20 5:12 ` [PATCH 27/61] net/failsafe: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 28/61] net/gve: " Stephen Hemminger
2026-08-20 20:42 ` Joshua Washington
2026-08-20 5:12 ` [PATCH 29/61] net/hinic: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 30/61] net/hns3: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 31/61] net/mlx5: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 32/61] net/mvpp2: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 33/61] net/netvsc: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 34/61] net/nfp: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 35/61] net/ngbe: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 36/61] net/ntnic: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 37/61] net/null: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 38/61] net/qede: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 39/61] net/ring: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 40/61] net/sfc: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 41/61] net/txgbe: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 42/61] net/vhost: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 43/61] net/virtio: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 44/61] net/sxe2: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 45/61] net/zxdh: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 46/61] net/memif: use memcpy for fixed size data Stephen Hemminger
2026-08-20 5:12 ` [PATCH 47/61] net/ice: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 48/61] test-bbdev: remove unnecessary include rte_memcpy.h Stephen Hemminger
2026-08-20 5:12 ` [PATCH 49/61] drivers/mempool: use memcpy for fixed size data Stephen Hemminger
2026-08-20 5:12 ` [PATCH 50/61] ml/cnxk: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 51/61] drivers/event: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 52/61] baseband/la12xx: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 53/61] baseband/acc: replace use of rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 54/61] drivers/*/qat: use memcpy for fixed size data Stephen Hemminger
2026-08-20 5:12 ` [PATCH 55/61] hash: replace use of rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 56/61] rib: remove rte_memcpy include Stephen Hemminger
2026-08-20 5:12 ` [PATCH 57/61] pcapng: replace use of rte_memcpy Stephen Hemminger
2026-08-20 5:12 ` [PATCH 58/61] efd: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 59/61] net/xsc: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 60/61] net/pcap: " Stephen Hemminger
2026-08-20 5:12 ` [PATCH 61/61] power: " Stephen Hemminger
2026-08-20 7:31 ` [PATCH 00/61] reduce " Morten Brørup
2026-08-20 8:16 ` Bruce Richardson
2026-08-20 8:46 ` Konstantin Ananyev
2026-08-20 9:03 ` Morten Brørup
2026-08-20 13:07 ` Konstantin Ananyev
2026-08-20 14:00 ` Morten Brørup
2026-08-20 20:13 ` Stephen Hemminger
2026-08-20 20:16 ` Stephen Hemminger
2026-08-20 20:18 ` Stephen Hemminger
2026-08-21 19:23 ` [PATCH v2 00/68] " Stephen Hemminger
2026-08-21 19:23 ` [PATCH v2 01/68] devtools/cocci: add script to replace fixed size rte_memcpy Stephen Hemminger
2026-08-21 19:23 ` Stephen Hemminger [this message]
2026-08-21 19:23 ` [PATCH v2 03/68] net: add missing include of rte_memcpy.h Stephen Hemminger
2026-08-21 19:23 ` [PATCH v2 04/68] crypto: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 05/68] drivers: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 06/68] app: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 07/68] examples: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 08/68] eal: document when to use rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 09/68] app/testpmd: replace rte_memcpy with memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 10/68] test: use memcpy instead of rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 11/68] app/graph: replace rte_memcpy with memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 12/68] lpm: remove unnecessary include of rte_memcpy.h Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 13/68] acl: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 14/68] drivers/bus: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 15/68] security: replace fixed size rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 16/68] ethdev: replace use of rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 17/68] net: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 18/68] pdcp: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 19/68] eventdev: replace fixed size rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 20/68] eal: replace rte_memcpy of cpuset Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 21/68] cryptodev: replace use of rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 22/68] drivers/raw: use memcpy for fixed size data Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 23/68] test-pipeline: replace use of rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 24/68] net/af_xdp: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 25/68] net/avp: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 26/68] net/axgbe: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 27/68] net/bnx2x: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 28/68] net/bnxt: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 29/68] net/bonding: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 30/68] net/cnxk: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 31/68] net/cxgbe: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 32/68] net/dpaa2: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 33/68] net/enic: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 34/68] net/failsafe: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 35/68] net/gve: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 36/68] net/hinic: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 37/68] net/hns3: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 38/68] net/mlx5: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 39/68] net/mvpp2: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 40/68] net/netvsc: " Stephen Hemminger
2026-08-21 20:08 ` [EXTERNAL] " Long Li
2026-08-21 19:24 ` [PATCH v2 41/68] net/nfp: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 42/68] net/ngbe: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 43/68] net/ntnic: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 44/68] net/null: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 45/68] net/qede: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 46/68] net/ring: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 47/68] net/sfc: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 48/68] net/txgbe: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 49/68] net/vhost: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 50/68] net/virtio: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 51/68] net/sxe2: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 52/68] net/zxdh: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 53/68] net/memif: use memcpy for fixed size data Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 54/68] net/ice: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 55/68] test-bbdev: remove unnecessary include rte_memcpy.h Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 56/68] drivers/mempool: use memcpy for fixed size data Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 57/68] ml/cnxk: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 58/68] drivers/event: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 59/68] baseband/la12xx: " Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 60/68] baseband/acc: replace use of rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 61/68] drivers/*/qat: use memcpy for fixed size data Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 62/68] hash: replace use of rte_memcpy Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 63/68] rib: remove rte_memcpy include Stephen Hemminger
2026-08-21 19:24 ` [PATCH v2 64/68] pcapng: replace use of rte_memcpy Stephen Hemminger
2026-08-21 19:25 ` [PATCH v2 65/68] efd: " Stephen Hemminger
2026-08-21 19:25 ` [PATCH v2 66/68] net/xsc: " Stephen Hemminger
2026-08-21 19:25 ` [PATCH v2 67/68] net/pcap: " Stephen Hemminger
2026-08-21 19:25 ` [PATCH v2 68/68] power: " Stephen Hemminger
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=20260821192646.146382-3-stephen@networkplumber.org \
--to=stephen@networkplumber.org \
--cc=bruce.richardson@intel.com \
--cc=chenbox@nvidia.com \
--cc=cristian.dumitrescu@intel.com \
--cc=dev@dpdk.org \
--cc=jerinj@marvell.com \
--cc=kirankumark@marvell.com \
--cc=konstantin.ananyev@huawei.com \
--cc=maxime.coquelin@redhat.com \
--cc=ndabilpuram@marvell.com \
--cc=pbhagavatula@marvell.com \
--cc=vladimir.medvedkin@intel.com \
--cc=yanzhirun_163@163.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