From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 1017) id 4D296532C; Wed, 24 May 2017 08:15:27 +0200 (CEST) In-Reply-To: <1495606206-72739-2-git-send-email-beilei.xing@intel.com> References: <1495606206-72739-2-git-send-email-beilei.xing@intel.com> To: test-report@dpdk.org Cc: Beilei Xing Message-Id: <20170524061527.4D296532C@dpdk.org> Date: Wed, 24 May 2017 08:15:27 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw24479 [PATCH 1/3] net/i40e: support flexible payload parsing for FDIR 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: , X-List-Received-Date: Wed, 24 May 2017 06:15:27 -0000 Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/24479 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse 'dst_offset' - possible side-effects? #38: FILE: drivers/net/i40e/i40e_ethdev.h:439: +#define MK_FLX_PIT(src_offset, fsize, dst_offset) ( \ + (((src_offset) << I40E_PRTQF_FLX_PIT_SOURCE_OFF_SHIFT) & \ + I40E_PRTQF_FLX_PIT_SOURCE_OFF_MASK) | \ + (((fsize) << I40E_PRTQF_FLX_PIT_FSIZE_SHIFT) & \ + I40E_PRTQF_FLX_PIT_FSIZE_MASK) | \ + ((((dst_offset) == NONUSE_FLX_PIT_DEST_OFF ? \ + NONUSE_FLX_PIT_DEST_OFF : \ + ((dst_offset) + I40E_FLX_OFFSET_IN_FIELD_VECTOR)) << \ + I40E_PRTQF_FLX_PIT_DEST_OFF_SHIFT) & \ + I40E_PRTQF_FLX_PIT_DEST_OFF_MASK)) CHECK:BRACES: braces {} should be used on all arms of this statement #472: FILE: drivers/net/i40e/i40e_flow.c:1401: + if (ret == -1) { [...] + } else if (ret == -2) { [...] + } else if (ret > 0) [...] total: 0 errors, 0 warnings, 2 checks, 441 lines checked