automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw146294 [PATCH dpdk v5 03/17] net: add IPv6 address structure and utils
       [not found] <20241018140553.79789-4-rjarry@redhat.com>
@ 2024-10-18 14:07 ` checkpatch
  0 siblings, 0 replies; only message in thread
From: checkpatch @ 2024-10-18 14:07 UTC (permalink / raw)
  To: test-report; +Cc: Robin Jarry

Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/146294

_coding style issues_


ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#388: FILE: lib/net/rte_ip6.h:160:
+#define RTE_IPV6_U16_SPLIT(x) \
+	(uint8_t)((uint16_t)(x) & UINT16_C(0xff)), \
+	(uint8_t)(((uint16_t)(x) >> 8) & UINT16_C(0xff))

ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#392: FILE: lib/net/rte_ip6.h:164:
+#define RTE_IPV6_U16_SPLIT(x) \
+	(uint8_t)(((uint16_t)(x) >> 8) & UINT16_C(0xff)), \
+	(uint8_t)((uint16_t)(x) & UINT16_C(0xff))

ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#436: FILE: lib/net/rte_ip6.h:208:
+#define RTE_IPV6_ADDR_SPLIT(ip) \
+	((uint8_t)(ip)->a[0]), \
+	((uint8_t)(ip)->a[1]), \
+	((uint8_t)(ip)->a[2]), \
+	((uint8_t)(ip)->a[3]), \
+	((uint8_t)(ip)->a[4]), \
+	((uint8_t)(ip)->a[5]), \
+	((uint8_t)(ip)->a[6]), \
+	((uint8_t)(ip)->a[7]), \
+	((uint8_t)(ip)->a[8]), \
+	((uint8_t)(ip)->a[9]), \
+	((uint8_t)(ip)->a[10]), \
+	((uint8_t)(ip)->a[11]), \
+	((uint8_t)(ip)->a[12]), \
+	((uint8_t)(ip)->a[13]), \
+	((uint8_t)(ip)->a[14]), \
+	((uint8_t)(ip)->a[15])

total: 3 errors, 0 warnings, 361 lines checked

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-10-18 14:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20241018140553.79789-4-rjarry@redhat.com>
2024-10-18 14:07 ` |WARNING| pw146294 [PATCH dpdk v5 03/17] net: add IPv6 address structure and utils checkpatch

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).