[PATCH 0/2] mm: remove redundant static variable initializations

From: Igor Putko

Date: Tue Jun 23 2026 - 07:50:14 EST


This series removes explicit initializations of static bool variables to
false within the mm/ subsystem. In C, static variables without explicit
initialization are implicitly placed in the .bss section and initialized
to zero/false by default. Removing these explicit initializations follows
the Linux kernel coding style and avoids cluttering the data section.

Igor Putko (2):
mm/kasan: remove redundant initialization for kasan_flag_write_only
mm/memory-failure: remove redundant initialization for
hw_memory_failure

mm/kasan/hw_tags.c | 2 +-
mm/memory-failure.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

--
2.34.1