diff options
author | Alasdair G Kergon <agk@redhat.com> | 2012-03-28 13:41:28 -0400 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2012-03-28 13:41:28 -0400 |
commit | 6efd6e83092cd4a7532270bc843de90bb93f6683 (patch) | |
tree | 129b9de5d03a11f0bf02feb3743a10e4fe8561d5 /drivers | |
parent | 2dd9c257fbc243aa76ee6db0bb8371f9f74fad2d (diff) |
dm thin: use dm_target_offset
Use dm_target_offset wrapper instead of referencing the awkward ti->begin
explicitly.
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/md/dm-thin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-thin.c b/drivers/md/dm-thin.c index 2d9e75586d60..7ca2bf2aafaa 100644 --- a/drivers/md/dm-thin.c +++ b/drivers/md/dm-thin.c | |||
@@ -2389,7 +2389,7 @@ out_unlock: | |||
2389 | static int thin_map(struct dm_target *ti, struct bio *bio, | 2389 | static int thin_map(struct dm_target *ti, struct bio *bio, |
2390 | union map_info *map_context) | 2390 | union map_info *map_context) |
2391 | { | 2391 | { |
2392 | bio->bi_sector -= ti->begin; | 2392 | bio->bi_sector = dm_target_offset(ti, bio->bi_sector); |
2393 | 2393 | ||
2394 | return thin_bio_map(ti, bio, map_context); | 2394 | return thin_bio_map(ti, bio, map_context); |
2395 | } | 2395 | } |