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 0E4B6A034F for ; Tue, 12 Oct 2021 03:12:45 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 03F8A4113E; Tue, 12 Oct 2021 03:12:45 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id D9B51410E5 for ; Tue, 12 Oct 2021 03:12:43 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id BA8ED120E00; Tue, 12 Oct 2021 03:12:43 +0200 (CEST) In-Reply-To: <20211012011107.431188-1-dmitry.kozliuk@gmail.com> References: <20211012011107.431188-1-dmitry.kozliuk@gmail.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Dmitry Kozlyuk Message-Id: <20211012011243.BA8ED120E00@dpdk.org> Date: Tue, 12 Oct 2021 03:12:43 +0200 (CEST) Subject: [dpdk-test-report] |WARNING| pw101135 [kmods PATCH] windows/netuio: add interrupt support 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/101135 _coding style issues_ ERROR:POINTER_LOCATION: "foo* bar" should be "foo *bar" #166: FILE: windows/netuio/netuio_dev.c:175: + WDFINTERRUPT* intrs; ERROR:CODE_INDENT: code indent should use tabs where possible #240: FILE: windows/netuio/netuio_dev.c:314: + goto end_of_loop;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #240: FILE: windows/netuio/netuio_dev.c:314: + goto end_of_loop;$ ERROR:SPACING: spaces required around that ':' (ctx:VxE) #248: FILE: windows/netuio/netuio_dev.c:343: +end_of_loop: ^ WARNING:LEADING_SPACE: please, no spaces at the start of a line #251: FILE: windows/netuio/netuio_dev.c:345: + status = netuio_intr_alloc(Device, Resources, ResourcesTranslated);$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #273: FILE: windows/netuio/netuio_dev.h:29: + WDFQUEUE queue; /**< Queue of requests for this interrupt. */$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #285: FILE: windows/netuio/netuio_dev.h:44: + BOOLEAN intr_enabled; /**< Whether interrupt delivery is enabled. */$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #286: FILE: windows/netuio/netuio_dev.h:45: + WDFINTERRUPT *intr; /**< Interrupt objects indexed by vector. */$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #287: FILE: windows/netuio/netuio_dev.h:46: + size_t intr_n; /**< Number of interrupt objects. */$ WARNING:LONG_LINE: line length of 101 exceeds 100 columns #304: FILE: windows/netuio/netuio_interface.h:58: +#define IOCTL_NETUIO_INTR_CONTROL CTL_CODE(FILE_DEVICE_NETWORK, 53, METHOD_BUFFERED, FILE_ANY_ACCESS) WARNING:LEADING_SPACE: please, no spaces at the start of a line #321: FILE: windows/netuio/netuio_interface.h:101: + UINT32 enable; /**< 1 to enable interrupts, 0 to disable */$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #325: FILE: windows/netuio/netuio_interface.h:105: + UINT32 vector; /**< Vector of the interrupt to wait for. */$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #406: FILE: windows/netuio/netuio_queue.c:287: + PVOID input_buf = NULL, output_buf = NULL;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #407: FILE: windows/netuio/netuio_queue.c:288: + size_t input_buf_size, output_buf_size;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #408: FILE: windows/netuio/netuio_queue.c:289: + size_t bytes_returned = 0;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #409: FILE: windows/netuio/netuio_queue.c:290: + NTSTATUS status;$ WARNING:BLOCK_COMMENT_STYLE: Block comments use * on subsequent lines #429: FILE: windows/netuio/netuio_queue.c:346: +/* +Routine Description: total: 3 errors, 14 warnings, 321 lines checked