aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/block/bfq-iosched.h
diff options
context:
space:
mode:
authorFrancesco Pollicino <fra.fra.800@gmail.com>2019-03-12 09:59:34 +0100
committerJens Axboe <axboe@kernel.dk>2019-04-01 08:15:40 -0600
commitfffca087d587b03d0d0dca2e86bf8e688fbf2c18 (patch)
tree2ea5b0643ecf6adf4971033b21deaa9cbae63f03 /block/bfq-iosched.h
parentblock, bfq: print SHARED instead of pid for shared queues in logs (diff)
downloadwireguard-linux-fffca087d587b03d0d0dca2e86bf8e688fbf2c18.tar.xz
wireguard-linux-fffca087d587b03d0d0dca2e86bf8e688fbf2c18.zip
block, bfq: save & resume weight on a queue merge/split
bfq saves the state of a queue each time a merge occurs, to be able to resume such a state when the queue is associated again with its original process, on a split. Unfortunately bfq does not save & restore also the weight of the queue. If the weight is not correctly resumed when the queue is recycled, then the weight of the recycled queue could differ from the weight of the original queue. This commit adds the missing save & resume of the weight. Tested-by: Holger Hoffstätte <holger@applied-asynchrony.com> Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name> Signed-off-by: Francesco Pollicino <fra.fra.800@gmail.com> Signed-off-by: Paolo Valente <paolo.valente@linaro.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bfq-iosched.h')
-rw-r--r--block/bfq-iosched.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/block/bfq-iosched.h b/block/bfq-iosched.h
index 67e63c276c7a..60c148728cc5 100644
--- a/block/bfq-iosched.h
+++ b/block/bfq-iosched.h
@@ -405,6 +405,15 @@ struct bfq_io_cq {
bool was_in_burst_list;
/*
+ * Save the weight when a merge occurs, to be able
+ * to restore it in case of split. If the weight is not
+ * correctly resumed when the queue is recycled,
+ * then the weight of the recycled queue could differ
+ * from the weight of the original queue.
+ */
+ unsigned int saved_weight;
+
+ /*
* Similar to previous fields: save wr information.
*/
unsigned long saved_wr_coeff;