Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24391
b: refs/heads/master
c: 138728d
h: refs/heads/master
i:
  24389: b0c2f61
  24387: 07e50a7
  24383: 570ed27
v: v3
  • Loading branch information
Alasdair G Kergon authored and Linus Torvalds committed Mar 27, 2006
1 parent 2dfd9cc commit be7c99b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 969429b504ae866d3f8b1cafd68a2c099e305093
refs/heads/master: 138728dc96529f20dfe970c470e51885a60e329f
6 changes: 5 additions & 1 deletion trunk/drivers/md/dm-snap.c
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,12 @@ static void snapshot_dtr(struct dm_target *ti)
{
struct dm_snapshot *s = (struct dm_snapshot *) ti->private;

/* Prevent further origin writes from using this snapshot. */
/* After this returns there can be no new kcopyd jobs. */
unregister_snapshot(s);

kcopyd_client_destroy(s->kcopyd_client);

exit_exception_table(&s->pending, pending_cache);
exit_exception_table(&s->complete, exception_cache);

Expand All @@ -569,7 +573,7 @@ static void snapshot_dtr(struct dm_target *ti)

dm_put_device(ti, s->origin);
dm_put_device(ti, s->cow);
kcopyd_client_destroy(s->kcopyd_client);

kfree(s);
}

Expand Down
17 changes: 16 additions & 1 deletion trunk/drivers/md/kcopyd.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ struct kcopyd_client {
struct page_list *pages;
unsigned int nr_pages;
unsigned int nr_free_pages;

wait_queue_head_t destroyq;
atomic_t nr_jobs;
};

static struct page_list *alloc_pl(void)
Expand Down Expand Up @@ -292,10 +295,15 @@ static int run_complete_job(struct kcopyd_job *job)
int read_err = job->read_err;
unsigned int write_err = job->write_err;
kcopyd_notify_fn fn = job->fn;
struct kcopyd_client *kc = job->kc;

kcopyd_put_pages(job->kc, job->pages);
kcopyd_put_pages(kc, job->pages);
mempool_free(job, _job_pool);
fn(read_err, write_err, context);

if (atomic_dec_and_test(&kc->nr_jobs))
wake_up(&kc->destroyq);

return 0;
}

Expand Down Expand Up @@ -430,6 +438,7 @@ static void do_work(void *ignored)
*/
static void dispatch_job(struct kcopyd_job *job)
{
atomic_inc(&job->kc->nr_jobs);
push(&_pages_jobs, job);
wake();
}
Expand Down Expand Up @@ -669,13 +678,19 @@ int kcopyd_client_create(unsigned int nr_pages, struct kcopyd_client **result)
return r;
}

init_waitqueue_head(&kc->destroyq);
atomic_set(&kc->nr_jobs, 0);

client_add(kc);
*result = kc;
return 0;
}

void kcopyd_client_destroy(struct kcopyd_client *kc)
{
/* Wait for completion of all jobs submitted by this client. */
wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs));

dm_io_put(kc->nr_pages);
client_free_pages(kc);
client_del(kc);
Expand Down

0 comments on commit be7c99b

Please sign in to comment.