From: Xueming Li <xuemingl@nvidia.com>
To: Ferruh Yigit <ferruh.yigit@amd.com>
Cc: "Xueming Li" <xuemingl@nvidia.com>,
"Morten Brørup" <mb@smartsharesystems.com>,
"Bruce Richardson" <bruce.richardson@intel.com>,
"Andrew Rybchenko" <andrew.rybchenko@oktetlabs.ru>,
"Dariusz Sosnowski" <dsosnowski@nvidia.com>,
"dpdk stable" <stable@dpdk.org>
Subject: patch 'ethdev: convert string initialization' has been queued to stable release 23.11.5
Date: Thu, 26 Jun 2025 20:00:21 +0800 [thread overview]
Message-ID: <20250626120145.27369-2-xuemingl@nvidia.com> (raw)
In-Reply-To: <20250626120145.27369-1-xuemingl@nvidia.com>
Hi,
FYI, your patch has been queued to stable release 23.11.5
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 06/28/25. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Queued patches are on a temporary branch at:
https://git.dpdk.org/dpdk-stable/log/?h=23.11-staging
This queued commit can be viewed at:
https://git.dpdk.org/dpdk-stable/commit/?h=23.11-staging&id=cf180e0602f78bf26fecef356f8359f4274fe61c
Thanks.
Xueming Li <xuemingl@nvidia.com>
---
From cf180e0602f78bf26fecef356f8359f4274fe61c Mon Sep 17 00:00:00 2001
From: Ferruh Yigit <ferruh.yigit@amd.com>
Date: Thu, 3 Oct 2024 21:13:34 -0700
Subject: [PATCH] ethdev: convert string initialization
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: Xueming Li <xuemingl@nvidia.com>
[ upstream commit e0d947a1e6c2f80aa039a4f7082a8aa16797d8b9 ]
gcc 15 experimental [1], with -Wextra flag, gives warning in variable
initialization as string [2].
The warning has a point when initialized variable is intended to use as
string, since assignment is missing the required null terminator for
this case. But warning is useless for our usecase.
In this patch only updated a few instance to show the issue, there are
many instances to fix, if we prefer to go this way.
Other option is to disable warning but it can be useful for actual
string usecases, so I prefer to keep it.
Converted string initialization to array initialization.
[1]
gcc (GCC) 15.0.0 20241003 (experimental)
[2]
../lib/ethdev/rte_flow.h:906:36:
error: initializer-string for array of ‘unsigned char’ is too long
[-Werror=unterminated-string-initialization]
906 | .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
../lib/ethdev/rte_flow.h:907:36:
error: initializer-string for array of ‘unsigned char’ is too long
[-Werror=unterminated-string-initialization]
907 | .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
../lib/ethdev/rte_flow.h:1009:25:
error: initializer-string for array of ‘unsigned char’ is too long
[-Werror=unterminated-string-initialization]
1009 | "\xff\xff\xff\xff\xff\xff\xff\xff"
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../lib/ethdev/rte_flow.h:1012:25:
error: initializer-string for array of ‘unsigned char’ is too long
[-Werror=unterminated-string-initialization]
1012 | "\xff\xff\xff\xff\xff\xff\xff\xff"
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../lib/ethdev/rte_flow.h:1135:20:
error: initializer-string for array of ‘unsigned char’ is too long
[-Werror=unterminated-string-initialization]
1135 | .hdr.vni = "\xff\xff\xff",
| ^~~~~~~~~~~~~~
Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
Acked-by: Morten Brørup <mb@smartsharesystems.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>
---
lib/ethdev/rte_flow.h | 44 ++++++++++++++++++++-----------------------
1 file changed, 20 insertions(+), 24 deletions(-)
diff --git a/lib/ethdev/rte_flow.h b/lib/ethdev/rte_flow.h
index 4cdc1f1d8f..027f46b8b0 100644
--- a/lib/ethdev/rte_flow.h
+++ b/lib/ethdev/rte_flow.h
@@ -883,8 +883,8 @@ struct rte_flow_item_eth {
/** Default mask for RTE_FLOW_ITEM_TYPE_ETH. */
#ifndef __cplusplus
static const struct rte_flow_item_eth rte_flow_item_eth_mask = {
- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
- .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
+ .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
.hdr.ether_type = RTE_BE16(0x0000),
};
#endif
@@ -985,12 +985,10 @@ struct rte_flow_item_ipv6 {
#ifndef __cplusplus
static const struct rte_flow_item_ipv6 rte_flow_item_ipv6_mask = {
.hdr = {
- .src_addr =
- "\xff\xff\xff\xff\xff\xff\xff\xff"
- "\xff\xff\xff\xff\xff\xff\xff\xff",
- .dst_addr =
- "\xff\xff\xff\xff\xff\xff\xff\xff"
- "\xff\xff\xff\xff\xff\xff\xff\xff",
+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
},
};
#endif
@@ -1107,7 +1105,7 @@ struct rte_flow_item_vxlan {
/** Default mask for RTE_FLOW_ITEM_TYPE_VXLAN. */
#ifndef __cplusplus
static const struct rte_flow_item_vxlan rte_flow_item_vxlan_mask = {
- .hdr.vni = "\xff\xff\xff",
+ .hdr.vni = { 0xff, 0xff, 0xff },
};
#endif
@@ -1160,7 +1158,7 @@ struct rte_flow_item_nvgre {
/** Default mask for RTE_FLOW_ITEM_TYPE_NVGRE. */
#ifndef __cplusplus
static const struct rte_flow_item_nvgre rte_flow_item_nvgre_mask = {
- .tni = "\xff\xff\xff",
+ .tni = { 0xff, 0xff, 0xff },
};
#endif
@@ -1180,7 +1178,7 @@ struct rte_flow_item_mpls {
/** Default mask for RTE_FLOW_ITEM_TYPE_MPLS. */
#ifndef __cplusplus
static const struct rte_flow_item_mpls rte_flow_item_mpls_mask = {
- .label_tc_s = "\xff\xff\xf0",
+ .label_tc_s = { 0xff, 0xff, 0xf0 },
};
#endif
@@ -1324,7 +1322,7 @@ struct rte_flow_item_geneve {
/** Default mask for RTE_FLOW_ITEM_TYPE_GENEVE. */
#ifndef __cplusplus
static const struct rte_flow_item_geneve rte_flow_item_geneve_mask = {
- .vni = "\xff\xff\xff",
+ .vni = { 0xff, 0xff, 0xff },
};
#endif
@@ -1353,7 +1351,7 @@ struct rte_flow_item_vxlan_gpe {
/** Default mask for RTE_FLOW_ITEM_TYPE_VXLAN_GPE. */
#ifndef __cplusplus
static const struct rte_flow_item_vxlan_gpe rte_flow_item_vxlan_gpe_mask = {
- .hdr.vni = "\xff\xff\xff",
+ .hdr.vni = { 0xff, 0xff, 0xff },
};
#endif
@@ -1387,9 +1385,9 @@ struct rte_flow_item_arp_eth_ipv4 {
#ifndef __cplusplus
static const struct rte_flow_item_arp_eth_ipv4
rte_flow_item_arp_eth_ipv4_mask = {
- .hdr.arp_data.arp_sha.addr_bytes = "\xff\xff\xff\xff\xff\xff",
+ .hdr.arp_data.arp_sha.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
.hdr.arp_data.arp_sip = RTE_BE32(UINT32_MAX),
- .hdr.arp_data.arp_tha.addr_bytes = "\xff\xff\xff\xff\xff\xff",
+ .hdr.arp_data.arp_tha.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
.hdr.arp_data.arp_tip = RTE_BE32(UINT32_MAX),
};
#endif
@@ -1476,9 +1474,8 @@ struct rte_flow_item_icmp6_nd_ns {
#ifndef __cplusplus
static const
struct rte_flow_item_icmp6_nd_ns rte_flow_item_icmp6_nd_ns_mask = {
- .target_addr =
- "\xff\xff\xff\xff\xff\xff\xff\xff"
- "\xff\xff\xff\xff\xff\xff\xff\xff",
+ .target_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
};
#endif
@@ -1503,9 +1500,8 @@ struct rte_flow_item_icmp6_nd_na {
#ifndef __cplusplus
static const
struct rte_flow_item_icmp6_nd_na rte_flow_item_icmp6_nd_na_mask = {
- .target_addr =
- "\xff\xff\xff\xff\xff\xff\xff\xff"
- "\xff\xff\xff\xff\xff\xff\xff\xff",
+ .target_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
};
#endif
@@ -1554,7 +1550,7 @@ struct rte_flow_item_icmp6_nd_opt_sla_eth {
#ifndef __cplusplus
static const struct rte_flow_item_icmp6_nd_opt_sla_eth
rte_flow_item_icmp6_nd_opt_sla_eth_mask = {
- .sla.addr_bytes = "\xff\xff\xff\xff\xff\xff",
+ .sla.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
};
#endif
@@ -1579,7 +1575,7 @@ struct rte_flow_item_icmp6_nd_opt_tla_eth {
#ifndef __cplusplus
static const struct rte_flow_item_icmp6_nd_opt_tla_eth
rte_flow_item_icmp6_nd_opt_tla_eth_mask = {
- .tla.addr_bytes = "\xff\xff\xff\xff\xff\xff",
+ .tla.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
};
#endif
@@ -2042,7 +2038,7 @@ struct rte_flow_item_ib_bth {
static const struct rte_flow_item_ib_bth rte_flow_item_ib_bth_mask = {
.hdr = {
.opcode = 0xff,
- .dst_qp = "\xff\xff\xff",
+ .dst_qp = { 0xff, 0xff, 0xff },
},
};
#endif
--
2.34.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-06-26 19:59:17.641830433 +0800
+++ 0001-ethdev-convert-string-initialization.patch 2025-06-26 19:59:17.150418054 +0800
@@ -1 +1 @@
-From e0d947a1e6c2f80aa039a4f7082a8aa16797d8b9 Mon Sep 17 00:00:00 2001
+From cf180e0602f78bf26fecef356f8359f4274fe61c Mon Sep 17 00:00:00 2001
@@ -7,0 +8,3 @@
+Cc: Xueming Li <xuemingl@nvidia.com>
+
+[ upstream commit e0d947a1e6c2f80aa039a4f7082a8aa16797d8b9 ]
@@ -63,717 +66,3 @@
- app/test-pmd/cmdline_flow.c | 31 ++++-----
- app/test/test_bpf.c | 2 +-
- app/test/test_pcapng.c | 2 +-
- app/test/test_security_inline_macsec.c | 4 +-
- doc/guides/prog_guide/ethdev/flow_offload.rst | 2 +-
- drivers/net/cxgbe/cxgbe_flow.c | 14 ++--
- drivers/net/dpaa2/dpaa2_flow.c | 14 ++--
- drivers/net/mlx4/mlx4_flow.c | 6 +-
- drivers/net/mlx5/mlx5_flow.c | 20 +++---
- drivers/net/mlx5/mlx5_flow_dv.c | 26 ++++----
- drivers/net/mlx5/mlx5_flow_hw.c | 66 +++++++++----------
- drivers/net/mlx5/mlx5_trigger.c | 20 +++---
- drivers/net/nfp/flower/nfp_flower_flow.c | 14 ++--
- drivers/net/nfp/nfp_net_flow.c | 8 +--
- drivers/net/tap/tap_flow.c | 30 ++++-----
- examples/l2fwd-macsec/main.c | 4 +-
- lib/ethdev/rte_flow.h | 44 ++++++-------
- 17 files changed, 144 insertions(+), 163 deletions(-)
-
-diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
-index b7bcf18311..5451b3a453 100644
---- a/app/test-pmd/cmdline_flow.c
-+++ b/app/test-pmd/cmdline_flow.c
-@@ -898,20 +898,20 @@ struct vxlan_encap_conf vxlan_encap_conf = {
- .select_ipv4 = 1,
- .select_vlan = 0,
- .select_tos_ttl = 0,
-- .vni = "\x00\x00\x00",
-+ .vni = { 0x00, 0x00, 0x00 },
- .udp_src = 0,
- .udp_dst = RTE_BE16(RTE_VXLAN_DEFAULT_PORT),
- .ipv4_src = RTE_IPV4(127, 0, 0, 1),
- .ipv4_dst = RTE_IPV4(255, 255, 255, 255),
-- .ipv6_src = "\x00\x00\x00\x00\x00\x00\x00\x00"
-- "\x00\x00\x00\x00\x00\x00\x00\x01",
-- .ipv6_dst = "\x00\x00\x00\x00\x00\x00\x00\x00"
-- "\x00\x00\x00\x00\x00\x00\x11\x11",
-+ .ipv6_src = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 },
-+ .ipv6_dst = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x11 },
- .vlan_tci = 0,
- .ip_tos = 0,
- .ip_ttl = 255,
-- .eth_src = "\x00\x00\x00\x00\x00\x00",
-- .eth_dst = "\xff\xff\xff\xff\xff\xff",
-+ .eth_src = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .eth_dst = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- };
-
- /** Maximum number of items in struct rte_flow_action_vxlan_encap. */
-@@ -934,16 +934,16 @@ struct action_vxlan_encap_data {
- struct nvgre_encap_conf nvgre_encap_conf = {
- .select_ipv4 = 1,
- .select_vlan = 0,
-- .tni = "\x00\x00\x00",
-+ .tni = { 0x00, 0x00, 0x00 },
- .ipv4_src = RTE_IPV4(127, 0, 0, 1),
- .ipv4_dst = RTE_IPV4(255, 255, 255, 255),
-- .ipv6_src = "\x00\x00\x00\x00\x00\x00\x00\x00"
-- "\x00\x00\x00\x00\x00\x00\x00\x01",
-- .ipv6_dst = "\x00\x00\x00\x00\x00\x00\x00\x00"
-- "\x00\x00\x00\x00\x00\x00\x11\x11",
-+ .ipv6_src = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 },
-+ .ipv6_dst = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x11 },
- .vlan_tci = 0,
-- .eth_src = "\x00\x00\x00\x00\x00\x00",
-- .eth_dst = "\xff\xff\xff\xff\xff\xff",
-+ .eth_src = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .eth_dst = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- };
-
- /** Maximum number of items in struct rte_flow_action_nvgre_encap. */
-@@ -8304,7 +8304,8 @@ parse_prefix(struct context *ctx, const struct token *token,
- void *buf, unsigned int size)
- {
- const struct arg *arg = pop_args(ctx);
-- static const uint8_t conv[] = "\x00\x80\xc0\xe0\xf0\xf8\xfc\xfe\xff";
-+ static const uint8_t conv[] = { 0x00, 0x80, 0xc0, 0xe0, 0xf0,
-+ 0xf8, 0xfc, 0xfe, 0xff };
- char *end;
- uintmax_t u;
- unsigned int bytes;
-diff --git a/app/test/test_bpf.c b/app/test/test_bpf.c
-index 7819d6aba9..90e10d7d2c 100644
---- a/app/test/test_bpf.c
-+++ b/app/test/test_bpf.c
-@@ -3361,7 +3361,7 @@ test_bpf_filter_sanity(pcap_t *pcap)
-
- hdr = rte_pktmbuf_mtod(m, typeof(hdr));
- hdr->eth_hdr = (struct rte_ether_hdr) {
-- .dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .ether_type = rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4),
- };
- hdr->ip_hdr = (struct rte_ipv4_hdr) {
-diff --git a/app/test/test_pcapng.c b/app/test/test_pcapng.c
-index b219873c3a..8f2cff36c3 100644
---- a/app/test/test_pcapng.c
-+++ b/app/test/test_pcapng.c
-@@ -73,7 +73,7 @@ mbuf1_prepare(struct dummy_mbuf *dm, uint32_t plen)
- struct rte_udp_hdr udp;
- } pkt = {
- .eth = {
-- .dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .ether_type = rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4),
- },
- .ip = {
-diff --git a/app/test/test_security_inline_macsec.c b/app/test/test_security_inline_macsec.c
-index f11e9da8c3..c921bf8ebb 100644
---- a/app/test/test_security_inline_macsec.c
-+++ b/app/test/test_security_inline_macsec.c
-@@ -318,8 +318,8 @@ create_default_flow(const struct mcs_test_vector *td, uint16_t portid,
- struct rte_flow *flow;
- struct rte_flow_item_eth eth = { .hdr.ether_type = 0, };
- static const struct rte_flow_item_eth eth_mask = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = RTE_BE16(0x0000),
- };
-
-diff --git a/doc/guides/prog_guide/ethdev/flow_offload.rst b/doc/guides/prog_guide/ethdev/flow_offload.rst
-index 906d6014f5..2d6187ed11 100644
---- a/doc/guides/prog_guide/ethdev/flow_offload.rst
-+++ b/doc/guides/prog_guide/ethdev/flow_offload.rst
-@@ -3865,7 +3865,7 @@ For example, to create a pattern template to match on the destination MAC:
-
- const struct rte_flow_pattern_template_attr attr = {.ingress = 1};
- struct rte_flow_item_eth eth_m = {
-- .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff";
-+ .dst.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
- };
- struct rte_flow_item pattern[] = {
- [0] = {.type = RTE_FLOW_ITEM_TYPE_ETH,
-diff --git a/drivers/net/cxgbe/cxgbe_flow.c b/drivers/net/cxgbe/cxgbe_flow.c
-index f5787c247f..40d21e6944 100644
---- a/drivers/net/cxgbe/cxgbe_flow.c
-+++ b/drivers/net/cxgbe/cxgbe_flow.c
-@@ -889,8 +889,8 @@ static struct chrte_fparse parseitem[] = {
- [RTE_FLOW_ITEM_TYPE_ETH] = {
- .fptr = ch_rte_parsetype_eth,
- .dmask = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0xffff,
- }
- },
-@@ -918,12 +918,10 @@ static struct chrte_fparse parseitem[] = {
- .fptr = ch_rte_parsetype_ipv6,
- .dmask = &(const struct rte_flow_item_ipv6) {
- .hdr = {
-- .src_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .vtc_flow = RTE_BE32(0xff000000),
- },
- },
-diff --git a/drivers/net/dpaa2/dpaa2_flow.c b/drivers/net/dpaa2/dpaa2_flow.c
-index 62e350d736..1b55d8dd17 100644
---- a/drivers/net/dpaa2/dpaa2_flow.c
-+++ b/drivers/net/dpaa2/dpaa2_flow.c
-@@ -100,8 +100,8 @@ enum rte_flow_action_type dpaa2_supported_fs_action_type[] = {
-
- #ifndef __cplusplus
- static const struct rte_flow_item_eth dpaa2_flow_item_eth_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .hdr.ether_type = RTE_BE16(0xffff),
- };
-
-@@ -117,12 +117,10 @@ static const struct rte_flow_item_ipv4 dpaa2_flow_item_ipv4_mask = {
-
- static const struct rte_flow_item_ipv6 dpaa2_flow_item_ipv6_mask = {
- .hdr = {
-- .src_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .proto = 0xff
- },
- };
-diff --git a/drivers/net/mlx4/mlx4_flow.c b/drivers/net/mlx4/mlx4_flow.c
-index 8ef9fd2db4..b520664d95 100644
---- a/drivers/net/mlx4/mlx4_flow.c
-+++ b/drivers/net/mlx4/mlx4_flow.c
-@@ -582,7 +582,7 @@ static const struct mlx4_flow_proc_item mlx4_flow_proc_item_list[] = {
- RTE_FLOW_ITEM_TYPE_IPV4),
- .mask_support = &(const struct rte_flow_item_eth){
- /* Only destination MAC can be matched. */
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- .mask_default = &rte_flow_item_eth_mask,
- .mask_sz = sizeof(struct rte_flow_item_eth),
-@@ -1304,10 +1304,10 @@ mlx4_flow_internal(struct mlx4_priv *priv, struct rte_flow_error *error)
- };
- struct rte_flow_item_eth eth_spec;
- const struct rte_flow_item_eth eth_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- };
- const struct rte_flow_item_eth eth_allmulti = {
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 },
- };
- struct rte_flow_item_vlan vlan_spec;
- const struct rte_flow_item_vlan vlan_mask = {
-diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c
-index 72fb3a55ba..031db8176b 100644
---- a/drivers/net/mlx5/mlx5_flow.c
-+++ b/drivers/net/mlx5/mlx5_flow.c
-@@ -2668,8 +2668,8 @@ mlx5_flow_validate_item_eth(const struct rte_eth_dev *dev,
- {
- const struct rte_flow_item_eth *mask = item->mask;
- const struct rte_flow_item_eth nic_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .hdr.ether_type = RTE_BE16(0xffff),
- .has_vlan = ext_vlan_sup ? 1 : 0,
- };
-@@ -2933,12 +2933,10 @@ mlx5_flow_validate_item_ipv6(const struct rte_eth_dev *dev,
- const struct rte_flow_item_ipv6 *spec = item->spec;
- const struct rte_flow_item_ipv6 nic_mask = {
- .hdr = {
-- .src_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .vtc_flow = RTE_BE32(0xffffffff),
- .proto = 0xff,
- },
-@@ -3163,7 +3161,7 @@ mlx5_flow_validate_item_vxlan(struct rte_eth_dev *dev,
- uint8_t vni[4];
- } id = { .vlan_id = 0, };
- const struct rte_flow_item_vxlan nic_mask = {
-- .hdr.vni = "\xff\xff\xff",
-+ .hdr.vni = { 0xff, 0xff, 0xff },
- .hdr.rsvd1 = 0xff,
- };
- const struct rte_flow_item_vxlan *valid_mask;
-@@ -3249,7 +3247,7 @@ mlx5_flow_validate_item_vxlan_gpe(const struct rte_flow_item *item,
- } id = { .vlan_id = 0, };
-
- struct rte_flow_item_vxlan_gpe nic_mask = {
-- .vni = "\xff\xff\xff",
-+ .vni = { 0xff, 0xff, 0xff },
- .protocol = 0xff,
- .flags = 0xff,
- };
-@@ -3563,7 +3561,7 @@ mlx5_flow_validate_item_geneve(const struct rte_flow_item *item,
- MLX5_GENEVE_OPT_LEN_1 : MLX5_GENEVE_OPT_LEN_0;
- const struct rte_flow_item_geneve nic_mask = {
- .ver_opt_len_o_c_rsvd0 = RTE_BE16(0x3f80),
-- .vni = "\xff\xff\xff",
-+ .vni = { 0xff, 0xff, 0xff },
- .protocol = RTE_BE16(UINT16_MAX),
- };
-
-diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c
-index 89057edbcf..8bcdb3f99e 100644
---- a/drivers/net/mlx5/mlx5_flow_dv.c
-+++ b/drivers/net/mlx5/mlx5_flow_dv.c
-@@ -7697,12 +7697,10 @@ const struct rte_flow_item_ipv4 nic_ipv4_mask = {
-
- const struct rte_flow_item_ipv6 nic_ipv6_mask = {
- .hdr = {
-- .src_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .vtc_flow = RTE_BE32(0xffffffff),
- .proto = 0xff,
- .hop_limits = 0xff,
-@@ -9291,8 +9289,8 @@ flow_dv_translate_item_eth(void *key, const struct rte_flow_item *item,
- const struct rte_flow_item_eth *eth_m;
- const struct rte_flow_item_eth *eth_v;
- const struct rte_flow_item_eth nic_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .hdr.ether_type = RTE_BE16(0xffff),
- .has_vlan = 0,
- };
-@@ -9549,12 +9547,10 @@ flow_dv_translate_item_ipv6(void *key, const struct rte_flow_item *item,
- const struct rte_flow_item_ipv6 *ipv6_v;
- const struct rte_flow_item_ipv6 nic_mask = {
- .hdr = {
-- .src_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .vtc_flow = RTE_BE32(0xffffffff),
- .proto = 0xff,
- .hop_limits = 0xff,
-@@ -10064,7 +10060,7 @@ flow_dv_translate_item_vxlan(struct rte_eth_dev *dev,
- int i;
- struct mlx5_priv *priv = dev->data->dev_private;
- const struct rte_flow_item_vxlan nic_mask = {
-- .hdr.vni = "\xff\xff\xff",
-+ .hdr.vni = { 0xff, 0xff, 0xff },
- .hdr.rsvd1 = 0xff,
- };
-
-diff --git a/drivers/net/mlx5/mlx5_flow_hw.c b/drivers/net/mlx5/mlx5_flow_hw.c
-index d243b59b71..96be742b94 100644
---- a/drivers/net/mlx5/mlx5_flow_hw.c
-+++ b/drivers/net/mlx5/mlx5_flow_hw.c
-@@ -377,67 +377,67 @@ static uint32_t mlx5_hw_act_flag[MLX5_HW_ACTION_FLAG_MAX]
-
- /* Ethernet item spec for promiscuous mode. */
- static const struct rte_flow_item_eth ctrl_rx_eth_promisc_spec = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
- /* Ethernet item mask for promiscuous mode. */
- static const struct rte_flow_item_eth ctrl_rx_eth_promisc_mask = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
- /* Ethernet item spec for all multicast mode. */
- static const struct rte_flow_item_eth ctrl_rx_eth_mcast_spec = {
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
- /* Ethernet item mask for all multicast mode. */
- static const struct rte_flow_item_eth ctrl_rx_eth_mcast_mask = {
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
- /* Ethernet item spec for IPv4 multicast traffic. */
- static const struct rte_flow_item_eth ctrl_rx_eth_ipv4_mcast_spec = {
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x5e\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
- /* Ethernet item mask for IPv4 multicast traffic. */
- static const struct rte_flow_item_eth ctrl_rx_eth_ipv4_mcast_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
- /* Ethernet item spec for IPv6 multicast traffic. */
- static const struct rte_flow_item_eth ctrl_rx_eth_ipv6_mcast_spec = {
-- .hdr.dst_addr.addr_bytes = "\x33\x33\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
- /* Ethernet item mask for IPv6 multicast traffic. */
- static const struct rte_flow_item_eth ctrl_rx_eth_ipv6_mcast_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
- /* Ethernet item mask for unicast traffic. */
- static const struct rte_flow_item_eth ctrl_rx_eth_dmac_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
- /* Ethernet item spec for broadcast. */
- static const struct rte_flow_item_eth ctrl_rx_eth_bcast_spec = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
-@@ -8250,12 +8250,10 @@ const struct rte_flow_item_ipv6 hws_nic_ipv6_mask = {
- .payload_len = RTE_BE16(0xffff),
- .proto = 0xff,
- .hop_limits = 0xff,
-- .src_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr =
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- .has_frag_ext = 1,
- };
-@@ -9936,8 +9934,8 @@ flow_hw_create_tx_default_mreg_copy_pattern_template(struct rte_eth_dev *dev,
- .egress = 1,
- };
- struct rte_flow_item_eth promisc = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
- struct rte_flow_item eth_all[] = {
-@@ -9974,8 +9972,8 @@ flow_hw_create_lacp_rx_pattern_template(struct rte_eth_dev *dev, struct rte_flow
- .ingress = 1,
- };
- struct rte_flow_item_eth lacp_mask = {
-- .dst.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .src.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .dst.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .src.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .type = 0xFFFF,
- };
- struct rte_flow_item eth_all[] = {
-@@ -15476,8 +15474,8 @@ mlx5_flow_hw_create_tx_default_mreg_copy_flow(struct rte_eth_dev *dev)
- {
- struct mlx5_priv *priv = dev->data->dev_private;
- struct rte_flow_item_eth promisc = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
- struct rte_flow_item eth_all[] = {
-@@ -15815,7 +15813,7 @@ __flow_hw_ctrl_flows_unicast(struct rte_eth_dev *dev,
- .type = MLX5_HW_CTRL_FLOW_TYPE_DEFAULT_RX_RSS,
- };
- const struct rte_ether_addr cmp = {
-- .addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- };
- unsigned int i;
-
-@@ -15861,7 +15859,7 @@ __flow_hw_ctrl_flows_unicast_vlan(struct rte_eth_dev *dev,
- .type = MLX5_HW_CTRL_FLOW_TYPE_DEFAULT_RX_RSS,
- };
- const struct rte_ether_addr cmp = {
-- .addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- };
- unsigned int i;
- unsigned int j;
-diff --git a/drivers/net/mlx5/mlx5_trigger.c b/drivers/net/mlx5/mlx5_trigger.c
-index a65a460731..7654f4d2ed 100644
---- a/drivers/net/mlx5/mlx5_trigger.c
-+++ b/drivers/net/mlx5/mlx5_trigger.c
-@@ -1568,23 +1568,23 @@ mlx5_traffic_enable(struct rte_eth_dev *dev)
- {
- struct mlx5_priv *priv = dev->data->dev_private;
- struct rte_flow_item_eth bcast = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- };
- struct rte_flow_item_eth ipv6_multi_spec = {
-- .hdr.dst_addr.addr_bytes = "\x33\x33\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 },
- };
- struct rte_flow_item_eth ipv6_multi_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 },
- };
- struct rte_flow_item_eth unicast = {
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- };
- struct rte_flow_item_eth unicast_mask = {
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- };
- const unsigned int vlan_filter_n = priv->vlan_filter_n;
- const struct rte_ether_addr cmp = {
-- .addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- };
- unsigned int i;
- unsigned int j;
-@@ -1653,8 +1653,8 @@ mlx5_traffic_enable(struct rte_eth_dev *dev)
- return 0;
- if (dev->data->promiscuous) {
- struct rte_flow_item_eth promisc = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
-@@ -1664,8 +1664,8 @@ mlx5_traffic_enable(struct rte_eth_dev *dev)
- }
- if (dev->data->all_multicast) {
- struct rte_flow_item_eth multicast = {
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = 0,
- };
-
-diff --git a/drivers/net/nfp/flower/nfp_flower_flow.c b/drivers/net/nfp/flower/nfp_flower_flow.c
-index 3023e68ae8..e94c7e22e3 100644
---- a/drivers/net/nfp/flower/nfp_flower_flow.c
-+++ b/drivers/net/nfp/flower/nfp_flower_flow.c
-@@ -2504,8 +2504,8 @@ static const struct nfp_flow_item_proc nfp_flow_item_proc_list[] = {
- RTE_FLOW_ITEM_TYPE_IPV6),
- .mask_support = &(const struct rte_flow_item_eth) {
- .hdr = {
-- .dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .ether_type = RTE_BE16(0xffff),
- },
- .has_vlan = 1,
-@@ -2557,10 +2557,10 @@ static const struct nfp_flow_item_proc nfp_flow_item_proc_list[] = {
- .vtc_flow = RTE_BE32(0x0ff00000),
- .proto = 0xff,
- .hop_limits = 0xff,
-- .src_addr = "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr = "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- .has_frag_ext = 1,
- },
-@@ -2618,7 +2618,7 @@ static const struct nfp_flow_item_proc nfp_flow_item_proc_list[] = {
- [RTE_FLOW_ITEM_TYPE_GENEVE] = {
- .next_item = NEXT_ITEM(RTE_FLOW_ITEM_TYPE_ETH),
- .mask_support = &(const struct rte_flow_item_geneve) {
-- .vni = "\xff\xff\xff",
-+ .vni = { 0xff, 0xff, 0xff },
- },
- .mask_default = &rte_flow_item_geneve_mask,
- .mask_sz = sizeof(struct rte_flow_item_geneve),
-diff --git a/drivers/net/nfp/nfp_net_flow.c b/drivers/net/nfp/nfp_net_flow.c
-index 5db4712193..e9f0ce3710 100644
---- a/drivers/net/nfp/nfp_net_flow.c
-+++ b/drivers/net/nfp/nfp_net_flow.c
-@@ -406,10 +406,10 @@ static const struct nfp_net_flow_item_proc nfp_net_flow_item_proc_list[] = {
- .mask_support = &(const struct rte_flow_item_ipv6){
- .hdr = {
- .proto = 0xff,
-- .src_addr = "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- .dst_addr = "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- },
- .mask_default = &rte_flow_item_ipv6_mask,
-diff --git a/drivers/net/tap/tap_flow.c b/drivers/net/tap/tap_flow.c
-index 0a90c0487b..5ae1faf916 100644
---- a/drivers/net/tap/tap_flow.c
-+++ b/drivers/net/tap/tap_flow.c
-@@ -166,8 +166,8 @@ static const struct tap_flow_items tap_flow_items[] = {
- RTE_FLOW_ITEM_TYPE_IPV4,
- RTE_FLOW_ITEM_TYPE_IPV6),
- .mask = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-- .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .hdr.ether_type = -1,
- },
- .mask_sz = sizeof(struct rte_flow_item_eth),
-@@ -209,14 +209,10 @@ static const struct tap_flow_items tap_flow_items[] = {
- RTE_FLOW_ITEM_TYPE_TCP),
- .mask = &(const struct rte_flow_item_ipv6){
- .hdr = {
-- .src_addr = {
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- },
-- .dst_addr = {
-- "\xff\xff\xff\xff\xff\xff\xff\xff"
-- "\xff\xff\xff\xff\xff\xff\xff\xff",
-- },
-+ .src_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
-+ .dst_addr = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- .proto = -1,
- },
- },
-@@ -299,7 +295,7 @@ static struct remote_rule implicit_rte_flows[TAP_REMOTE_MAX_IDX] = {
- .items[0] = {
- .type = RTE_FLOW_ITEM_TYPE_ETH,
- .mask = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- },
- .items[1] = {
-@@ -316,10 +312,10 @@ static struct remote_rule implicit_rte_flows[TAP_REMOTE_MAX_IDX] = {
- .items[0] = {
- .type = RTE_FLOW_ITEM_TYPE_ETH,
- .mask = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- .spec = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
-+ .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
- },
- },
- .items[1] = {
-@@ -336,10 +332,10 @@ static struct remote_rule implicit_rte_flows[TAP_REMOTE_MAX_IDX] = {
- .items[0] = {
- .type = RTE_FLOW_ITEM_TYPE_ETH,
- .mask = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\x33\x33\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 },
- },
- .spec = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\x33\x33\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 },
- },
- },
- .items[1] = {
-@@ -370,10 +366,10 @@ static struct remote_rule implicit_rte_flows[TAP_REMOTE_MAX_IDX] = {
- .items[0] = {
- .type = RTE_FLOW_ITEM_TYPE_ETH,
- .mask = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 },
- },
- .spec = &(const struct rte_flow_item_eth){
-- .hdr.dst_addr.addr_bytes = "\x01\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 },
- },
- },
- .items[1] = {
-diff --git a/examples/l2fwd-macsec/main.c b/examples/l2fwd-macsec/main.c
-index b262d3ba0b..73e32fc197 100644
---- a/examples/l2fwd-macsec/main.c
-+++ b/examples/l2fwd-macsec/main.c
-@@ -512,8 +512,8 @@ create_default_flow(uint16_t portid)
- struct rte_flow *flow;
- struct rte_flow_item_eth eth;
- static const struct rte_flow_item_eth eth_mask = {
-- .hdr.dst_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-- .hdr.src_addr.addr_bytes = "\x00\x00\x00\x00\x00\x00",
-+ .hdr.dst_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
-+ .hdr.src_addr.addr_bytes = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
- .hdr.ether_type = RTE_BE16(0xFFFF),
- };
- int ret;
+ lib/ethdev/rte_flow.h | 44 ++++++++++++++++++++-----------------------
+ 1 file changed, 20 insertions(+), 24 deletions(-)
+
@@ -781 +70 @@
-index a2929438bf..22c5c147d0 100644
+index 4cdc1f1d8f..027f46b8b0 100644
@@ -784 +73 @@
-@@ -903,8 +903,8 @@ struct rte_flow_item_eth {
+@@ -883,8 +883,8 @@ struct rte_flow_item_eth {
@@ -795 +84 @@
-@@ -1005,12 +1005,10 @@ struct rte_flow_item_ipv6 {
+@@ -985,12 +985,10 @@ struct rte_flow_item_ipv6 {
@@ -812 +101 @@
-@@ -1132,7 +1130,7 @@ struct rte_flow_item_vxlan {
+@@ -1107,7 +1105,7 @@ struct rte_flow_item_vxlan {
@@ -821 +110 @@
-@@ -1185,7 +1183,7 @@ struct rte_flow_item_nvgre {
+@@ -1160,7 +1158,7 @@ struct rte_flow_item_nvgre {
@@ -830 +119 @@
-@@ -1205,7 +1203,7 @@ struct rte_flow_item_mpls {
+@@ -1180,7 +1178,7 @@ struct rte_flow_item_mpls {
@@ -839 +128 @@
-@@ -1349,7 +1347,7 @@ struct rte_flow_item_geneve {
+@@ -1324,7 +1322,7 @@ struct rte_flow_item_geneve {
@@ -848,2 +137,2 @@
-@@ -1386,7 +1384,7 @@ struct rte_flow_item_vxlan_gpe {
- */
+@@ -1353,7 +1351,7 @@ struct rte_flow_item_vxlan_gpe {
+ /** Default mask for RTE_FLOW_ITEM_TYPE_VXLAN_GPE. */
@@ -857 +146 @@
-@@ -1420,9 +1418,9 @@ struct rte_flow_item_arp_eth_ipv4 {
+@@ -1387,9 +1385,9 @@ struct rte_flow_item_arp_eth_ipv4 {
@@ -869 +158 @@
-@@ -1509,9 +1507,8 @@ struct rte_flow_item_icmp6_nd_ns {
+@@ -1476,9 +1474,8 @@ struct rte_flow_item_icmp6_nd_ns {
@@ -881 +170 @@
-@@ -1536,9 +1533,8 @@ struct rte_flow_item_icmp6_nd_na {
+@@ -1503,9 +1500,8 @@ struct rte_flow_item_icmp6_nd_na {
@@ -893 +182 @@
-@@ -1587,7 +1583,7 @@ struct rte_flow_item_icmp6_nd_opt_sla_eth {
+@@ -1554,7 +1550,7 @@ struct rte_flow_item_icmp6_nd_opt_sla_eth {
@@ -902 +191 @@
-@@ -1612,7 +1608,7 @@ struct rte_flow_item_icmp6_nd_opt_tla_eth {
+@@ -1579,7 +1575,7 @@ struct rte_flow_item_icmp6_nd_opt_tla_eth {
@@ -911 +200 @@
-@@ -2075,7 +2071,7 @@ struct rte_flow_item_ib_bth {
+@@ -2042,7 +2038,7 @@ struct rte_flow_item_ib_bth {
next prev parent reply other threads:[~2025-06-26 12:02 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-26 12:00 patch " Xueming Li
2025-06-26 12:00 ` Xueming Li [this message]
2025-06-26 12:00 ` patch 'net/fm10k/base: fix compilation warnings' " Xueming Li
2025-06-26 12:00 ` patch 'net/ixgbe/base: correct definition of endianness macro' " Xueming Li
2025-06-26 12:00 ` patch 'net/ixgbe/base: fix compilation warnings' " Xueming Li
2025-06-26 12:00 ` patch 'net/i40e/base: fix unused value " Xueming Li
2025-06-26 12:00 ` patch 'net/i40e/base: fix compiler " Xueming Li
2025-06-26 12:00 ` patch 'acl: fix build with GCC 15 on aarch64' " Xueming Li
2025-06-26 12:00 ` patch 'eal/linux: improve ASLR check' " Xueming Li
2025-06-26 12:00 ` patch 'net/e1000: fix xstats name' " Xueming Li
2025-06-26 12:00 ` patch 'net/e1000: fix EEPROM dump' " Xueming Li
2025-06-26 12:00 ` patch 'net/ixgbe: enable ethertype filter for E610' " Xueming Li
2025-06-26 12:00 ` patch 'net/ixgbe: fix port mask default value in filter' " Xueming Li
2025-06-26 12:00 ` patch 'net/e1000: fix igb Tx queue offloads capability' " Xueming Li
2025-06-26 12:00 ` patch 'net/ice: fix flow creation failure' " Xueming Li
2025-06-26 12:00 ` patch 'vhost: fix wrapping on control virtqueue rings' " Xueming Li
2025-06-26 12:00 ` patch 'vhost/crypto: fix cipher data length' " Xueming Li
2025-06-26 12:00 ` patch 'crypto/virtio: fix cipher data source " Xueming Li
2025-06-26 12:00 ` patch 'app/crypto-perf: fix AAD offset alignment' " Xueming Li
2025-06-26 12:00 ` patch 'crypto/qat: fix out-of-place header bytes in AEAD raw API' " Xueming Li
2025-06-26 12:00 ` patch 'crypto/qat: fix out-of-place chain/cipher/auth headers' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: fix header modify action on group 0' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: validate GTP PSC QFI width' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: fix counter service cleanup on init failure' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5/hws: fix send queue drain on FW WQE destroy' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: remove unsupported flow meter action in HWS' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: fix maximal queue size query' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: fix mark action with shared Rx queue' " Xueming Li
2025-06-26 12:00 ` patch 'net/mlx5: align PF and VF/SF MAC address handling' " Xueming Li
2025-06-26 12:00 ` patch 'net/sfc: fix action order on start failure' " Xueming Li
2025-06-26 12:00 ` patch 'net/nfp: fix crash with null RSS hash key' " Xueming Li
2025-06-26 12:00 ` patch 'net/nfp: fix hash key length logic' " Xueming Li
2025-06-26 12:00 ` patch 'app/testpmd: fix RSS hash key update' " Xueming Li
2025-06-26 12:00 ` patch 'net/af_xdp: fix use after free in zero-copy Tx' " Xueming Li
2025-06-26 12:00 ` patch 'net/hns3: fix integer overflow in interrupt unmap' " Xueming Li
2025-06-26 12:00 ` patch 'net/hns3: fix memory leak on failure' " Xueming Li
2025-06-26 12:00 ` patch 'net/hns3: fix extra wait for link up' " Xueming Li
2025-06-26 12:00 ` patch 'net/hns3: fix memory leak for indirect flow action' " Xueming Li
2025-06-26 12:00 ` patch 'net/hns3: fix interrupt rollback' " Xueming Li
2025-06-26 12:00 ` patch 'net/hns3: fix divide by zero' " Xueming Li
2025-06-26 12:01 ` patch 'net/hns3: fix resources release on reset' " Xueming Li
2025-06-26 12:01 ` patch 'net/nfp: standardize NFD3 Tx descriptor endianness' " Xueming Li
2025-06-26 12:01 ` patch 'net/nfp: standardize NFDk " Xueming Li
2025-06-26 12:01 ` patch 'net/qede: fix use after free' " Xueming Li
2025-06-26 12:01 ` patch 'bus/fslmc: " Xueming Li
2025-06-26 12:01 ` patch 'net/null: fix packet copy' " Xueming Li
2025-06-26 12:01 ` patch 'bus/vmbus: align ring buffer data to page boundary' " Xueming Li
2025-06-26 12:01 ` patch 'bus/vmbus: use Hyper-V page size' " Xueming Li
2025-06-26 12:01 ` patch 'net/netvsc: " Xueming Li
2025-06-26 12:01 ` patch 'net/netvsc: add stats counters from VF' " Xueming Li
2025-06-26 12:01 ` patch 'app/testpmd: relax number of TCs in DCB command' " Xueming Li
2025-06-26 12:01 ` patch 'net/mana: check vendor ID when probing RDMA device' " Xueming Li
2025-06-26 12:01 ` patch 'net/hns3: fix CRC data segment' " Xueming Li
2025-06-26 12:01 ` patch 'net/tap: fix qdisc add failure handling' " Xueming Li
2025-06-26 12:01 ` patch 'net/mlx5: fix VLAN stripping on hairpin queue' " Xueming Li
2025-06-26 12:01 ` patch 'mem: fix lockup on address space shortage' " Xueming Li
2025-06-26 12:01 ` patch 'test/malloc: improve resiliency' " Xueming Li
2025-06-26 12:01 ` patch 'trace: fix overflow in per-lcore trace buffer' " Xueming Li
2025-06-26 12:01 ` patch 'common/cnxk: fix E-tag pattern parsing' " Xueming Li
2025-06-26 12:01 ` patch 'common/cnxk: fix CQ tail drop' " Xueming Li
2025-06-26 12:01 ` patch 'net/cnxk: fix descriptor count update on reconfig' " Xueming Li
2025-06-26 12:01 ` patch 'ethdev: fix error struct in flow configure' " Xueming Li
2025-06-26 12:01 ` patch 'net/ice/base: fix integer overflow' " Xueming Li
2025-06-26 12:01 ` patch 'net/ice/base: fix typo in device ID description' " Xueming Li
2025-06-26 12:01 ` patch 'common/dpaax: fix PDCP key command race condition' " Xueming Li
2025-06-26 12:01 ` patch 'common/dpaax: fix PDCP AES only 12-bit SN' " Xueming Li
2025-06-26 12:01 ` patch 'crypto/dpaa2_sec: fix uninitialized variable' " Xueming Li
2025-06-26 12:01 ` patch 'crypto/virtio: add request check on request side' " Xueming Li
2025-06-26 12:01 ` patch 'crypto/virtio: fix driver cleanup' " Xueming Li
2025-06-26 12:01 ` patch 'crypto/virtio: fix driver ID' " Xueming Li
2025-06-26 12:01 ` patch 'ethdev: keep promiscuous/allmulti value before disabling' " Xueming Li
2025-06-26 12:01 ` patch 'eal: fix return value of lcore role' " Xueming Li
2025-06-26 12:01 ` patch 'eal: warn if no lcore is available' " Xueming Li
2025-06-26 12:01 ` patch 'test/lcore: fix race in per-lcore test' " Xueming Li
2025-06-26 12:01 ` patch 'bus: cleanup device lists' " Xueming Li
2025-06-26 12:01 ` patch 'eal/linux: unregister alarm callback before free' " Xueming Li
2025-06-26 12:01 ` patch 'eal/freebsd: " Xueming Li
2025-06-26 12:01 ` patch 'bus/pci/bsd: fix device existence check' " Xueming Li
2025-06-26 12:01 ` patch 'power/intel_uncore: fix crash closing uninitialized driver' " Xueming Li
2025-06-26 12:01 ` patch 'crypto/qat: fix size calculation for memset' " Xueming Li
2025-06-26 12:01 ` patch 'net/mlx5: avoid setting kernel MTU if not needed' " Xueming Li
2025-06-26 12:01 ` patch 'doc: add kernel options required for mlx5' " Xueming Li
2025-06-26 12:01 ` patch 'net/mlx5: fix hypervisor detection in VLAN workaround' " Xueming Li
2025-06-26 12:01 ` patch 'net/hns3: check requirement for hardware GRO' " Xueming Li
2025-06-26 12:01 ` patch 'net/hns3: allow Tx vector when fast free not enabled' " Xueming Li
2025-06-26 12:01 ` patch 'net/hns3: allow Rx vector mode with VLAN filter' " 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=20250626120145.27369-2-xuemingl@nvidia.com \
--to=xuemingl@nvidia.com \
--cc=andrew.rybchenko@oktetlabs.ru \
--cc=bruce.richardson@intel.com \
--cc=dsosnowski@nvidia.com \
--cc=ferruh.yigit@amd.com \
--cc=mb@smartsharesystems.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).