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 548E142492 for ; Thu, 26 Jan 2023 14:36:13 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3845242D43; Thu, 26 Jan 2023 14:36:13 +0100 (CET) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 2355F42D31 for ; Thu, 26 Jan 2023 14:36:12 +0100 (CET) Received: by dpdk.org (Postfix, from userid 65534) id 1E40D123D80; Thu, 26 Jan 2023 14:36:12 +0100 (CET) Subject: |WARNING| pw122538 [PATCH V5 01/11] pipeline: add IPsec support In-Reply-To: <20230126133427.379941-2-cristian.dumitrescu@intel.com> References: <20230126133427.379941-2-cristian.dumitrescu@intel.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Cristian Dumitrescu Message-Id: <20230126133612.1E40D123D80@dpdk.org> Date: Thu, 26 Jan 2023 14:36:12 +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/122538 _coding style issues_ WARNING:TYPO_SPELLING: 'stdio' may be misspelled - perhaps 'studio'? #114: FILE: lib/pipeline/rte_swx_ipsec.c:5: +#include WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #1229: FILE: lib/pipeline/rte_swx_ipsec.c:1120: +#define CHECK(condition, msg) \ +do { \ + if (!(condition)) { \ + if (errmsg) \ + *errmsg = msg; \ + goto error; \ + } \ +} while (0) WARNING:UNNECESSARY_ELSE: else is not generally useful after a break or return #1543: FILE: lib/pipeline/rte_swx_ipsec.c:1434: + return &xform[0]; + } else { WARNING:TYPO_SPELLING: 'stdio' may be misspelled - perhaps 'studio'? #1986: FILE: lib/pipeline/rte_swx_ipsec.h:50: +#include total: 0 errors, 4 warnings, 2234 lines checked