if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
                return false;
 
-       return 1;
+       return true;
 }
 
 /* Trim the used slices and adjust slice start accordingly */
 
        if (wait)
                *wait = jiffy_wait;
-       return 0;
+       return false;
 }
 
 static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
        jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
        if (wait)
                *wait = jiffy_wait;
-       return 0;
+       return false;
 }
 
 /*
            tg_with_in_iops_limit(tg, bio, &iops_wait)) {
                if (wait)
                        *wait = 0;
-               return 1;
+               return true;
        }
 
        max_wait = max(bps_wait, iops_wait);
        if (time_before(tg->slice_end[rw], jiffies + max_wait))
                throtl_extend_slice(tg, rw, jiffies + max_wait);
 
-       return 0;
+       return false;
 }
 
 static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)