diff options
author | Alasdair G Kergon <agk@redhat.com> | 2006-03-27 04:17:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:59 -0500 |
commit | 138728dc96529f20dfe970c470e51885a60e329f (patch) | |
tree | a0369a9de402cd8b9a123129c5e8ba7c69ba1a95 /drivers/md/dm-snap.c | |
parent | 969429b504ae866d3f8b1cafd68a2c099e305093 (diff) |
[PATCH] dm snapshot: fix kcopyd destructor
Before removing a snapshot, wait for the completion of any kcopyd jobs using
it.
Do this by maintaining a count (nr_jobs) of how many outstanding jobs each
kcopyd_client has.
The snapshot destructor first unregisters the snapshot so that no new kcopyd
jobs (created by writes to the origin) will reference that particular
snapshot. kcopyd_client_destroy() is now run next to wait for the completion
of any outstanding jobs before the snapshot exception structures (that those
jobs reference) are freed.
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/dm-snap.c')
-rw-r--r-- | drivers/md/dm-snap.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/md/dm-snap.c b/drivers/md/dm-snap.c index a5765f9fbe02..08312b46463a 100644 --- a/drivers/md/dm-snap.c +++ b/drivers/md/dm-snap.c | |||
@@ -559,8 +559,12 @@ static void snapshot_dtr(struct dm_target *ti) | |||
559 | { | 559 | { |
560 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; | 560 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; |
561 | 561 | ||
562 | /* Prevent further origin writes from using this snapshot. */ | ||
563 | /* After this returns there can be no new kcopyd jobs. */ | ||
562 | unregister_snapshot(s); | 564 | unregister_snapshot(s); |
563 | 565 | ||
566 | kcopyd_client_destroy(s->kcopyd_client); | ||
567 | |||
564 | exit_exception_table(&s->pending, pending_cache); | 568 | exit_exception_table(&s->pending, pending_cache); |
565 | exit_exception_table(&s->complete, exception_cache); | 569 | exit_exception_table(&s->complete, exception_cache); |
566 | 570 | ||
@@ -569,7 +573,7 @@ static void snapshot_dtr(struct dm_target *ti) | |||
569 | 573 | ||
570 | dm_put_device(ti, s->origin); | 574 | dm_put_device(ti, s->origin); |
571 | dm_put_device(ti, s->cow); | 575 | dm_put_device(ti, s->cow); |
572 | kcopyd_client_destroy(s->kcopyd_client); | 576 | |
573 | kfree(s); | 577 | kfree(s); |
574 | } | 578 | } |
575 | 579 | ||