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 9AEA142B2F for ; Thu, 18 May 2023 01:17:30 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 99A0A42BC9; Thu, 18 May 2023 01:17:30 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id C0D3642B71 for ; Thu, 18 May 2023 01:17:29 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id BB9A2120927; Thu, 18 May 2023 01:17:29 +0200 (CEST) Subject: |WARNING| pw126960 [PATCH] app/test-pmd : Add 2.5Gbps and 5Gbps support to test-pmd In-Reply-To: <20230517231614.69440-1-julien_dpdk@jaube.fr> References: <20230517231614.69440-1-julien_dpdk@jaube.fr> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: julien_dpdk@jaube.fr Message-Id: <20230517231729.BB9A2120927@dpdk.org> Date: Thu, 18 May 2023 01:17:29 +0200 (CEST) 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/126960 _coding style issues_ ERROR:CODE_INDENT: code indent should use tabs where possible #83: FILE: app/test-pmd/cmdline.c:1348: + *speed = RTE_ETH_LINK_SPEED_2_5G;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #83: FILE: app/test-pmd/cmdline.c:1348: + *speed = RTE_ETH_LINK_SPEED_2_5G;$ ERROR:CODE_INDENT: code indent should use tabs where possible #84: FILE: app/test-pmd/cmdline.c:1349: + } else if (!strcmp(speedstr, "5000")) {$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #84: FILE: app/test-pmd/cmdline.c:1349: + } else if (!strcmp(speedstr, "5000")) {$ ERROR:CODE_INDENT: code indent should use tabs where possible #85: FILE: app/test-pmd/cmdline.c:1350: + *speed = RTE_ETH_LINK_SPEED_5G;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #85: FILE: app/test-pmd/cmdline.c:1350: + *speed = RTE_ETH_LINK_SPEED_5G;$ ERROR:CODE_INDENT: code indent should use tabs where possible #86: FILE: app/test-pmd/cmdline.c:1351: + } else if (!strcmp(speedstr, "10000")) {$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #86: FILE: app/test-pmd/cmdline.c:1351: + } else if (!strcmp(speedstr, "10000")) {$ ERROR:CODE_INDENT: code indent should use tabs where possible #134: FILE: app/test-pmd/parameters.c:553: + case 2500:$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #134: FILE: app/test-pmd/parameters.c:553: + case 2500:$ ERROR:CODE_INDENT: code indent should use tabs where possible #135: FILE: app/test-pmd/parameters.c:554: + speed |= RTE_ETH_LINK_SPEED_2_5G;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #135: FILE: app/test-pmd/parameters.c:554: + speed |= RTE_ETH_LINK_SPEED_2_5G;$ ERROR:CODE_INDENT: code indent should use tabs where possible #136: FILE: app/test-pmd/parameters.c:555: + break;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #136: FILE: app/test-pmd/parameters.c:555: + break;$ ERROR:CODE_INDENT: code indent should use tabs where possible #137: FILE: app/test-pmd/parameters.c:556: + case 5000:$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #137: FILE: app/test-pmd/parameters.c:556: + case 5000:$ ERROR:CODE_INDENT: code indent should use tabs where possible #138: FILE: app/test-pmd/parameters.c:557: + speed |= RTE_ETH_LINK_SPEED_5G;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #138: FILE: app/test-pmd/parameters.c:557: + speed |= RTE_ETH_LINK_SPEED_5G;$ ERROR:CODE_INDENT: code indent should use tabs where possible #139: FILE: app/test-pmd/parameters.c:558: + break;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #139: FILE: app/test-pmd/parameters.c:558: + break;$ total: 10 errors, 10 warnings, 80 lines checked