From f89ce6df3f14d8107394c0bb1e42d97f448e4da3 Mon Sep 17 00:00:00 2001 From: aminfauzi Date: Sat, 13 Sep 2025 12:29:38 +0800 Subject: [PATCH] fs: Active dynamic fsync by default Signed-off-by: aminfauzi --- fs/Kconfig | 2 +- include/linux/dyn_sync_cntrl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/Kconfig b/fs/Kconfig index e22e48d88a2f..e53d59006e43 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -327,7 +327,7 @@ config FILE_TABLE_DEBUG config DYNAMIC_FSYNC bool "dynamic file sync control" - default n + default y help An experimental file sync control using new power_suspend driver diff --git a/include/linux/dyn_sync_cntrl.h b/include/linux/dyn_sync_cntrl.h index 9d80602d4632..a7f82d263313 100644 --- a/include/linux/dyn_sync_cntrl.h +++ b/include/linux/dyn_sync_cntrl.h @@ -6,7 +6,7 @@ * sdm845 changes by pappschlumpf (Erik Müller) */ -#define DYN_FSYNC_ACTIVE_DEFAULT false +#define DYN_FSYNC_ACTIVE_DEFAULT true #define DYN_FSYNC_VERSION_MAJOR 2 #define DYN_FSYNC_VERSION_MINOR 2