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 93FE845F13 for ; Sun, 22 Dec 2024 13:58:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 38CE240676; Sun, 22 Dec 2024 13:58:06 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id 08D20402DE; Sun, 22 Dec 2024 13:57:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734872275; x=1766408275; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KMOwC1xtDAgWc7zcqgCl1ky8thiRibfR3QPxDXwt8Kg=; b=yHaRZXmgxE0ZDND80zwgnsKRiwNPsiWYm5+2O9e7bZPiRaE3t3IMVtRN JrvtlHA9qsYCStHrMaXWa3X3BZX8ReTO+4dG7lhpF+D/QZ8YMXlFtXBln aq6frp+evKWZPWUolr3PUcmNtQEwGQXyd3jAyZBbI78TSc20mFfiRYklt Y=; X-CSE-ConnectionGUID: w+hAQ9tGRVOdT+fHyvi+0Q== X-CSE-MsgGUID: qnCLGkw3RhKIspZm+mgbmg== X-IronPort-AV: E=Sophos;i="6.12,255,1728943200"; d="scan'208";a="28290602" Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236]) by drago1i.eurecom.fr with ESMTP; 22 Dec 2024 13:57:54 +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 A46A62599; Sun, 22 Dec 2024 13:57:54 +0100 (CET) From: Ariel Otilibili To: dev@dpdk.org Cc: stable@dpdk.org, Thomas Monjalon , David Marchand , Ariel Otilibili , Potnuri Bharat Teja Subject: [PATCH v4 05/11] net/cxgbe: remove unused rte_bitmap_free() Date: Sun, 22 Dec 2024 13:49:25 +0100 Message-ID: <20241222125725.1532157-6-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: 06c047b680 ("remove unnecessary null checks") Signed-off-by: Ariel Otilibili --- Cc: stable@dpdk.org Cc: Potnuri Bharat Teja --- drivers/net/cxgbe/cxgbe_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/cxgbe/cxgbe_main.c b/drivers/net/cxgbe/cxgbe_main.c index 2ed21f2d66..91ecddd287 100644 --- a/drivers/net/cxgbe/cxgbe_main.c +++ b/drivers/net/cxgbe/cxgbe_main.c @@ -465,7 +465,6 @@ void cxgbe_insert_tid(struct tid_info *t, void *data, unsigned int tid, static void tid_free(struct tid_info *t) { if (t->tid_tab) { - rte_bitmap_free(t->ftid_bmap); if (t->ftid_bmap_array) t4_os_free(t->ftid_bmap_array); -- 2.47.1