diff options
author | 2025-04-30 16:59:46 -0400 | |
---|---|---|
committer | 2025-05-12 23:50:47 -0700 | |
commit | befbb2540aaea90993e150a84e342f04e24f3476 (patch) | |
tree | 6defc3d0bd6ba64cefbf0a2606738eaaa550b8a4 | |
parent | mm: kmemleak: drop kmemleak_warning variable (diff) | |
download | wireguard-linux-befbb2540aaea90993e150a84e342f04e24f3476.tar.xz wireguard-linux-befbb2540aaea90993e150a84e342f04e24f3476.zip |
mm: kmemleak: drop wrong comment
Newly created objects have object->count == 0, so the comment is
incorrect. Just drop it.
Link: https://lkml.kernel.org/r/3dfd09bc0e77bb626619184a808774ff07de275c.1746046744.git.luizcap@redhat.com
Signed-off-by: Luiz Capitulino <luizcap@redhat.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | mm/kmemleak.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mm/kmemleak.c b/mm/kmemleak.c index e6df94c7b032..06baa3475252 100644 --- a/mm/kmemleak.c +++ b/mm/kmemleak.c @@ -322,8 +322,6 @@ static void hex_dump_object(struct seq_file *seq, * sufficient references to it (count >= min_count) * - black - ignore, it doesn't contain references (e.g. text section) * (min_count == -1). No function defined for this color. - * Newly created objects don't have any color assigned (object->count == -1) - * before the next memory scan when they become white. */ static bool color_white(const struct kmemleak_object *object) { |