From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id DC45018EAA for ; Wed, 3 Jan 2024 12:04:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3B176C15; Wed, 3 Jan 2024 04:05:03 -0800 (PST) Received: from [10.34.100.129] (e126645.nice.arm.com [10.34.100.129]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 49BD33F64C; Wed, 3 Jan 2024 04:04:16 -0800 (PST) Message-ID: <2f4a5ea1-daa2-4ede-bdc0-6692d7d52e8c@arm.com> Date: Wed, 3 Jan 2024 13:04:14 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] list: Add hlist_count_nodes() To: Marco Elver Cc: linux-kernel@vger.kernel.org, Kees Cook , Lucas De Marchi , Jani Nikula , Andy Shevchenko , Ingo Molnar References: <20240103090241.164817-1-pierre.gondois@arm.com> Content-Language: en-US From: Pierre Gondois In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hello Marco, On 1/3/24 12:25, Marco Elver wrote: > On Wed, 3 Jan 2024 at 10:02, Pierre Gondois wrote: >> >> Add a function to count nodes in a hlist. hlist_count_nodes() >> is similar to list_count_nodes(). >> >> Signed-off-by: Pierre Gondois > > Is this patch part of another patch series? As-is, this will be dead > code, and there's no guarantee someone will just go and delete it in > future. Although this function looks useful, we also should avoid > adding new dead code. The function is indeed not used in the project right now. I needed it for a private module. If it helps integrating the function and not make it dead code, maybe I could add usages at the following places: - drivers/gpu/drm/drm_hashtab.c::print_binder_node_nilocked() - drivers/md/bcache/sysfs.c::bch_cache_max_chain() Regards, Pierre > >> --- >> include/linux/list.h | 15 +++++++++++++++ >> 1 file changed, 15 insertions(+) >> >> diff --git a/include/linux/list.h b/include/linux/list.h >> index 1837caedf723..0f1b1d4a2e2e 100644 >> --- a/include/linux/list.h >> +++ b/include/linux/list.h >> @@ -1175,4 +1175,19 @@ static inline void hlist_move_list(struct hlist_head *old, >> pos && ({ n = pos->member.next; 1; }); \ >> pos = hlist_entry_safe(n, typeof(*pos), member)) >> >> +/** >> + * hlist_count_nodes - count nodes in the hlist >> + * @head: the head for your hlist. >> + */ >> +static inline size_t hlist_count_nodes(struct hlist_head *head) >> +{ >> + struct hlist_node *pos; >> + size_t count = 0; >> + >> + hlist_for_each(pos, head) >> + count++; >> + >> + return count; >> +} >> + >> #endif >> -- >> 2.25.1 >>