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 5465745F13; Sun, 22 Dec 2024 13:58:41 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EDE0A406B6; Sun, 22 Dec 2024 13:58:08 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id EDA2D40647; Sun, 22 Dec 2024 13:57:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734872278; x=1766408278; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=UEjfHVUGMmI9ohorKlrNm+ZZ7poBTyCUTsA/VZ0Y0ss=; b=T688WLVRIaKOReDq5TdAZdr2bnNNTV9JBDIJPNx6cIQk7MppeW+Gvl25 yutCMqXWpHQ+0bXvxzmoaP1/6nSc2y1qv/CRkndYIYaKltalu1Gu0NV04 wQKAOeDxJzsBpFCQWAhbQ6o3HV6xOQ7XTP9x2HlJWWCZK+Q7jBSBu8EKC A=; X-CSE-ConnectionGUID: w46dw83YQVOgc70FfPWWHg== X-CSE-MsgGUID: ANYPQFWcSeuhoTjf9cMP4A== X-IronPort-AV: E=Sophos;i="6.12,255,1728943200"; d="scan'208";a="28290604" Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236]) by drago1i.eurecom.fr with ESMTP; 22 Dec 2024 13:57:57 +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 730EC259B; Sun, 22 Dec 2024 13:57:57 +0100 (CET) From: Ariel Otilibili To: dev@dpdk.org Cc: stable@dpdk.org, Thomas Monjalon , David Marchand , Ariel Otilibili , Dariusz Sosnowski , Viacheslav Ovsiienko , Bing Zhao , Ori Kam , Suanming Mou , Matan Azrad Subject: [PATCH v4 07/11] common/mlx5: remove unused rte_bitmap_free() Date: Sun, 22 Dec 2024 13:49:27 +0100 Message-ID: <20241222125725.1532157-8-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: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-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: Dariusz Sosnowski Cc: Viacheslav Ovsiienko Cc: Bing Zhao Cc: Ori Kam Cc: Suanming Mou Cc: Matan Azrad --- drivers/common/mlx5/mlx5_common_mr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/common/mlx5/mlx5_common_mr.c b/drivers/common/mlx5/mlx5_common_mr.c index 50922ad398..dee0b521dd 100644 --- a/drivers/common/mlx5/mlx5_common_mr.c +++ b/drivers/common/mlx5/mlx5_common_mr.c @@ -494,7 +494,6 @@ mlx5_mr_free(struct mlx5_mr *mr, mlx5_dereg_mr_t dereg_mr_cb) return; DRV_LOG(DEBUG, "freeing MR(%p):", (void *)mr); dereg_mr_cb(&mr->pmd_mr); - rte_bitmap_free(mr->ms_bmp); mlx5_free(mr); } -- 2.47.1