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 832F145F13 for ; Sun, 22 Dec 2024 13:58:15 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A25BA4066E; Sun, 22 Dec 2024 13:58:12 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id 09A974065D; Sun, 22 Dec 2024 13:58:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734872281; x=1766408281; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+HN4p6iK/FX9gNL28689qvMAvUv7+CB66EHJuAXcjvw=; b=Yi3gGHOb+gymFZi20q1HKSsPSQIq8OzoKthbH+AyTC6CqqzzW6CuTiOR QOQX7KlNs5iPGULuBBxy1NtoD9d+T0CSvo+YEmnHBm80xoz0l3tx0x3BU xPiWNXJyBWw7ZfmphdoWG0EroZqrjVY9czVeO4Ldr8lHNle9ni7AVDu0c 8=; X-CSE-ConnectionGUID: skyMCsylTxCF86+HLE8UCw== X-CSE-MsgGUID: XMm55ngPSU+r2kIi7a3Yjw== X-IronPort-AV: E=Sophos;i="6.12,255,1728943200"; d="scan'208";a="28290606" Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236]) by drago1i.eurecom.fr with ESMTP; 22 Dec 2024 13:58:00 +0100 Received: from localhost.localdomain (88-183-119-157.subs.proxad.net [88.183.119.157]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtps.eurecom.fr (Postfix) with ESMTPSA id A5AE4259D; Sun, 22 Dec 2024 13:58:00 +0100 (CET) From: Ariel Otilibili To: dev@dpdk.org Cc: stable@dpdk.org, Thomas Monjalon , David Marchand , Ariel Otilibili , Long Li , Wei Hu Subject: [PATCH v4 09/11] net/netvsc: remove unused rte_bitmap_free() Date: Sun, 22 Dec 2024 13:49:29 +0100 Message-ID: <20241222125725.1532157-10-otilibil@eurecom.fr> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241222125725.1532157-1-otilibil@eurecom.fr> References: <20241222125725.1532157-1-otilibil@eurecom.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Depends on d5941e7269 ("devtools/cocci,lib/eal: remove unused rte_bitmap_free()"). Fixes: cc02518132 ("net/netvsc: split send buffers from Tx descriptors") Signed-off-by: Ariel Otilibili --- Cc: stable@dpdk.org Cc: Long Li Cc: Wei Hu --- drivers/net/netvsc/hn_rxtx.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/netvsc/hn_rxtx.c b/drivers/net/netvsc/hn_rxtx.c index 9d3948e03d..148c7c4a33 100644 --- a/drivers/net/netvsc/hn_rxtx.c +++ b/drivers/net/netvsc/hn_rxtx.c @@ -183,7 +183,6 @@ hn_chim_uninit(struct rte_eth_dev *dev) { struct hn_data *hv = dev->data->dev_private; - rte_bitmap_free(hv->chim_bmap); rte_free(hv->chim_bmem); hv->chim_bmem = NULL; } -- 2.47.1