diff options
Diffstat (limited to 'block/blk-throttle.c')
-rw-r--r-- | block/blk-throttle.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/block/blk-throttle.c b/block/blk-throttle.c index 680a0cc116dd..9353b4683359 100644 --- a/block/blk-throttle.c +++ b/block/blk-throttle.c | |||
@@ -744,7 +744,7 @@ static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw, | |||
744 | static bool throtl_slice_used(struct throtl_grp *tg, bool rw) | 744 | static bool throtl_slice_used(struct throtl_grp *tg, bool rw) |
745 | { | 745 | { |
746 | if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw])) | 746 | if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw])) |
747 | return 0; | 747 | return false; |
748 | 748 | ||
749 | return 1; | 749 | return 1; |
750 | } | 750 | } |
@@ -842,7 +842,7 @@ static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio, | |||
842 | if (tg->io_disp[rw] + 1 <= io_allowed) { | 842 | if (tg->io_disp[rw] + 1 <= io_allowed) { |
843 | if (wait) | 843 | if (wait) |
844 | *wait = 0; | 844 | *wait = 0; |
845 | return 1; | 845 | return true; |
846 | } | 846 | } |
847 | 847 | ||
848 | /* Calc approx time to dispatch */ | 848 | /* Calc approx time to dispatch */ |
@@ -880,7 +880,7 @@ static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio, | |||
880 | if (tg->bytes_disp[rw] + bio->bi_iter.bi_size <= bytes_allowed) { | 880 | if (tg->bytes_disp[rw] + bio->bi_iter.bi_size <= bytes_allowed) { |
881 | if (wait) | 881 | if (wait) |
882 | *wait = 0; | 882 | *wait = 0; |
883 | return 1; | 883 | return true; |
884 | } | 884 | } |
885 | 885 | ||
886 | /* Calc approx time to dispatch */ | 886 | /* Calc approx time to dispatch */ |
@@ -923,7 +923,7 @@ static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio, | |||
923 | if (tg->bps[rw] == -1 && tg->iops[rw] == -1) { | 923 | if (tg->bps[rw] == -1 && tg->iops[rw] == -1) { |
924 | if (wait) | 924 | if (wait) |
925 | *wait = 0; | 925 | *wait = 0; |
926 | return 1; | 926 | return true; |
927 | } | 927 | } |
928 | 928 | ||
929 | /* | 929 | /* |