diff options
author | Mike Snitzer <snitzer@redhat.com> | 2010-08-12 04:14:04 +0100 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2010-08-12 04:14:04 +0100 |
commit | 57cba5d3658d9fdc019c6af14a2d80aefa651e56 (patch) | |
tree | 4905a162b6785e1a1228b8870d8011cf9035147a /drivers/md/dm-snap.c | |
parent | 26803b9f06d365122fae82e7554a66ef8278e0bb (diff) | |
download | linux-3.10-57cba5d3658d9fdc019c6af14a2d80aefa651e56.tar.gz linux-3.10-57cba5d3658d9fdc019c6af14a2d80aefa651e56.tar.bz2 linux-3.10-57cba5d3658d9fdc019c6af14a2d80aefa651e56.zip |
dm: rename map_info flush_request to target_request_nr
'target_request_nr' is a more generic name that reflects the fact that
it will be used for both flush and discard support.
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-snap.c')
-rw-r--r-- | drivers/md/dm-snap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-snap.c b/drivers/md/dm-snap.c index 96feada5e76..5974d3094d9 100644 --- a/drivers/md/dm-snap.c +++ b/drivers/md/dm-snap.c @@ -1692,7 +1692,7 @@ static int snapshot_merge_map(struct dm_target *ti, struct bio *bio, chunk_t chunk; if (unlikely(bio_empty_barrier(bio))) { - if (!map_context->flush_request) + if (!map_context->target_request_nr) bio->bi_bdev = s->origin->bdev; else bio->bi_bdev = s->cow->bdev; |