UPSTREAM: f2fs: set highest IO priority for checkpoint thread

The checkpoint is the top priority thread which can stop all the filesystem
operations. Let's make it RT priority.

Reviewed-by: Daeho Jeong <daehojeong@google.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Change-Id: I5c6bdaa9cd46f0263e3ff6d845cb39fae61a4e13
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
(cherry picked from commit 8a2d9f00d502e6ef68c6d52f0863856040ddd2db)
This commit is contained in:
Jaegeuk Kim
2025-03-03 22:16:21 +00:00
committed by Carlos Llamas
parent d8e2871f84
commit dcce73bf14
+1 -1
View File
@@ -22,7 +22,7 @@
#include <trace/events/f2fs.h>
#include <trace/hooks/fs.h>
#define DEFAULT_CHECKPOINT_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
#define DEFAULT_CHECKPOINT_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_RT, 3))
static struct kmem_cache *ino_entry_slab;
struct kmem_cache *f2fs_inode_entry_slab;