From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CF0D3A057B for ; Tue, 14 Apr 2020 15:40:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C57641C2B9; Tue, 14 Apr 2020 15:40:23 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id D585F1C29D; Tue, 14 Apr 2020 15:40:17 +0200 (CEST) In-Reply-To: <20200411141428.1987768-4-jerinj@marvell.com> References: <20200411141428.1987768-4-jerinj@marvell.com> To: test-report@dpdk.org Cc: Message-Id: <20200414134017.D585F1C29D@dpdk.org> Date: Tue, 14 Apr 2020 15:40:17 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw68193 [PATCH v5 03/29] graph: implement node operations 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/68193 _coding style issues_ WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #102: FILE: lib/librte_graph/graph_private.h:17: +#define ID_CHECK(id, id_max) \ + do { \ + if ((id) >= (id_max)) { \ + rte_errno = EINVAL; \ + goto fail; \ + } \ + } while (0) total: 0 errors, 1 warnings, 311 lines checked