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 12E84A00C2 for ; Fri, 1 Jul 2022 11:05:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0F4FE40E03; Fri, 1 Jul 2022 11:05:49 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id B9F2C40A7B for ; Fri, 1 Jul 2022 11:05:47 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id B556C120787; Fri, 1 Jul 2022 11:05:47 +0200 (CEST) Subject: |WARNING| pw113615 [PATCH 12/17] net/mana: add function to start/stop TX queues In-Reply-To: <1656666167-26035-13-git-send-email-longli@linuxonhyperv.com> References: <1656666167-26035-13-git-send-email-longli@linuxonhyperv.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: longli@linuxonhyperv.com Message-Id: <20220701090547.B556C120787@dpdk.org> Date: Fri, 1 Jul 2022 11:05:47 +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/113615 _coding style issues_ WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #55: MANA allocate device queues through the IB layer when starting TX queues. When WARNING:VSPRINTF_SPECIFIER_PX: Using vsprintf specifier '%px' potentially exposes the kernel memory layout, if you don't really need the address please consider using '%p'. #250: FILE: drivers/net/mana/tx.c:139: + DRV_LOG(INFO, "txq sq id %u vp_offset %u db_page %px " + " buf %px count %u size %u", + txq->gdma_sq.id, txq->tx_vp_offset, + priv->db_page, + txq->gdma_sq.buffer, txq->gdma_sq.count, + txq->gdma_sq.size); WARNING:VSPRINTF_SPECIFIER_PX: Using vsprintf specifier '%px' potentially exposes the kernel memory layout, if you don't really need the address please consider using '%p'. #265: FILE: drivers/net/mana/tx.c:154: + DRV_LOG(INFO, "txq cq id %u buf %px count %u size %u head %u", + txq->gdma_cq.id, txq->gdma_cq.buffer, + txq->gdma_cq.count, txq->gdma_cq.size, + txq->gdma_cq.head); total: 0 errors, 3 warnings, 0 checks, 204 lines checked