[PATCH 15/32] hash: remove use of RTE STD C11 macro
Tyler Retzlaff
roretzla at linux.microsoft.com
Sat Aug 12 00:22:30 CEST 2023
C11 conformant compiler is documented as a minimum requirement to build
and consume DPDK. Remove use of RTE_STD_C11 macro marking use of C11
features with __extension__ since it is no longer necessary.
Signed-off-by: Tyler Retzlaff <roretzla at linux.microsoft.com>
---
lib/hash/rte_thash.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/lib/hash/rte_thash.h b/lib/hash/rte_thash.h
index 7b1d154..da06cd5 100644
--- a/lib/hash/rte_thash.h
+++ b/lib/hash/rte_thash.h
@@ -73,7 +73,6 @@
struct rte_ipv4_tuple {
uint32_t src_addr;
uint32_t dst_addr;
- RTE_STD_C11
union {
struct {
uint16_t dport;
@@ -91,7 +90,6 @@ struct rte_ipv4_tuple {
struct rte_ipv6_tuple {
uint8_t src_addr[16];
uint8_t dst_addr[16];
- RTE_STD_C11
union {
struct {
uint16_t dport;
--
1.8.3.1
More information about the dev
mailing list