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 43A02A0A0C for ; Wed, 28 Jul 2021 17:22:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3965D410FC; Wed, 28 Jul 2021 17:22:41 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id C55E6410FA for ; Wed, 28 Jul 2021 17:22:39 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id 9F7E0122E58; Wed, 28 Jul 2021 17:22:39 +0200 (CEST) In-Reply-To: <921c4cfaa08605cac9dd1f63b52139c0860cd622.1627485542.git.sthotton@marvell.com> References: <921c4cfaa08605cac9dd1f63b52139c0860cd622.1627485542.git.sthotton@marvell.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Shijith Thotton Message-Id: <20210728152239.9F7E0122E58@dpdk.org> Date: Wed, 28 Jul 2021 17:22:39 +0200 (CEST) Subject: [dpdk-test-report] |WARNING| pw96355 [PATCH] eal: add macro to swap two numbers 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/96355 _coding style issues_ ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #112: FILE: lib/eal/include/rte_common.h:814: +#define RTE_SWAP(a, b) \ + __extension__ ({ \ + typeof (a) _a = a; \ + a = b; \ + b = _a; \ + }) WARNING:SPACING: space prohibited between function name and open parenthesis '(' #114: FILE: lib/eal/include/rte_common.h:816: + typeof (a) _a = a; \ total: 1 errors, 1 warnings, 27 lines checked