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 B1E6045F0B for ; Sun, 22 Dec 2024 02:33:56 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AA9C4402C5; Sun, 22 Dec 2024 02:33:56 +0100 (CET) Received: from smtp.eurecom.fr (smtp.eurecom.fr [193.55.113.210]) by mails.dpdk.org (Postfix) with ESMTP id 991ED40144; Sun, 22 Dec 2024 02:33:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=eurecom.fr; i=@eurecom.fr; q=dns/txt; s=default; t=1734831233; x=1766367233; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Ffa+rTv31LXkoKhCSlJOeH9GbktkVguc6fy6VbiG7MQ=; b=QAb9h5YStAL2fx1l46SEKLe1khdBB3f2qKK/mZBPUdYnnjxtdNbwkHdl LteTw8pmpc/kLwAM84UAzlhAJmVlRGWbaCcHJTlSZeq3offfz7UsJfXKu fBwgkZqJKbIoeUfRzCDPIXrVXkHwhVWSoRKhihqpp2fmVItTlYhON8dWG 8=; X-CSE-ConnectionGUID: tSQBNGVVSrmXdi1ueAQYdA== X-CSE-MsgGUID: I0YUigjURdeyaXNt3XNykA== X-IronPort-AV: E=Sophos;i="6.12,254,1728943200"; d="scan'208";a="28289468" Received: from waha.eurecom.fr (HELO smtps.eurecom.fr) ([10.3.2.236]) by drago1i.eurecom.fr with ESMTP; 22 Dec 2024 02:33:53 +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 730562578; Sun, 22 Dec 2024 02:33:52 +0100 (CET) From: Ariel Otilibili To: dev@dpdk.org Cc: stable@dpdk.org, Ariel Otilibili , Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao , Harman Kalra , Long Li , Wei Hu , Chas Williams , "Min Hu (Connor)" , Dariusz Sosnowski , Viacheslav Ovsiienko , Bing Zhao , Ori Kam , Suanming Mou , Matan Azrad , Potnuri Bharat Teja , Andrew Boyer , Andrew Rybchenko , Cristian Dumitrescu , Stephen Hemminger Subject: [PATCH v3 00/10] devtools, lib, test, net, common: remove unused rte_bitmap_free() Date: Sun, 22 Dec 2024 02:19:52 +0100 Message-ID: <20241222013328.1362225-1-otilibil@eurecom.fr> X-Mailer: git-send-email 2.47.1 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 Hello, The first version was about the clearing of Coverity IDs 357712 & 357737; now this series is about the removal of rte_bitmap_free(). As of commit 07604f2644 ("maintainers: update for next-net tree"): * rte_bitmap_free() returns an integer, and does nothing else * all functions that call rte_bitmap_free() do not use this return value. Details are in a9486c43b3 ("devtools/cocci,lib/eal: remove unused rte_bitmap_free()"). Looking forward your feedback, --- v3: * addressed feedback from Stephen Hemminger * removed rte_bitmap_free() wherever it was used v2: * fix style issues. Ariel Otilibili (10): devtools/cocci,lib/eal: remove unused rte_bitmap_free() app/test: remove unsued rte_bitmap_free() net/sfc: remove unused rte_bitmap_free() crypto/ionic: remove unused rte_bitmap_free() net/cxgbe: remove unused rte_bitmap_free() net/mlx4: remove unused rte_bitmap_free() common/mlx5: remove unused rte_bitmap_free() net/bonding: remove unused rte_bitmap_free() net/netvsc: remove unused rte_bitmap_free() common/cnxk: remove unused rte_bitmap_free() app/test/test_bitmap.c | 2 -- devtools/cocci/nullfree.cocci | 3 --- drivers/common/cnxk/roc_platform.h | 1 - drivers/common/mlx5/mlx5_common_mr.c | 1 - drivers/crypto/ionic/ionic_crypto_main.c | 1 - drivers/net/bonding/rte_eth_bond_pmd.c | 1 - drivers/net/cxgbe/cxgbe_main.c | 1 - drivers/net/mlx4/mlx4_mr.c | 1 - drivers/net/netvsc/hn_rxtx.c | 1 - drivers/net/sfc/sfc_sw_stats.c | 1 - lib/eal/include/rte_bitmap.h | 19 ------------------- 11 files changed, 32 deletions(-) -- 2.47.1