hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/fs/erofs/Kconfig
....@@ -77,3 +77,20 @@
7777
7878 If you don't want to enable compression feature, say N.
7979
80
+config EROFS_FS_PCPU_KTHREAD
81
+ bool "EROFS per-cpu decompression kthread workers"
82
+ depends on EROFS_FS_ZIP
83
+ help
84
+ Saying Y here enables per-CPU kthread workers pool to carry out
85
+ async decompression for low latencies on some architectures.
86
+
87
+ If unsure, say N.
88
+
89
+config EROFS_FS_PCPU_KTHREAD_HIPRI
90
+ bool "EROFS high priority per-CPU kthread workers"
91
+ depends on EROFS_FS_ZIP && EROFS_FS_PCPU_KTHREAD
92
+ help
93
+ This permits EROFS to configure per-CPU kthread workers to run
94
+ at higher priority.
95
+
96
+ If unsure, say N.