diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2009-06-22 05:12:21 -0400 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2009-06-22 05:12:21 -0400 |
commit | 52b1fd5a27c625c78373e024bf570af3c9d44a79 (patch) | |
tree | a802b917b45685255220efaeb7b2b8ee2d04a2d4 /drivers | |
parent | 9015df24a8008d7bea2bd3df881783ebe0dcb9af (diff) |
dm: send empty barriers to targets in dm_flush
Pass empty barrier flushes to the targets in dm_flush().
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/md/dm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index edf9f2467691..36142e947ffc 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -164,6 +164,9 @@ struct mapped_device { | |||
164 | 164 | ||
165 | /* sysfs handle */ | 165 | /* sysfs handle */ |
166 | struct kobject kobj; | 166 | struct kobject kobj; |
167 | |||
168 | /* zero-length barrier that will be cloned and submitted to targets */ | ||
169 | struct bio barrier_bio; | ||
167 | }; | 170 | }; |
168 | 171 | ||
169 | #define MIN_IOS 256 | 172 | #define MIN_IOS 256 |
@@ -1477,6 +1480,13 @@ static int dm_wait_for_completion(struct mapped_device *md, int interruptible) | |||
1477 | static void dm_flush(struct mapped_device *md) | 1480 | static void dm_flush(struct mapped_device *md) |
1478 | { | 1481 | { |
1479 | dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE); | 1482 | dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE); |
1483 | |||
1484 | bio_init(&md->barrier_bio); | ||
1485 | md->barrier_bio.bi_bdev = md->bdev; | ||
1486 | md->barrier_bio.bi_rw = WRITE_BARRIER; | ||
1487 | __split_and_process_bio(md, &md->barrier_bio); | ||
1488 | |||
1489 | dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE); | ||
1480 | } | 1490 | } |
1481 | 1491 | ||
1482 | static void process_barrier(struct mapped_device *md, struct bio *bio) | 1492 | static void process_barrier(struct mapped_device *md, struct bio *bio) |