OSDN Git Service

block: fix boolreturn.cocci warning
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Fri, 28 Jan 2022 04:34:54 +0000 (12:34 +0800)
committerJens Axboe <axboe@kernel.dk>
Wed, 2 Feb 2022 14:50:00 +0000 (07:50 -0700)
commit455a844d6345639be682977b3f0126be446b702e
treea3de13d2c767d555519438f2904cc84e0734202b
parent3767c902719befe44067717fa893a9ef8cb8747d
block: fix boolreturn.cocci warning

Return statements in functions returning bool should use true/false
instead of 1/0.

./block/bio.c:1081:9-10: WARNING: return of 0/1 in function
'bio_add_folio' with return type bool.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Link: https://lore.kernel.org/r/20220128043454.68927-1-jiapeng.chong@linux.alibaba.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/bio.c