From: Bart Van Assche Date: Thu, 14 Jul 2022 18:06:44 +0000 (-0700) Subject: block/zram: Use enum req_op where appropriate X-Git-Tag: v6.0-rc1~178^2~69 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bc0421ea44b82d2108bcf79e020498c5ff0000af;p=tomoyo%2Ftomoyo-test1.git block/zram: Use enum req_op where appropriate Improve static type checking by using the enum req_op type where appropriate. Cc: Minchan Kim Cc: Nitin Gupta Cc: Sergey Senozhatsky Signed-off-by: Bart Van Assche Link: https://lore.kernel.org/r/20220714180729.1065367-19-bvanassche@acm.org Signed-off-by: Jens Axboe --- diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c index a35b86c58aa2..4abeb261b833 100644 --- a/drivers/block/zram/zram_drv.c +++ b/drivers/block/zram/zram_drv.c @@ -1523,7 +1523,7 @@ static void zram_bio_discard(struct zram *zram, u32 index, * Returns 1 if IO request was successfully submitted. */ static int zram_bvec_rw(struct zram *zram, struct bio_vec *bvec, u32 index, - int offset, unsigned int op, struct bio *bio) + int offset, enum req_op op, struct bio *bio) { int ret;