From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 66889A0679 for ; Tue, 2 Apr 2019 15:58:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E0B434C9F; Tue, 2 Apr 2019 15:58:04 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id 237E65699; Tue, 2 Apr 2019 15:58:03 +0200 (CEST) In-Reply-To: <1554213434-60684-7-git-send-email-rosen.xu@intel.com> References: <1554213434-60684-7-git-send-email-rosen.xu@intel.com> To: test-report@dpdk.org Cc: "Xu, Rosen" Message-Id: <20190402135803.237E65699@dpdk.org> Date: Tue, 2 Apr 2019 15:58:03 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw52102 [PATCH v3 06/14] drivers/net/ipn3ke: add IPN3KE Flow of PMD driver X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.15 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/52102 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse '_x' - possible side-effects? #1079: FILE: drivers/net/ipn3ke/ipn3ke_flow.c:989: +#define __SWAP16(_x) \ + ((((_x) & 0xff) << 8) | \ + (((_x) >> 8) & 0xff)) CHECK:MACRO_ARG_REUSE: Macro argument reuse '_x' - possible side-effects? #1083: FILE: drivers/net/ipn3ke/ipn3ke_flow.c:993: +#define __SWAP32(_x) \ + ((__SWAP16((_x) & 0xffff) << 16) | \ + __SWAP16(((_x) >> 16) & 0xffff)) total: 0 errors, 0 warnings, 2 checks, 1545 lines checked