automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw122440 [PATCH v7 1/6] eal: trace: add trace point emit for blob
       [not found] <20230123090229.3392071-2-adwivedi@marvell.com>
@ 2023-01-23  9:08 ` checkpatch
  0 siblings, 0 replies; only message in thread
From: checkpatch @ 2023-01-23  9:08 UTC (permalink / raw)
  To: test-report; +Cc: Ankur Dwivedi

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

_coding style issues_


WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#253: FILE: lib/eal/include/rte_trace_point.h:390:
+#define rte_trace_point_emit_blob(in, len) \
+do { \
+	if (unlikely(in == NULL)) \
+		return; \
+	if (len > RTE_TRACE_BLOB_LEN_MAX) \
+		len = RTE_TRACE_BLOB_LEN_MAX; \
+	__rte_trace_point_emit(len, uint8_t); \
+	memcpy(mem, in, len); \
+	memset(RTE_PTR_ADD(mem, len), 0, RTE_TRACE_BLOB_LEN_MAX - len); \
+	mem = RTE_PTR_ADD(mem, RTE_TRACE_BLOB_LEN_MAX); \
+} while (0)

total: 0 errors, 1 warnings, 144 lines checked

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

only message in thread, other threads:[~2023-01-23  9:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230123090229.3392071-2-adwivedi@marvell.com>
2023-01-23  9:08 ` |WARNING| pw122440 [PATCH v7 1/6] eal: trace: add trace point emit for blob 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).