From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 1017) id 2B47F7D22; Fri, 25 Aug 2017 12:30:41 +0200 (CEST) In-Reply-To: References: To: test-report@dpdk.org Cc: Gaetan Rivet Message-Id: <20170825103041.2B47F7D22@dpdk.org> Date: Fri, 25 Aug 2017 12:30:41 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw27926 [PATCH 06/13] pci: avoid inlining functions 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, 25 Aug 2017 10:30:41 -0000 Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/27926 _coding style issues_ WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #142: FILE: lib/librte_pci/rte_pci.c:57: +#define GET_PCIADDR_FIELD(in, fd, lim, dlm) \ +do { \ + unsigned long val; \ + char *end; \ + errno = 0; \ + val = strtoul((in), &end, 16); \ + if (errno != 0 || end[0] != (dlm) || val > (lim)) \ + return -EINVAL; \ + (fd) = (typeof (fd))val; \ + (in) = end + 1; \ +} while(0) WARNING:SPACING: space prohibited between function name and open parenthesis '(' #150: FILE: lib/librte_pci/rte_pci.c:65: + (fd) = (typeof (fd))val; \ ERROR:SPACING: space required before the open parenthesis '(' #152: FILE: lib/librte_pci/rte_pci.c:67: +} while(0) total: 1 errors, 2 warnings, 183 lines checked