* [PATCH v3 0/2] mm/kmemleak: use object_cache instead of kmemleak_initialized
@ 2023-08-15 14:41 Xiaolei Wang
2023-08-15 14:41 ` [PATCH v3 1/2] mm/kmemleak: use object_cache instead of kmemleak_initialized to check in set_track_prepare() Xiaolei Wang
2023-08-15 14:41 ` [PATCH v3 2/2] Rename kmemleak_initialized to kmemleak_late_initialized Xiaolei Wang
0 siblings, 2 replies; 3+ messages in thread
From: Xiaolei Wang @ 2023-08-15 14:41 UTC (permalink / raw)
To: catalin.marinas, akpm, vbabka, glider, andreyknvl, zhaoyang.huang
Cc: linux-mm, linux-kernel
use object_cache instead of kmemleak_initialized to check in
set_track_prepare(), so that memory leaks after kmemleak_init()
can be recorded and Rename kmemleak_initialized to
kmemleak_late_initialized
unreferenced object 0xc674ca80 (size 64):
comm "swapper/0", pid 1, jiffies 4294938337 (age 204.880s)
hex dump (first 32 bytes):
80 55 75 c6 80 54 75 c6 00 55 75 c6 80 52 75 c6 .Uu..Tu..Uu..Ru.
00 53 75 c6 00 00 00 00 00 00 00 00 00 00 00 00 .Su..........
Change in V3:
The comment in set_track_prepare() in patch1 is updated to
/*
* Use object_cache to determine whether kmemleak_init() has
* been invoked.stack_depot_early_init() is called before
* kmemleak_init() in mm_core_init().
*/
Updated the commit log in patch2, Rename kmemleak_initialized to
kmemleak_late_initialized indicates that kmemleak_late_init() is complete
Change in V2:
Delete patch1 in v1 version, change patch2, use object_cache instead of
kmemleak_initialized to check in set_track_prepare(), so that memory leak
after kmemleak_init() can be recorded, and rename kmemleak_initialized to
kmemleak_late_initialized
Xiaolei Wang (2):
mm/kmemleak: use object_cache instead of kmemleak_initialized to check
in set_track_prepare()
Rename kmemleak_initialized to kmemleak_late_initialized
mm/kmemleak.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH v3 1/2] mm/kmemleak: use object_cache instead of kmemleak_initialized to check in set_track_prepare()
2023-08-15 14:41 [PATCH v3 0/2] mm/kmemleak: use object_cache instead of kmemleak_initialized Xiaolei Wang
@ 2023-08-15 14:41 ` Xiaolei Wang
2023-08-15 14:41 ` [PATCH v3 2/2] Rename kmemleak_initialized to kmemleak_late_initialized Xiaolei Wang
1 sibling, 0 replies; 3+ messages in thread
From: Xiaolei Wang @ 2023-08-15 14:41 UTC (permalink / raw)
To: catalin.marinas, akpm, vbabka, glider, andreyknvl, zhaoyang.huang
Cc: linux-mm, linux-kernel
kmemleak_initialized is set in kmemleak_late_init(), which
also means that there is no call trace which object's memory
leak is before kmemleak_late_init(), so use object_cache instead
of kmemleak_initialized to check in set_track_prepare() to avoid
no call trace records when there is a memory leak in the code
between kmemleak_init() and kmemleak_late_init().
unreferenced object 0xc674ca80 (size 64):
comm "swapper/0", pid 1, jiffies 4294938337 (age 204.880s)
hex dump (first 32 bytes):
80 55 75 c6 80 54 75 c6 00 55 75 c6 80 52 75 c6 .Uu..Tu..Uu..Ru.
00 53 75 c6 00 00 00 00 00 00 00 00 00 00 00 00 .Su..........
Fixes: 56a61617dd22 ("mm: use stack_depot for recording kmemleak's backtrace")
Signed-off-by: Xiaolei Wang <xiaolei.wang@windriver.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
---
mm/kmemleak.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/mm/kmemleak.c b/mm/kmemleak.c
index a2d34226e3c8..16fc7b0984b9 100644
--- a/mm/kmemleak.c
+++ b/mm/kmemleak.c
@@ -610,7 +610,12 @@ static noinline depot_stack_handle_t set_track_prepare(void)
unsigned long entries[MAX_TRACE];
unsigned int nr_entries;
- if (!kmemleak_initialized)
+ /*
+ * Use object_cache to determine whether kmemleak_init() has
+ * been invoked. stack_depot_early_init() is called before
+ * kmemleak_init() in mm_core_init().
+ */
+ if (!object_cache)
return 0;
nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 3);
trace_handle = stack_depot_save(entries, nr_entries, GFP_NOWAIT);
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH v3 2/2] Rename kmemleak_initialized to kmemleak_late_initialized
2023-08-15 14:41 [PATCH v3 0/2] mm/kmemleak: use object_cache instead of kmemleak_initialized Xiaolei Wang
2023-08-15 14:41 ` [PATCH v3 1/2] mm/kmemleak: use object_cache instead of kmemleak_initialized to check in set_track_prepare() Xiaolei Wang
@ 2023-08-15 14:41 ` Xiaolei Wang
1 sibling, 0 replies; 3+ messages in thread
From: Xiaolei Wang @ 2023-08-15 14:41 UTC (permalink / raw)
To: catalin.marinas, akpm, vbabka, glider, andreyknvl, zhaoyang.huang
Cc: linux-mm, linux-kernel
The old name is confusing because it implies the
completion of earlier kmemleak_init(), the new name
update to kmemleak_late_initial represents the completion
of kmemleak_late_init().
No functional changes.
Signed-off-by: Xiaolei Wang <xiaolei.wang@windriver.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
---
mm/kmemleak.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/mm/kmemleak.c b/mm/kmemleak.c
index 16fc7b0984b9..2918150e31bd 100644
--- a/mm/kmemleak.c
+++ b/mm/kmemleak.c
@@ -218,7 +218,7 @@ static int kmemleak_enabled = 1;
/* same as above but only for the kmemleak_free() callback */
static int kmemleak_free_enabled = 1;
/* set in the late_initcall if there were no errors */
-static int kmemleak_initialized;
+static int kmemleak_late_initialized;
/* set if a kmemleak warning was issued */
static int kmemleak_warning;
/* set if a fatal kmemleak error has occurred */
@@ -2057,7 +2057,7 @@ static void kmemleak_disable(void)
kmemleak_enabled = 0;
/* check whether it is too early for a kernel thread */
- if (kmemleak_initialized)
+ if (kmemleak_late_initialized)
schedule_work(&cleanup_work);
else
kmemleak_free_enabled = 0;
@@ -2122,7 +2122,7 @@ void __init kmemleak_init(void)
*/
static int __init kmemleak_late_init(void)
{
- kmemleak_initialized = 1;
+ kmemleak_late_initialized = 1;
debugfs_create_file("kmemleak", 0644, NULL, NULL, &kmemleak_fops);
@@ -2130,7 +2130,7 @@ static int __init kmemleak_late_init(void)
/*
* Some error occurred and kmemleak was disabled. There is a
* small chance that kmemleak_disable() was called immediately
- * after setting kmemleak_initialized and we may end up with
+ * after setting kmemleak_late_initialized and we may end up with
* two clean-up threads but serialized by scan_mutex.
*/
schedule_work(&cleanup_work);
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-15 14:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-15 14:41 [PATCH v3 0/2] mm/kmemleak: use object_cache instead of kmemleak_initialized Xiaolei Wang
2023-08-15 14:41 ` [PATCH v3 1/2] mm/kmemleak: use object_cache instead of kmemleak_initialized to check in set_track_prepare() Xiaolei Wang
2023-08-15 14:41 ` [PATCH v3 2/2] Rename kmemleak_initialized to kmemleak_late_initialized Xiaolei Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox