blk-throttle: improve bypassing bios checkings
authorYu Kuai <yukuai3@huawei.com>
Wed, 21 Sep 2022 09:53:09 +0000 (17:53 +0800)
committerJens Axboe <axboe@kernel.dk>
Sat, 24 Sep 2022 14:59:43 +0000 (08:59 -0600)
"tg->has_rules" is extended to "tg->has_rules_iops/bps", thus bios that
don't need to be throttled can be checked accurately.

With this patch, bio will be throttled if:

1) Bio is read/write, and corresponding read/write iops limit exist.
2) If corresponding doesn't exist, corresponding bps limit exist and
bio is not throttled before.

Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Acked-by: Tejun Heo <tj@kernel.org>
Link: https://lore.kernel.org/r/20220921095309.1481289-3-yukuai1@huaweicloud.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-throttle.c
block/blk-throttle.h

index a062539d84d08765caecc5c2c37d0b38086455e6..78316955e30fe3aecc25e57192960cd7ae5d1d57 100644 (file)
@@ -421,11 +421,16 @@ static void tg_update_has_rules(struct throtl_grp *tg)
        struct throtl_data *td = tg->td;
        int rw;
 
-       for (rw = READ; rw <= WRITE; rw++)
-               tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
+       for (rw = READ; rw <= WRITE; rw++) {
+               tg->has_rules_iops[rw] =
+                       (parent_tg && parent_tg->has_rules_iops[rw]) ||
                        (td->limit_valid[td->limit_index] &&
-                        (tg_bps_limit(tg, rw) != U64_MAX ||
-                         tg_iops_limit(tg, rw) != UINT_MAX));
+                         tg_iops_limit(tg, rw) != UINT_MAX);
+               tg->has_rules_bps[rw] =
+                       (parent_tg && parent_tg->has_rules_bps[rw]) ||
+                       (td->limit_valid[td->limit_index] &&
+                        (tg_bps_limit(tg, rw) != U64_MAX));
+       }
 }
 
 static void throtl_pd_online(struct blkg_policy_data *pd)
index 3994b89dfa11d0e0a8ded7179c4637858dc4fc22..69f00012d616299557a65e242237affccafd9f5c 100644 (file)
@@ -98,7 +98,8 @@ struct throtl_grp {
        unsigned int flags;
 
        /* are there any throtl rules between this group and td? */
-       bool has_rules[2];
+       bool has_rules_bps[2];
+       bool has_rules_iops[2];
 
        /* internally used bytes per second rate limits */
        uint64_t bps[2][LIMIT_CNT];
@@ -178,11 +179,26 @@ void blk_throtl_exit(struct request_queue *q);
 void blk_throtl_register_queue(struct request_queue *q);
 bool __blk_throtl_bio(struct bio *bio);
 void blk_throtl_cancel_bios(struct request_queue *q);
-static inline bool blk_throtl_bio(struct bio *bio)
+
+static inline bool blk_should_throtl(struct bio *bio)
 {
        struct throtl_grp *tg = blkg_to_tg(bio->bi_blkg);
+       int rw = bio_data_dir(bio);
+
+       /* iops limit is always counted */
+       if (tg->has_rules_iops[rw])
+               return true;
+
+       if (tg->has_rules_bps[rw] && !bio_flagged(bio, BIO_BPS_THROTTLED))
+               return true;
+
+       return false;
+}
+
+static inline bool blk_throtl_bio(struct bio *bio)
+{
 
-       if (!tg->has_rules[bio_data_dir(bio)])
+       if (!blk_should_throtl(bio))
                return false;
 
        return __blk_throtl_bio(bio);