diff options
author | Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> | 2019-06-28 16:29:04 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-06-29 09:36:37 -0600 |
commit | 152c762e92609965b542c31a7627ad05893f70d9 (patch) | |
tree | 66d67680ed8595edfc3b57bef7b386bed079beb6 /drivers/block | |
parent | dbc3117d4ca9e17819ac73501e914b8422686750 (diff) | |
download | linux-152c762e92609965b542c31a7627ad05893f70d9.tar.gz linux-152c762e92609965b542c31a7627ad05893f70d9.tar.bz2 linux-152c762e92609965b542c31a7627ad05893f70d9.zip |
null_blk: fix type mismatch null_handle_cmd()
In null_handle_cmd() when device is configured as zoned, variable op is
decalred as an int, where it is used to hold values of type
REQ_OP_XXX which is of type enum req_opf. Change the type from
int to enum req_opf.
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/null_blk_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/null_blk_main.c b/drivers/block/null_blk_main.c index 22303e59a274..99328ded60d1 100644 --- a/drivers/block/null_blk_main.c +++ b/drivers/block/null_blk_main.c @@ -1198,7 +1198,7 @@ static blk_status_t null_handle_cmd(struct nullb_cmd *cmd) if (!cmd->error && dev->zoned) { sector_t sector; unsigned int nr_sectors; - int op; + enum req_opf op; if (dev->queue_mode == NULL_Q_BIO) { op = bio_op(cmd->bio); |