From cf85034af6062898886f659b73582a80b6688fc3 Mon Sep 17 00:00:00 2001 From: Eric Naim Date: Mon, 25 Nov 2024 13:25:49 +0800 Subject: [PATCH] sysctl: Remove vm.dirty_expire_centisecs This has always been commented. Even if not, the value set is the same as the kernel default. Unless we want to tweak the value, keeping this here is redundant. Signed-off-by: Eric Naim --- usr/lib/sysctl.d/99-cachyos-settings.conf | 6 ------ 1 file changed, 6 deletions(-) diff --git a/usr/lib/sysctl.d/99-cachyos-settings.conf b/usr/lib/sysctl.d/99-cachyos-settings.conf index 0ad64eb..28076c8 100644 --- a/usr/lib/sysctl.d/99-cachyos-settings.conf +++ b/usr/lib/sysctl.d/99-cachyos-settings.conf @@ -23,12 +23,6 @@ vm.page-cluster = 0 # dirty data. vm.dirty_background_bytes = 134217728 -# This tunable is used to define when dirty data is old enough to be eligible for writeout by the -# kernel flusher threads. It is expressed in 100'ths of a second. Data which has been dirty -# in-memory for longer than this interval will be written out next time a flusher thread wakes up -# (Default is 3000). -#vm.dirty_expire_centisecs = 3000 - # The kernel flusher threads will periodically wake up and write old data out to disk. This # tunable expresses the interval between those wakeups, in 100'ths of a second (Default is 500). vm.dirty_writeback_centisecs = 1500