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 8898946D66 for ; Tue, 19 Aug 2025 12:26:24 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 81CCE40144; Tue, 19 Aug 2025 12:26:24 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 6371640144 for ; Tue, 19 Aug 2025 12:26:23 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id C4731123FC6; Tue, 19 Aug 2025 12:24:04 +0200 (CEST) Subject: |WARNING| pw155986 [PATCH v5 04/17] net/nbl: add Channel layer definitions and implementation In-Reply-To: <20250819102237.3067518-5-dimon.zhao@nebula-matrix.com> References: <20250819102237.3067518-5-dimon.zhao@nebula-matrix.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Dimon Zhao Message-Id: <20250819102404.C4731123FC6@dpdk.org> Date: Tue, 19 Aug 2025 12:24:04 +0200 (CEST) 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 Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/155986 _coding style issues_ WARNING:MACRO_ARG_UNUSED: Argument 'chan_info' is not used in function-like macro #372: FILE: drivers/net/nbl/nbl_hw/nbl_channel.c:140: +#define NBL_UPDATE_QUEUE_TAIL_PTR(chan_info, hw_ops, chan_mgt, tail_ptr, qid) \ +do { \ + typeof(hw_ops) _hw_ops = (hw_ops); \ + typeof(chan_mgt) _chan_mgt = (chan_mgt); \ + typeof(tail_ptr) _tail_ptr = (tail_ptr); \ + typeof(qid) _qid = (qid); \ + (_hw_ops)->update_mailbox_queue_tail_ptr(NBL_CHAN_MGT_TO_HW_PRIV(_chan_mgt), \ + _tail_ptr, _qid); \ +} while (0) total: 0 errors, 1 warnings, 0 checks, 1617 lines checked