Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1728739
| From | Luca Miccio <lucmiccio@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] block,bfq: Disable writeback throttling |
| Date | 2017-09-08 12:00 +0200 |
| Message-ID | <unoeS-528-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Similarly to CFQ, BFQ has its write-throttling heuristics, and it is better not to combine them with further write-throttling heuristics of a different nature. So this commit disables write-back throttling for a device if BFQ is used as I/O scheduler for that device. Signed-off-by: Luca Miccio <lucmiccio@gmail.com> Signed-off-by: Paolo Valente <paolo.valente@linaro.org> --- block/bfq-iosched.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/block/bfq-iosched.c b/block/bfq-iosched.c index 436b6ca..4feae52 100644 --- a/block/bfq-iosched.c +++ b/block/bfq-iosched.c @@ -108,6 +108,7 @@ #include "blk-mq-tag.h" #include "blk-mq-sched.h" #include "bfq-iosched.h" +#include "blk-wbt.h" #define BFQ_BFQQ_FNS(name) \ void bfq_mark_bfqq_##name(struct bfq_queue *bfqq) \ @@ -4760,7 +4761,7 @@ static int bfq_init_queue(struct request_queue *q, struct elevator_type *e) bfq_init_root_group(bfqd->root_group, bfqd); bfq_init_entity(&bfqd->oom_bfqq.entity, bfqd->root_group); - + wbt_disable_default(q); return 0; out_free: -- 2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] block,bfq: Disable writeback throttling Luca Miccio <lucmiccio@gmail.com> - 2017-09-08 12:00 +0200
csiph-web