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 58D0845F0A for ; Sun, 22 Dec 2024 02:34:10 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8FC0F4060C; Sun, 22 Dec 2024 02:34:09 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id E37CD4060F; Sun, 22 Dec 2024 02:34:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734831247; x=1766367247; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=wDWdk7EA/OjmeAL4OTGgL9E4oyCHZ7bKiiJDUm5S0Hw=; b=zFFM5KSOtrOgfZRWjogYzO0lj+kghi/L4GW+iWNztwZWFuGnWYf6LaXh xn/+S9uhRtC2ZlH3RzrM2INzkuAeRjCHwf7BwanooNmQ0PeyLHEHr4uzX K51cOPyFr2b9VDJvlmoCIcBd8V9OFQI0iy1eNS2HCIdcqJ31aEE7uN/y3 0=; X-CSE-ConnectionGUID: QLWpYKShQ6quQMY55onxBA== X-CSE-MsgGUID: PscCtrB0SXKrQGjvBXKLMA== X-IronPort-AV: E=Sophos;i="6.12,254,1728943200"; d="scan'208";a="28289471" Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236]) by drago1i.eurecom.fr with ESMTP; 22 Dec 2024 02:34:07 +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 9F3EF257B; Sun, 22 Dec 2024 02:34:07 +0100 (CET) From: Ariel Otilibili To: dev@dpdk.org Cc: stable@dpdk.org, Ariel Otilibili , Andrew Rybchenko Subject: [PATCH v3 03/10] net/sfc: remove unused rte_bitmap_free() Date: Sun, 22 Dec 2024 02:19:55 +0100 Message-ID: <20241222013328.1362225-4-otilibil@eurecom.fr> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241222013328.1362225-1-otilibil@eurecom.fr> References: <20241222013328.1362225-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 17dd8149d6 ("devtools/cocci,lib/eal: remove unused rte_bitmap_free()"). Fixes: e00c3a0c1b ("net/sfc: rename SW stats structures") Signed-off-by: Ariel Otilibili --- Cc: stable@dpdk.org Cc: Andrew Rybchenko --- 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