* |WARNING| pw143995 [PATCH v3 1/7] eal: add static per-lcore memory allocation facility
[not found] <20240912084429.703405-2-mattias.ronnblom@ericsson.com>
@ 2024-09-12 8:54 ` checkpatch
0 siblings, 0 replies; only message in thread
From: checkpatch @ 2024-09-12 8:54 UTC (permalink / raw)
To: test-report; +Cc: Mattias Rönnblom
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/143995
_coding style issues_
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#639: FILE: lib/eal/include/rte_lcore_var.h:219:
+#define RTE_LCORE_VAR_HANDLE_TYPE(type) \
+ type *
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#655: FILE: lib/eal/include/rte_lcore_var.h:235:
+#define RTE_LCORE_VAR_HANDLE(type, name) \
+ RTE_LCORE_VAR_HANDLE_TYPE(type) name
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#663: FILE: lib/eal/include/rte_lcore_var.h:243:
+#define RTE_LCORE_VAR_ALLOC_SIZE_ALIGN(handle, size, align) \
+ handle = rte_lcore_var_alloc(size, align)
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#691: FILE: lib/eal/include/rte_lcore_var.h:271:
+#define RTE_LCORE_VAR_INIT_SIZE_ALIGN(name, size, align) \
+ RTE_INIT(rte_lcore_var_init_ ## name) \
+ { \
+ RTE_LCORE_VAR_ALLOC_SIZE_ALIGN(name, size, align); \
+ }
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#711: FILE: lib/eal/include/rte_lcore_var.h:291:
+#define RTE_LCORE_VAR_INIT(name) \
+ RTE_INIT(rte_lcore_var_init_ ## name) \
+ { \
+ RTE_LCORE_VAR_ALLOC(name); \
+ }
WARNING:TYPO_SPELLING: 'identifer' may be misspelled - perhaps 'identifier'?
#775: FILE: lib/eal/include/rte_lcore_var.h:355:
+ * The pointer returned is only an opaque identifer of the variable. To
total: 5 errors, 1 warnings, 531 lines checked
Please use __rte_cache_aligned only for struct or union types alignment.
^ permalink raw reply [flat|nested] only message in thread