From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 1017) id 722B01B1EF; Mon, 25 Sep 2017 17:26:27 +0200 (CEST) In-Reply-To: <94513cd757c4a691d6378b366b83485ea46a57e7.1506352672.git.gaetan.rivet@6wind.com> References: <94513cd757c4a691d6378b366b83485ea46a57e7.1506352672.git.gaetan.rivet@6wind.com> To: test-report@dpdk.org Cc: Gaetan Rivet Message-Id: <20170925152627.722B01B1EF@dpdk.org> Date: Mon, 25 Sep 2017 17:26:27 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw29179 [PATCH v3 10/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: Mon, 25 Sep 2017 15:26:27 -0000 Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/29179 _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