* |WARNING| pw123198 [PATCH v9 1/6] eal: trace: add trace point emit for blob
[not found] <20230207063254.401538-2-adwivedi@marvell.com>
@ 2023-02-07 6:37 ` checkpatch
0 siblings, 0 replies; only message in thread
From: checkpatch @ 2023-02-07 6:37 UTC (permalink / raw)
To: test-report; +Cc: Ankur Dwivedi
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/123198
_coding style issues_
WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#256: 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, 142 lines checked
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-02-07 6:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20230207063254.401538-2-adwivedi@marvell.com>
2023-02-07 6:37 ` |WARNING| pw123198 [PATCH v9 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).