From: Charan Teja Kalla <quic_charante@quicinc.com>
To: <Liam.Howlett@oracle.com>, Matthew Wilcox <willy@infradead.org>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Purpose of maple_node objects to be its size aligned
Date: Tue, 23 Jan 2024 16:33:51 +0530 [thread overview]
Message-ID: <56154bf4-c1e2-16d5-c6e2-c2dee42d3377@quicinc.com> (raw)
I am just curious about the purpose of maple node slab objects to be its
size aligned, but I can understand why they need to be cache aligned.
void __init maple_tree_init(void)
{
maple_node_cache = kmem_cache_create("maple_node",
sizeof(struct maple_node),
sizeof(struct maple_node),// Alignment of the slab object.
SLAB_PANIC, NULL);
}
Reason for the ask is, when slub debug enabled with option Z, the change
[1] makes the total object to be 256 * 3 (=768)bytes. This turns out to
be a problem in debug builds where the unreclaimable slab consumption
itself is very high thus exerting the memory pressure on the system.
maple_node:
orginal object size = 256b
after slub_debug enabled = 768b
If, there is no special requirement, other than just needs to be cache
aligned, thinking of the below:
--- a/lib/maple_tree.c
+++ b/lib/maple_tree.c
@@ -6283,8 +6283,8 @@ bool mas_nomem(struct ma_state *mas, gfp_t gfp)
void __init maple_tree_init(void)
{
maple_node_cache = kmem_cache_create("maple_node",
- sizeof(struct maple_node), sizeof(struct
maple_node),
- SLAB_PANIC, NULL);
+ sizeof(struct maple_node), 0,
+ SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
}
[1]d86bd1bece6f ("mm/slub: support left redzone")
Thanks,
charan
next reply other threads:[~2024-01-23 11:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-23 11:03 Charan Teja Kalla [this message]
2024-01-23 13:26 ` Matthew Wilcox
2024-01-23 14:40 ` Charan Teja Kalla
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=56154bf4-c1e2-16d5-c6e2-c2dee42d3377@quicinc.com \
--to=quic_charante@quicinc.com \
--cc=Liam.Howlett@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--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