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 31D74454FC for ; Thu, 27 Jun 2024 00:00:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1D89040672; Thu, 27 Jun 2024 00:00:43 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 289B64066D for ; Thu, 27 Jun 2024 00:00:42 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id 23FA7128144; Thu, 27 Jun 2024 00:00:42 +0200 (CEST) Subject: |WARNING| pw141914 [PATCH v3 1/2] cryptodev: fix crypto callbacks on unsetting callbacks macro In-Reply-To: <20240626220028.2260003-1-ganapati.kundapura@intel.com> References: <20240626220028.2260003-1-ganapati.kundapura@intel.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Ganapati Kundapura Message-Id: <20240626220042.23FA7128144@dpdk.org> Date: Thu, 27 Jun 2024 00:00:42 +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/141914 _coding style issues_ WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #96: FILE: app/test/test_cryptodev.c:121: +#define TEST_SKIP_LOG(cond, msg, ...) do { \ + if ((cond)) { \ + RTE_LOG(ERR, CRYPTODEV, "%s line %d: " \ + msg " ", __func__, __LINE__, ##__VA_ARGS__); \ + RTE_TEST_TRACE_FAILURE(__FILE__, __LINE__, __func__); \ + return TEST_SKIPPED; \ + } \ +} while (0) total: 0 errors, 1 warnings, 215 lines checked