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 8C9D9A0ACC for ; Wed, 1 May 2019 05:55:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 777F25B16; Wed, 1 May 2019 05:55:09 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id A592C5B20; Wed, 1 May 2019 05:55:07 +0200 (CEST) In-Reply-To: <20190501035419.33524-3-honnappa.nagarahalli@arm.com> References: <20190501035419.33524-3-honnappa.nagarahalli@arm.com> To: test-report@dpdk.org Cc: Honnappa Nagarahalli Message-Id: <20190501035507.A592C5B20@dpdk.org> Date: Wed, 1 May 2019 05:55:07 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw53182 [PATCH v9 2/4] test/rcu_qsbr: add API and functional tests 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/53182 _coding style issues_ WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #134: FILE: app/test/test_rcu_qsbr.c:18: +#define TEST_RCU_QSBR_RETURN_IF_ERROR(cond, str, ...) do { \ + if (cond) { \ + printf("ERROR file %s, line %d: " str " ", __FILE__, \ + __LINE__, ##__VA_ARGS__); \ + return -1; \ + } \ +} while (0) WARNING:LONG_LINE: line over 90 characters #1552: FILE: app/test/test_rcu_qsbr_perf.c:416: + printf(" Perf test: 1 writer, %d readers, 1 QSBR variable, 1 QSBR Query, Blocking QSBR Check ", num_cores); WARNING:LONG_LINE: line over 90 characters #1663: FILE: app/test/test_rcu_qsbr_perf.c:527: + printf("Perf test: 1 writer, %d readers, 1 QSBR variable, 1 QSBR Query, Non-Blocking QSBR check ", num_cores); total: 0 errors, 3 warnings, 1773 lines checked