From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 59566A0C46 for ; Mon, 27 Sep 2021 17:02:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0E495410F0; Mon, 27 Sep 2021 17:02:23 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 4958B410EB for ; Mon, 27 Sep 2021 17:02:21 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id 4647D1206FE; Mon, 27 Sep 2021 17:02:21 +0200 (CEST) In-Reply-To: <20210927134231.11177-3-srikanth.k@oneconvergence.com> References: <20210927134231.11177-3-srikanth.k@oneconvergence.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Srikanth Kaka Message-Id: <20210927150221.4647D1206FE@dpdk.org> Date: Mon, 27 Sep 2021 17:02:21 +0200 (CEST) Subject: [dpdk-test-report] |WARNING| pw99819 [PATCH 02/11] bus/vmbus: scan and get the network device X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.29 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/99819 _coding style issues_ WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #355: FILE: drivers/bus/vmbus/freebsd/vmbus_bus.c:372: +#define UNPACK(x) \ + do { \ + x = strdup(walker); \ + if (x == NULL) \ + return -ENOMEM; \ + if (walker + strnlen(walker, ep - walker) >= ep) \ + return -EINVAL; \ + walker += strlen(walker) + 1; \ + } while (0) total: 0 errors, 1 warnings, 297 lines checked