dm thin: remove return code variable in pool_map
authorMike Snitzer <snitzer@kernel.org>
Mon, 15 May 2023 20:21:38 +0000 (16:21 -0400)
committerMike Snitzer <snitzer@kernel.org>
Fri, 16 Jun 2023 22:24:13 +0000 (18:24 -0400)
Always returns DM_MAPIO_REMAPPED so no need for variable.

Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm-thin.c

index 464c6b6..ed1b7f5 100644 (file)
@@ -3447,7 +3447,6 @@ out_unlock:
 
 static int pool_map(struct dm_target *ti, struct bio *bio)
 {
-       int r;
        struct pool_c *pt = ti->private;
        struct pool *pool = pt->pool;
 
@@ -3456,10 +3455,9 @@ static int pool_map(struct dm_target *ti, struct bio *bio)
         */
        spin_lock_irq(&pool->lock);
        bio_set_dev(bio, pt->data_dev->bdev);
-       r = DM_MAPIO_REMAPPED;
        spin_unlock_irq(&pool->lock);
 
-       return r;
+       return DM_MAPIO_REMAPPED;
 }
 
 static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)