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 95DC54237C for ; Thu, 12 Jan 2023 00:46:44 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 94B4C40E25; Thu, 12 Jan 2023 00:46:44 +0100 (CET) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 15F6C40A7D for ; Thu, 12 Jan 2023 00:46:43 +0100 (CET) Received: by dpdk.org (Postfix, from userid 65534) id 124E81234F4; Thu, 12 Jan 2023 00:46:42 +0100 (CET) Subject: |WARNING| pw121855 [PATCH V2 01/11] pipeline: add IPsec support In-Reply-To: <20230111234358.133395-2-cristian.dumitrescu@intel.com> References: <20230111234358.133395-2-cristian.dumitrescu@intel.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Cristian Dumitrescu Message-Id: <20230111234643.124E81234F4@dpdk.org> Date: Thu, 12 Jan 2023 00:46:42 +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/121855 _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 #1247: FILE: lib/pipeline/rte_swx_ipsec.c:1138: +#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 #1561: FILE: lib/pipeline/rte_swx_ipsec.c:1452: + return &xform[0]; + } else { WARNING:TYPO_SPELLING: 'stdio' may be misspelled - perhaps 'studio'? #2016: FILE: lib/pipeline/rte_swx_ipsec.h:50: +#include total: 0 errors, 4 warnings, 2264 lines checked