block: change return type to bool
authorChengguang Xu <cgxu519@gmx.com>
Thu, 16 Aug 2018 14:51:40 +0000 (22:51 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 16 Aug 2018 19:44:17 +0000 (13:44 -0600)
Because blk_do_io_stat() only does a judgement about the request
contributes to IO statistics, it better changes return type to bool.

Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk.h

index d4d67e94892042d4faefa12484438020af1edd9c..644975e85053a90810dd0afa8c9117f076391b00 100644 (file)
@@ -297,7 +297,7 @@ extern int blk_update_nr_requests(struct request_queue *, unsigned int);
  *     b) the queue had IO stats enabled when this request was started, and
  *     c) it's a file system request
  */
-static inline int blk_do_io_stat(struct request *rq)
+static inline bool blk_do_io_stat(struct request *rq)
 {
        return rq->rq_disk &&
               (rq->rq_flags & RQF_IO_STAT) &&