Commit d160ef71 authored by Xiaolei Wang's avatar Xiaolei Wang Committed by Andrew Morton

Rename kmemleak_initialized to kmemleak_late_initialized

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.

Link: https://lkml.kernel.org/r/20230815144128.3623103-3-xiaolei.wang@windriver.comSigned-off-by: default avatarXiaolei Wang <xiaolei.wang@windriver.com>
Acked-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Konovalov <andreyknvl@gmail.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 835bc157
...@@ -218,7 +218,7 @@ static int kmemleak_enabled = 1; ...@@ -218,7 +218,7 @@ static int kmemleak_enabled = 1;
/* same as above but only for the kmemleak_free() callback */ /* same as above but only for the kmemleak_free() callback */
static int kmemleak_free_enabled = 1; static int kmemleak_free_enabled = 1;
/* set in the late_initcall if there were no errors */ /* 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 */ /* set if a kmemleak warning was issued */
static int kmemleak_warning; static int kmemleak_warning;
/* set if a fatal kmemleak error has occurred */ /* set if a fatal kmemleak error has occurred */
...@@ -2057,7 +2057,7 @@ static void kmemleak_disable(void) ...@@ -2057,7 +2057,7 @@ static void kmemleak_disable(void)
kmemleak_enabled = 0; kmemleak_enabled = 0;
/* check whether it is too early for a kernel thread */ /* check whether it is too early for a kernel thread */
if (kmemleak_initialized) if (kmemleak_late_initialized)
schedule_work(&cleanup_work); schedule_work(&cleanup_work);
else else
kmemleak_free_enabled = 0; kmemleak_free_enabled = 0;
...@@ -2122,7 +2122,7 @@ void __init kmemleak_init(void) ...@@ -2122,7 +2122,7 @@ void __init kmemleak_init(void)
*/ */
static int __init kmemleak_late_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); debugfs_create_file("kmemleak", 0644, NULL, NULL, &kmemleak_fops);
...@@ -2130,7 +2130,7 @@ static int __init kmemleak_late_init(void) ...@@ -2130,7 +2130,7 @@ static int __init kmemleak_late_init(void)
/* /*
* Some error occurred and kmemleak was disabled. There is a * Some error occurred and kmemleak was disabled. There is a
* small chance that kmemleak_disable() was called immediately * 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. * two clean-up threads but serialized by scan_mutex.
*/ */
schedule_work(&cleanup_work); schedule_work(&cleanup_work);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment