From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stable-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id C2DF545F13
	for <public@inbox.dpdk.org>; Sun, 22 Dec 2024 13:58:05 +0100 (CET)
Received: from mails.dpdk.org (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id B9CB340663;
	Sun, 22 Dec 2024 13:58:04 +0100 (CET)
Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210])
 by mails.dpdk.org (Postfix) with ESMTP id 46E80402DE;
 Sun, 22 Dec 2024 13:57:52 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple;
 d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default;
 t=1734872272; x=1766408272;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=KQb9qJYgnNB/8iJSNhB1e54km1s4/h5NnEIl5Fqlsu8=;
 b=Mv7iLsg3GC8IFwzUABo5htdlKMyUwyIfoTwlFDI33aJSkOwCPfdoAmgq
 NC2JPRxfwj8zVw4InmyUwJlZbDm6Isp2A+6vHRPB0Z4tplk+A6n5j7tDA
 jPqApPsVhVYWfOpzEBcmaojvO3TI5zEMct6Yneo5CR3sLSnPg0HHRLtuD c=;
X-CSE-ConnectionGUID: b2Bv+UBSToqldSeL14NWIw==
X-CSE-MsgGUID: Zg+UIks9Sg6DfCKI2daZSg==
X-IronPort-AV: E=Sophos;i="6.12,255,1728943200"; d="scan'208";a="28290600"
Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236])
 by drago1i.eurecom.fr with ESMTP; 22 Dec 2024 13:57:52 +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 E1D5C2597;
 Sun, 22 Dec 2024 13:57:51 +0100 (CET)
From: Ariel Otilibili <otilibil@eurecom.fr>
To: dev@dpdk.org
Cc: stable@dpdk.org, Thomas Monjalon <thomas@monjalon.net>,
 David Marchand <david.marchand@redhat.com>,
 Ariel Otilibili <otilibil@eurecom.fr>,
 Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Subject: [PATCH v4 03/11] net/sfc: remove unused rte_bitmap_free()
Date: Sun, 22 Dec 2024 13:49:23 +0100
Message-ID: <20241222125725.1532157-4-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 <stable.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
Errors-To: stable-bounces@dpdk.org

Depends on d5941e7269 ("devtools/cocci,lib/eal: remove unused
rte_bitmap_free()").

Fixes: e00c3a0c1b ("net/sfc: rename SW stats structures")
Signed-off-by: Ariel Otilibili <otilibil@eurecom.fr>
---
Cc: stable@dpdk.org
Cc: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
---
 drivers/net/sfc/sfc_sw_stats.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/sfc/sfc_sw_stats.c b/drivers/net/sfc/sfc_sw_stats.c
index 3ae5023b6f..90e95aed22 100644
--- a/drivers/net/sfc/sfc_sw_stats.c
+++ b/drivers/net/sfc/sfc_sw_stats.c
@@ -815,7 +815,6 @@ sfc_sw_xstats_configure(struct sfc_adapter *sa)
 static void
 sfc_sw_xstats_free_queues_bitmap(struct sfc_adapter *sa)
 {
-	rte_bitmap_free(sa->sw_stats.queues_bitmap);
 	rte_free(sa->sw_stats.queues_bitmap_mem);
 }
 
-- 
2.47.1