|WARNING| pw137415 [RFC v5 1/6] eal: add static per-lcore memory allocation facility

checkpatch at dpdk.org checkpatch at dpdk.org
Wed Feb 28 11:19:23 CET 2024


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

_coding style issues_


WARNING:TYPO_SPELLING: 'consistenly' may be misspelled - perhaps 'consistently'?
#145: 
 * In Doxygen, consistenly use @<cmd> (and not \<cmd>).

WARNING:TYPO_SPELLING: 'convience' may be misspelled - perhaps 'convince'?
#146: 
 * The RTE_LCORE_VAR_GET() and SET() convience access macros

WARNING:TYPO_SPELLING: 'varible' may be misspelled - perhaps 'variable'?
#217: FILE: doc/api/doxy-api-index.md:102:
+  [lcore-varible](@ref rte_lcore_var.h),

ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#538: FILE: lib/eal/include/rte_lcore_var.h:214:
+#define RTE_LCORE_VAR_HANDLE_TYPE(type)		\
+	type *

ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#554: FILE: lib/eal/include/rte_lcore_var.h:230:
+#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
#560: FILE: lib/eal/include/rte_lcore_var.h:236:
+#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
#582: FILE: lib/eal/include/rte_lcore_var.h:258:
+#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
#598: FILE: lib/eal/include/rte_lcore_var.h:274:
+#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'?
#662: FILE: lib/eal/include/rte_lcore_var.h:338:
+ * The pointer returned is only an opaque identifer of the variable. To

total: 5 errors, 4 warnings, 474 lines checked


More information about the test-report mailing list