dm: shortcut the calls to linear_map and stripe_map
authorMikulas Patocka <mpatocka@redhat.com>
Mon, 18 Sep 2023 15:33:29 +0000 (17:33 +0200)
committerMike Snitzer <snitzer@kernel.org>
Fri, 6 Oct 2023 23:09:25 +0000 (19:09 -0400)
Shortcut the calls to linear_map and stripe_map, so that they don't suffer
the overhead of retpolines used for indirect calls.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm-linear.c
drivers/md/dm-stripe.c
drivers/md/dm.c
drivers/md/dm.h

index f4448d5..2d3e186 100644 (file)
@@ -85,7 +85,7 @@ static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
        return lc->start + dm_target_offset(ti, bi_sector);
 }
 
-static int linear_map(struct dm_target *ti, struct bio *bio)
+int linear_map(struct dm_target *ti, struct bio *bio)
 {
        struct linear_c *lc = ti->private;
 
index e2854a3..c11619d 100644 (file)
@@ -268,7 +268,7 @@ static int stripe_map_range(struct stripe_c *sc, struct bio *bio,
        return DM_MAPIO_SUBMITTED;
 }
 
-static int stripe_map(struct dm_target *ti, struct bio *bio)
+int stripe_map(struct dm_target *ti, struct bio *bio)
 {
        struct stripe_c *sc = ti->private;
        uint32_t stripe;
index 64a1f30..ab7dd8a 100644 (file)
@@ -1423,10 +1423,17 @@ static void __map_bio(struct bio *clone)
                 */
                if (unlikely(dm_emulate_zone_append(md)))
                        r = dm_zone_map_bio(tio);
+               else
+                       goto do_map;
+       } else {
+do_map:
+               if (likely(ti->type->map == linear_map))
+                       r = linear_map(ti, clone);
+               else if (ti->type->map == stripe_map)
+                       r = stripe_map(ti, clone);
                else
                        r = ti->type->map(ti, clone);
-       } else
-               r = ti->type->map(ti, clone);
+       }
 
        switch (r) {
        case DM_MAPIO_SUBMITTED:
index f682295..7f1acbf 100644 (file)
@@ -188,9 +188,11 @@ void dm_kobject_release(struct kobject *kobj);
 /*
  * Targets for linear and striped mappings
  */
+int linear_map(struct dm_target *ti, struct bio *bio);
 int dm_linear_init(void);
 void dm_linear_exit(void);
 
+int stripe_map(struct dm_target *ti, struct bio *bio);
 int dm_stripe_init(void);
 void dm_stripe_exit(void);