24 lines
804 B
Diff
24 lines
804 B
Diff
|
From 08580ad4d8ffb10cb30a228361d2d914a1502e3c Mon Sep 17 00:00:00 2001
|
||
|
From: Alexandre Frade <kernel@xanmod.org>
|
||
|
Date: Mon, 16 Sep 2024 15:36:01 +0000
|
||
|
Subject: [PATCH 09/19] XANMOD: block: Set rq_affinity to force complete I/O
|
||
|
requests on same CPU
|
||
|
|
||
|
Signed-off-by: Alexandre Frade <kernel@xanmod.org>
|
||
|
---
|
||
|
include/linux/blkdev.h | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
--- a/include/linux/blkdev.h
|
||
|
+++ b/include/linux/blkdev.h
|
||
|
@@ -605,7 +605,8 @@ enum {
|
||
|
QUEUE_FLAG_MAX
|
||
|
};
|
||
|
|
||
|
-#define QUEUE_FLAG_MQ_DEFAULT (1UL << QUEUE_FLAG_SAME_COMP)
|
||
|
+#define QUEUE_FLAG_MQ_DEFAULT ((1UL << QUEUE_FLAG_SAME_COMP) | \
|
||
|
+ (1UL << QUEUE_FLAG_SAME_FORCE))
|
||
|
|
||
|
void blk_queue_flag_set(unsigned int flag, struct request_queue *q);
|
||
|
void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
|