From: Huan Yang <link@vivo.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@kernel.org>,
Roman Gushchin <roman.gushchin@linux.dev>,
Shakeel Butt <shakeel.butt@linux.dev>,
Muchun Song <muchun.song@linux.dev>,
Andrew Morton <akpm@linux-foundation.org>,
Petr Mladek <pmladek@suse.com>, Vlastimil Babka <vbabka@suse.cz>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Francesco Valla <francesco@valla.it>,
Raul E Rangel <rrangel@chromium.org>,
"Paul E. McKenney" <paulmck@kernel.org>,
Huang Shijie <shijie@os.amperecomputing.com>,
Guo Weikang <guoweikang.kernel@gmail.com>,
"Uladzislau Rezki (Sony)" <urezki@gmail.com>,
KP Singh <kpsingh@kernel.org>,
cgroups@vger.kernel.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, opensource.kernel@vivo.com
Subject: Re: [PATCH v3 0/3] Use kmem_cache for memcg alloc
Date: Mon, 28 Apr 2025 10:19:41 +0800 [thread overview]
Message-ID: <6fe7bb8c-9c04-4c3f-aea8-2d938de123ed@vivo.com> (raw)
In-Reply-To: <aAsRCj-niMMTtmK8@casper.infradead.org>
Hi Matthew,
在 2025/4/25 12:35, Matthew Wilcox 写道:
> On Fri, Apr 25, 2025 at 11:19:22AM +0800, Huan Yang wrote:
>> Key Observations:
>> 1. Both structures use kmalloc with requested sizes between 2KB-4KB
>> 2. Allocation alignment forces 4KB slab usage due to pre-defined sizes
>> (64B, 128B,..., 2KB, 4KB, 8KB)
>> 3. Memory waste per memcg instance:
>> Base struct: 4096 - 2312 = 1784 bytes
>> Per-node struct: 4096 - 2896 = 1200 bytes
>> Total waste: 2984 bytes (1-node system)
>> NUMA scaling: (1200 + 8) * nr_node_ids bytes
>> So, it's a little waste.
> [...]
>
>> This indicates that the `mem_cgroup` struct now requests 2312 bytes
>> and is allocated 2368 bytes, while `mem_cgroup_per_node` requests 2896 bytes
>> and is allocated 2944 bytes.
>> The slight increase in allocated size is due to `SLAB_HWCACHE_ALIGN` in the
>> `kmem_cache`.
>>
>> Without `SLAB_HWCACHE_ALIGN`, the allocation might appear as:
>>
>> # mem_cgroup struct allocation
>> sh-9269 [003] ..... 80.396366: kmem_cache_alloc:
>> call_site=mem_cgroup_css_alloc+0xbc/0x5d4 ptr=000000005b12b475
>> bytes_req=2312 bytes_alloc=2312 gfp_flags=GFP_KERNEL|__GFP_ZERO node=-1
>> accounted=false
>>
>> # mem_cgroup_per_node allocation
>> sh-9269 [003] ..... 80.396411: kmem_cache_alloc:
>> call_site=mem_cgroup_css_alloc+0x1b8/0x5d4 ptr=00000000f347adc6
>> bytes_req=2896 bytes_alloc=2896 gfp_flags=GFP_KERNEL|__GFP_ZERO node=0
>> accounted=false
>>
>> While the `bytes_alloc` now matches the `bytes_req`, this patchset defaults
>> to using `SLAB_HWCACHE_ALIGN` as it is generally considered more beneficial
>> for performance. Please let me know if there are any issues or if I've
>> misunderstood anything.
> This isn't really the right way to think about this. Memory is ultimately
> allocated from the page allocator. So what you want to know is how many
> objects you get per page. Before, it's one per page (since both objects
> are between 2k and 4k and rounded up to 4k). After, slab will create
> slabs of a certain order to minimise waste, but also not inflate the
> allocation order too high. Let's assume it goes all the way to order 3
> (like kmalloc-4k does), so you want to know how many objects fit in a
> 32KiB allocation.
>
> With HWCACHE_ALIGN, you get floor(32768/2368) = 13 and
> floor(32768/2944) = 11.
>
> Without HWCACHE_ALIGN( you get floor(32768/2312) = 14 and
> floor(32768/2896) = 11.
Yes, thanks. And, this can easily observe with the following command:
# show mem_cgroup slab's order, it's 3.
cat /sys/kernel/slab/mem_cgroup/order
# show mem_cgroup slab's objs per slab, it's 13
cat /sys/kernel/slab/mem_cgroup/objs_per_slab
And we can quickly calculate the Page order obtained by the slab allocation and the number of objs it can store:
# mem_cgroup,2368 size
| ORDER | SIZE | NUM_OBJS | ORIGIN |
| ----------- | ------- | ---------------- | ---------- |
| 3 | 32KB | 13 | 8 |
| 2 | 16KB | 6 | 4 |
| 1 | 8KB | 3 | 2 |
| 0 | 4KB | 1 | 1 |
# mem_cgroup_per_node,2944 size
| ORDER | SIZE | NUM_OBJS | ORIGIN |
| ----------- | ------- | ---------------- | ---------- |
| 3 | 32KB | 11 | 8 |
| 2 | 16KB | 5 | 4 |
| 1 | 8KB | 2 | 2 |
| 0 | 4KB | 1 | 1 |
So, for mem_cgroup, if page order > 1, then have optimize; while mem_cgroup_per_node needs order 2. :)
>
> So there is a packing advantage to turning off HWCACHE_ALIGN (for the
> first slab; no difference for the second). BUT! Now you have cacheline
> aliasing between two objects, and that's probably bad. It's the kind
> of performance problem that's really hard to see.
Yes, And I would like to learn, in what situations do you think HWCACHE UNALIGN might cause issues?
Could it be direct memory reclaim by multiple processes? Or multiple processes charging memory simultaneously?
>
> Anyway, you've gone from allocating 8 objects per 32KiB to allocating
> 13 objects per 32KiB, a 62% improvement in memory consumption.
Thanks, that's more clearer.
Huan
prev parent reply other threads:[~2025-04-28 2:20 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 3:19 Huan Yang
2025-04-25 3:19 ` [PATCH v3 1/3] mm/memcg: move mem_cgroup_init() ahead of cgroup_init() Huan Yang
2025-04-25 4:11 ` Shakeel Butt
2025-04-28 2:20 ` Huan Yang
2025-04-27 11:46 ` Johannes Weiner
2025-04-28 2:20 ` Huan Yang
2025-04-25 3:19 ` [PATCH v3 2/3] mm/memcg: use kmem_cache when alloc memcg Huan Yang
2025-04-25 4:12 ` Shakeel Butt
2025-04-27 11:56 ` Johannes Weiner
2025-04-25 3:19 ` [PATCH v3 3/3] mm/memcg: use kmem_cache when alloc memcg pernode info Huan Yang
2025-04-25 4:12 ` Shakeel Butt
2025-04-27 12:00 ` Johannes Weiner
2025-04-25 4:35 ` [PATCH v3 0/3] Use kmem_cache for memcg alloc Matthew Wilcox
2025-04-28 2:19 ` Huan Yang [this message]
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=6fe7bb8c-9c04-4c3f-aea8-2d938de123ed@vivo.com \
--to=link@vivo.com \
--cc=akpm@linux-foundation.org \
--cc=cgroups@vger.kernel.org \
--cc=francesco@valla.it \
--cc=guoweikang.kernel@gmail.com \
--cc=hannes@cmpxchg.org \
--cc=kpsingh@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux@rasmusvillemoes.dk \
--cc=mhocko@kernel.org \
--cc=muchun.song@linux.dev \
--cc=opensource.kernel@vivo.com \
--cc=paulmck@kernel.org \
--cc=pmladek@suse.com \
--cc=roman.gushchin@linux.dev \
--cc=rrangel@chromium.org \
--cc=shakeel.butt@linux.dev \
--cc=shijie@os.amperecomputing.com \
--cc=urezki@gmail.com \
--cc=vbabka@suse.cz \
--cc=willy@infradead.org \
/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