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 17B75A0558 for ; Tue, 16 Feb 2021 16:14:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1306C16075C; Tue, 16 Feb 2021 16:14:37 +0100 (CET) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mails.dpdk.org (Postfix) with ESMTP id 7866C160753 for ; Tue, 16 Feb 2021 16:14:35 +0100 (CET) Received: by dpdk.org (Postfix, from userid 1017) id 5B7339E3; Tue, 16 Feb 2021 16:14:35 +0100 (CET) In-Reply-To: <20210216151329.290332-1-bruce.richardson@intel.com> References: <20210216151329.290332-1-bruce.richardson@intel.com> To: test-report@dpdk.org Cc: Bruce Richardson Message-Id: <20210216151435.5B7339E3@dpdk.org> Date: Tue, 16 Feb 2021 16:14:35 +0100 (CET) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw87933 [PATCH v2] eal: fix querying DPDK version at runtime 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 Sender: "test-report" Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/87933 _coding style issues_ ERROR:OPEN_BRACE: open brace '{' following function definitions go on the next line #136: FILE: lib/librte_eal/common/rte_version.c:7: +const char * +rte_version_prefix(void) { return RTE_VER_PREFIX; } ERROR:OPEN_BRACE: open brace '{' following function definitions go on the next line #139: FILE: lib/librte_eal/common/rte_version.c:10: +unsigned int +rte_version_year(void) { return RTE_VER_YEAR; } ERROR:OPEN_BRACE: open brace '{' following function definitions go on the next line #142: FILE: lib/librte_eal/common/rte_version.c:13: +unsigned int +rte_version_month(void) { return RTE_VER_MONTH; } ERROR:OPEN_BRACE: open brace '{' following function definitions go on the next line #145: FILE: lib/librte_eal/common/rte_version.c:16: +unsigned int +rte_version_minor(void) { return RTE_VER_MINOR; } ERROR:OPEN_BRACE: open brace '{' following function definitions go on the next line #148: FILE: lib/librte_eal/common/rte_version.c:19: +const char * +rte_version_suffix(void) { return RTE_VER_SUFFIX; } ERROR:OPEN_BRACE: open brace '{' following function definitions go on the next line #151: FILE: lib/librte_eal/common/rte_version.c:22: +unsigned int +rte_version_release(void) { return RTE_VER_RELEASE; } total: 6 errors, 0 warnings, 212 lines checked ERROR: symbol rte_version is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map ERROR: symbol rte_version_minor is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map ERROR: symbol rte_version_month is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map ERROR: symbol rte_version_prefix is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map ERROR: symbol rte_version_release is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map ERROR: symbol rte_version_suffix is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map ERROR: symbol rte_version_year is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map