aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Baolin Wang <baolin.wang@linux.alibaba.com> 2020-09-07 16:10:14 +0800
committerGravatar Jens Axboe <axboe@kernel.dk> 2020-09-14 19:36:54 -0600
commitff8b22c0f258c936460b436f6d78ed49a3b2a4cf (patch)
tree8b33647d81a925627205a395e7e2fa6d260d18c2
parentblk-throttle: Fix some comments' typos (diff)
downloadlinux-ff8b22c0f258c936460b436f6d78ed49a3b2a4cf.tar.gz
linux-ff8b22c0f258c936460b436f6d78ed49a3b2a4cf.tar.bz2
linux-ff8b22c0f258c936460b436f6d78ed49a3b2a4cf.zip
blk-throttle: Use readable READ/WRITE macros
Use readable READ/WRITE macros instead of magic numbers. Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r--block/blk-throttle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk-throttle.c b/block/blk-throttle.c
index 2fc6c3e0d4a0..06e73ed3e774 100644
--- a/block/blk-throttle.c
+++ b/block/blk-throttle.c
@@ -1428,8 +1428,8 @@ static void tg_conf_updated(struct throtl_grp *tg, bool global)
* that a group's limit are dropped suddenly and we don't want to
* account recently dispatched IO with new low rate.
*/
- throtl_start_new_slice(tg, 0);
- throtl_start_new_slice(tg, 1);
+ throtl_start_new_slice(tg, READ);
+ throtl_start_new_slice(tg, WRITE);
if (tg->flags & THROTL_TG_PENDING) {
tg_update_disptime(tg);