34 lines
979 B
Diff
34 lines
979 B
Diff
|
From 4706a3fb5823c97dc6acc1e86958b71e2c048ec5 Mon Sep 17 00:00:00 2001
|
||
|
From: Steven Barrett <steven@liquorix.net>
|
||
|
Date: Sat, 5 Mar 2022 11:37:14 -0600
|
||
|
Subject: ZEN: INTERACTIVE: mm: Disable unevictable compaction
|
||
|
|
||
|
This option is already disabled when CONFIG_PREEMPT_RT is enabled, lets
|
||
|
turn it off when CONFIG_ZEN_INTERACTIVE is set as well.
|
||
|
---
|
||
|
init/Kconfig | 1 +
|
||
|
mm/Kconfig | 2 +-
|
||
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
--- a/init/Kconfig
|
||
|
+++ b/init/Kconfig
|
||
|
@@ -149,6 +149,7 @@ config ZEN_INTERACTIVE
|
||
|
|
||
|
Background-reclaim hugepages...: no -> yes
|
||
|
MG-LRU minimum cache TTL.......: 0 -> 1000 ms
|
||
|
+ Compact unevictable............: yes -> no
|
||
|
|
||
|
--- EEVDF CPU Scheduler --------------------------------
|
||
|
|
||
|
--- a/mm/Kconfig
|
||
|
+++ b/mm/Kconfig
|
||
|
@@ -649,7 +649,7 @@ config COMPACTION
|
||
|
config COMPACT_UNEVICTABLE_DEFAULT
|
||
|
int
|
||
|
depends on COMPACTION
|
||
|
- default 0 if PREEMPT_RT
|
||
|
+ default 0 if PREEMPT_RT || ZEN_INTERACTIVE
|
||
|
default 1
|
||
|
|
||
|
#
|