[PATCH v4 07/22] net: stop using variadic argument pack extension
Tyler Retzlaff
roretzla at linux.microsoft.com
Thu Feb 29 20:53:38 CET 2024
Use RTE_LOG_LINE_PREFIX instead of RTE_LOG_LINE in macro expansions
which allow a prefix and arguments to be inserted into the log line
without the need to use the ## args variadic argument pack extension.
Signed-off-by: Tyler Retzlaff <roretzla at linux.microsoft.com>
---
lib/net/rte_net_crc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/net/rte_net_crc.c b/lib/net/rte_net_crc.c
index b401ea3..346c285 100644
--- a/lib/net/rte_net_crc.c
+++ b/lib/net/rte_net_crc.c
@@ -73,8 +73,8 @@
RTE_LOG_REGISTER_DEFAULT(libnet_logtype, INFO);
#define RTE_LOGTYPE_NET libnet_logtype
-#define NET_LOG(level, fmt, args...) \
- RTE_LOG_LINE(level, NET, "%s(): " fmt, __func__, ## args)
+#define NET_LOG(level, ...) \
+ RTE_LOG_LINE_PREFIX(level, NET, "%s(): ", __func__, __VA_ARGS__)
/* Scalar handling */
--
1.8.3.1
More information about the dev
mailing list