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 F133CA05D3 for ; Fri, 29 Mar 2019 17:01:18 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 245BF6CC1; Fri, 29 Mar 2019 17:01:13 +0100 (CET) Received: by dpdk.org (Postfix, from userid 1017) id EDA2D5F21; Fri, 29 Mar 2019 17:01:04 +0100 (CET) In-Reply-To: <1553875099-166351-7-git-send-email-rosen.xu@intel.com> References: <1553875099-166351-7-git-send-email-rosen.xu@intel.com> To: test-report@dpdk.org Cc: Rosen Xu Message-Id: <20190329160104.EDA2D5F21@dpdk.org> Date: Fri, 29 Mar 2019 17:01:04 +0100 (CET) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw51917 [PATCH v2 06/15] 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/51917 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse '_x' - possible side-effects? #1077: 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? #1081: 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