mirror of https://gitee.com/openkylin/linux.git
dm: fix the second dec_pending() argument in __split_and_process_bio()
Detected by sparse.
Fixes: 4e4cbee93d
("block: switch bios to blk_status_t")
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Tested-by: Laurence Oberman <loberman@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
parent
cc4a41fe55
commit
54385bf75c
|
@ -1523,7 +1523,7 @@ static void __split_and_process_bio(struct mapped_device *md,
|
|||
}
|
||||
|
||||
/* drop the extra reference count */
|
||||
dec_pending(ci.io, error);
|
||||
dec_pending(ci.io, errno_to_blk_status(error));
|
||||
}
|
||||
/*-----------------------------------------------------------------
|
||||
* CRUD END
|
||||
|
|
Loading…
Reference in New Issue