linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] alloc_tag: check mem_profiling_support in alloc_tag_init
@ 2025-05-08 23:47 Casey Chen
  2025-05-09 16:11 ` Suren Baghdasaryan
  0 siblings, 1 reply; 3+ messages in thread
From: Casey Chen @ 2025-05-08 23:47 UTC (permalink / raw)
  To: linux-mm; +Cc: surenb, kent.overstreet, yzhong, Casey Chen

Allocate module tags and register codetag type only when
mem_profiling_support is true. If it is set as false,
for example by sysctl.vm.mem_profiling=never, skip them.

Signed-off-by: Casey Chen <cachen@purestorage.com>
Reviewed-by: Yuanyuan Zhong <yzhong@purestorage.com>
---
 lib/alloc_tag.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/lib/alloc_tag.c b/lib/alloc_tag.c
index 25ecc1334b67..fbf128072c7e 100644
--- a/lib/alloc_tag.c
+++ b/lib/alloc_tag.c
@@ -762,14 +762,16 @@ static int __init alloc_tag_init(void)
 	};
 	int res;
 
-	res = alloc_mod_tags_mem();
-	if (res)
-		return res;
-
-	alloc_tag_cttype = codetag_register_type(&desc);
-	if (IS_ERR(alloc_tag_cttype)) {
-		free_mod_tags_mem();
-		return PTR_ERR(alloc_tag_cttype);
+	if (mem_profiling_support) {
+		res = alloc_mod_tags_mem();
+		if (res)
+			return res;
+
+		alloc_tag_cttype = codetag_register_type(&desc);
+		if (IS_ERR(alloc_tag_cttype)) {
+			free_mod_tags_mem();
+			return PTR_ERR(alloc_tag_cttype);
+		}
 	}
 
 	sysctl_init();
-- 
2.49.0



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-05-12 16:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-05-08 23:47 [PATCH v2] alloc_tag: check mem_profiling_support in alloc_tag_init Casey Chen
2025-05-09 16:11 ` Suren Baghdasaryan
2025-05-12 16:48   ` Suren Baghdasaryan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox