From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 1017) id CDD2A7CBC; Fri, 4 Aug 2017 15:55:25 +0200 (CEST) In-Reply-To: <1501854887-42427-6-git-send-email-david.hunt@intel.com> References: <1501854887-42427-6-git-send-email-david.hunt@intel.com> To: test-report@dpdk.org Cc: David Hunt Message-Id: <20170804135525.CDD2A7CBC@dpdk.org> Date: Fri, 4 Aug 2017 15:55:25 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw27451 [PATCH RFC 05/10] examples/vm_power_mgr: add policy to channels 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: Fri, 04 Aug 2017 13:55:26 -0000 Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/27451 _coding style issues_ ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #120: FILE: examples/vm_power_manager/channel_monitor.c:114: +#define ITERATIVE_BITMASK_CHECK_64(mask_u64b, i) \ + for (i = 0; mask_u64b; mask_u64b &= ~(1ULL << i++)) \ + if ((mask_u64b >> i) & 1) \ WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (24, 0) #122: FILE: examples/vm_power_manager/channel_monitor.c:116: + if ((mask_u64b >> i) & 1) \ [...] +static void total: 1 errors, 1 warnings, 442 lines checked