From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 50D5446492 for ; Thu, 27 Mar 2025 14:50:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4C1E640DD6; Thu, 27 Mar 2025 14:50:07 +0100 (CET) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 430F3402E6 for ; Thu, 27 Mar 2025 14:50:06 +0100 (CET) Received: by dpdk.org (Postfix, from userid 65534) id 561B5123E9B; Thu, 27 Mar 2025 14:49:43 +0100 (CET) Subject: |WARNING| pw152610 [PATCH v5 8/8] eal: rework function versioning macros In-Reply-To: <20250327133638.2983276-9-david.marchand@redhat.com> References: <20250327133638.2983276-9-david.marchand@redhat.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: David Marchand Message-Id: <20250327134943.561B5123E9B@dpdk.org> Date: Thu, 27 Mar 2025 14:49:43 +0100 (CET) X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: automatic DPDK test reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: test-report-bounces@dpdk.org Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/152610 _coding style issues_ ERROR:SPACING: spaces required around that '?' (ctx:VxB) #545: FILE: lib/eal/common/eal_symbol_exports.h:20: + Is "use_function_versioning=true" in meson.build?) ^ ERROR:MULTISTATEMENT_MACRO_USE_DO_WHILE: Macros with multiple statements should be enclosed in a do - while loop #567: FILE: lib/eal/common/eal_symbol_exports.h:42: +#define RTE_VERSION_SYMBOL(ver, type, name, args) VERSIONING_WARN \ +__asm__(".symver " RTE_STR(name) "_v" RTE_STR(ver) ", " RTE_STR(name) "@DPDK_" RTE_STR(ver)); \ +__rte_used type name ## _v ## ver args; \ +type name ## _v ## ver args ERROR:MULTISTATEMENT_MACRO_USE_DO_WHILE: Macros with multiple statements should be enclosed in a do - while loop #577: FILE: lib/eal/common/eal_symbol_exports.h:52: +#define RTE_VERSION_EXPERIMENTAL_SYMBOL(type, name, args) VERSIONING_WARN \ +__asm__(".symver " RTE_STR(name) "_exp, " RTE_STR(name) "@EXPERIMENTAL") \ +__rte_used type name ## _exp args; \ +type name ## _exp args ERROR:MULTISTATEMENT_MACRO_USE_DO_WHILE: Macros with multiple statements should be enclosed in a do - while loop #587: FILE: lib/eal/common/eal_symbol_exports.h:62: +#define RTE_DEFAULT_SYMBOL(ver, type, name, args) VERSIONING_WARN \ +__asm__(".symver " RTE_STR(name) "_v" RTE_STR(ver) ", " RTE_STR(name) "@@DPDK_" RTE_STR(ver)); \ +__rte_used type name ## _v ## ver args; \ +type name ## _v ## ver args ERROR:MULTISTATEMENT_MACRO_USE_DO_WHILE: Macros with multiple statements should be enclosed in a do - while loop #594: FILE: lib/eal/common/eal_symbol_exports.h:69: +#define RTE_VERSION_SYMBOL(ver, type, name, args) VERSIONING_WARN \ +type name ## _v ## ver args; \ +type name ## _v ## ver args ERROR:MULTISTATEMENT_MACRO_USE_DO_WHILE: Macros with multiple statements should be enclosed in a do - while loop #598: FILE: lib/eal/common/eal_symbol_exports.h:73: +#define RTE_VERSION_EXPERIMENTAL_SYMBOL(type, name, args) VERSIONING_WARN \ +type name ## _exp args; \ +type name ## _exp args ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #602: FILE: lib/eal/common/eal_symbol_exports.h:77: +#define RTE_DEFAULT_SYMBOL(ver, type, name, args) VERSIONING_WARN \ +type name args total: 7 errors, 0 warnings, 531 lines checked