Linux Trace Kernel
 help / color / mirror / Atom feed
From: "wuqiang.matt" <wuqiang.matt@bytedance.com>
To: "zhouwenhao" <zhouwenhao7600@gmail.com>,
	 "Masami Hiramatsu" <mhiramat@kernel.org>
Cc: <linux-kernel@vger.kernel.org>,
	<linux-trace-kernel@vger.kernel.org>,
	 "Andrew Morton" <akpm@linux-foundation.org>
Subject: Re: [PATCH] objpool: fix the overestimation of object pooling metadata size
Date: Fri, 06 Feb 2026 19:26:09 +0800	[thread overview]
Message-ID: <f9227920-a1a7-4f12-92d3-225e8753b32a@bytedance.com> (raw)

On 2026/2/2 21:28, zhouwenhao wrote:
> objpool uses struct objpool_head to store metadata information, and its
> cpu_slots member points to an array of pointers that store the addresses of
> the percpu ring arrays. However, the memory size allocated during the
> initialization of cpu_slots is nr_cpu_ids * sizeof(struct objpool_slot). On
> a 64-bit machine, the size of struct objpool_slot is 16 bytes, which is
> twice the size of the actual pointer required, and the extra memory is
> never be used, resulting in a waste of memory. Therefore, the memory size
> required for cpu_slots needs to be corrected.
> 
> Fixes: b4edb8d2d464 ("lib: objpool added: ring-array based lockless MPMC")
> 
> Signed-off-by: zhouwenhao <zhouwenhao7600@gmail.com>
> ---
>   lib/objpool.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/objpool.c b/lib/objpool.c
> index b998b720c732..d98fadf1de16 100644
> --- a/lib/objpool.c
> +++ b/lib/objpool.c
> @@ -142,7 +142,7 @@ int objpool_init(struct objpool_head *pool, int nr_objs, int object_size,
>           pool->gfp = gfp & ~__GFP_ZERO;
>           pool->context = context;
>           pool->release = release;
> -        slot_size = nr_cpu_ids * sizeof(struct objpool_slot);
> +        slot_size = nr_cpu_ids * sizeof(struct objpool_slot *);
>           pool->cpu_slots = kzalloc(slot_size, pool->gfp);
>           if (!pool->cpu_slots)
>                   return -ENOMEM;

Good catch. It should be "struct objpool_slot *".

Masami, could you please review this fix ? Thank you.

Regards,
Matt Wu

                 reply	other threads:[~2026-02-06 11:26 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f9227920-a1a7-4f12-92d3-225e8753b32a@bytedance.com \
    --to=wuqiang.matt@bytedance.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-trace-kernel@vger.kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=zhouwenhao7600@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox