Error path code (for handling DM_MAPIO_REQUEUE and DM_MAPIO_KILL) is
effectively identical.

Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Mike Snitzer <[email protected]>
---
 drivers/md/dm.c | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index 60a047de620f..8f2288a3b35b 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -1161,20 +1161,14 @@ static void __map_bio(struct bio *clone)
                submit_bio_noacct(clone);
                break;
        case DM_MAPIO_KILL:
-               if (unlikely(swap_bios_limit(ti, clone))) {
-                       struct mapped_device *md = io->md;
-                       up(&md->swap_bios_semaphore);
-               }
-               free_tio(clone);
-               dm_io_dec_pending(io, BLK_STS_IOERR);
-               break;
        case DM_MAPIO_REQUEUE:
-               if (unlikely(swap_bios_limit(ti, clone))) {
-                       struct mapped_device *md = io->md;
-                       up(&md->swap_bios_semaphore);
-               }
+               if (unlikely(swap_bios_limit(ti, clone)))
+                       up(&io->md->swap_bios_semaphore);
                free_tio(clone);
-               dm_io_dec_pending(io, BLK_STS_DM_REQUEUE);
+               if (r == DM_MAPIO_KILL)
+                       dm_io_dec_pending(io, BLK_STS_IOERR);
+               else
+                       dm_io_dec_pending(io, BLK_STS_DM_REQUEUE);
                break;
        default:
                DMWARN("unimplemented target map return value: %d", r);
-- 
2.15.0

--
dm-devel mailing list
[email protected]
https://listman.redhat.com/mailman/listinfo/dm-devel

Reply via email to