|WARNING| pw136893 [RFC v3 1/6] eal: add static per-lcore memory allocation facility
checkpatch at dpdk.org
checkpatch at dpdk.org
Tue Feb 20 09:59:37 CET 2024
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/136893
_coding style issues_
WARNING:TYPO_SPELLING: 'varible' may be misspelled - perhaps 'variable'?
#189: FILE: doc/api/doxy-api-index.md:101:
+ [lcore-varible](@ref rte_lcore_var.h),
WARNING:TYPO_SPELLING: 'endcode' may be misspelled - perhaps 'encode'?
#456: FILE: lib/eal/include/rte_lcore_var.h:146:
+ * ndcode
WARNING:TYPO_SPELLING: 'endcode' may be misspelled - perhaps 'encode'?
#470: FILE: lib/eal/include/rte_lcore_var.h:160:
+ * ndcode
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#537: FILE: lib/eal/include/rte_lcore_var.h:227:
+#define RTE_LCORE_VAR_HANDLE_TYPE(type) \
+ type *
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#553: FILE: lib/eal/include/rte_lcore_var.h:243:
+#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
#559: FILE: lib/eal/include/rte_lcore_var.h:249:
+#define RTE_LCORE_VAR_ALLOC_SIZE_ALIGN(name, size, align) \
+ name = rte_lcore_var_alloc(size, align)
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#566: FILE: lib/eal/include/rte_lcore_var.h:256:
+#define RTE_LCORE_VAR_ALLOC_SIZE(name, size) \
+ name = rte_lcore_var_alloc(size, 0)
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#581: 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
#597: FILE: lib/eal/include/rte_lcore_var.h:287:
+#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'?
#660: FILE: lib/eal/include/rte_lcore_var.h:350:
+ * The pointer returned is only an opaque identifer of the variable. To
total: 6 errors, 4 warnings, 495 lines checked
More information about the test-report
mailing list