blob: 24fb42ed7b8e976fdc6d071978df3cd0f53697dd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 Sistina Software (UK) Limited.
Milan Broz373a3922007-05-09 02:33:02 -07003 * Copyright (C) 2006 Red Hat GmbH
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 *
7 * Kcopyd provides a simple interface for copying an area of one
8 * block-device to one or more other block-devices, with an asynchronous
9 * completion notification.
10 */
11
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010012#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
16#include <linux/init.h>
17#include <linux/list.h>
18#include <linux/mempool.h>
19#include <linux/module.h>
20#include <linux/pagemap.h>
21#include <linux/slab.h>
22#include <linux/vmalloc.h>
23#include <linux/workqueue.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080024#include <linux/mutex.h>
Mikulas Patocka586e80e2008-10-21 17:44:59 +010025#include <linux/device-mapper.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010026#include <linux/dm-kcopyd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +010028#include "dm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Mikulas Patockac6ea41f2011-05-29 13:03:00 +010030#define SUB_JOB_SIZE 128
31#define SPLIT_COUNT 8
32#define MIN_JOBS 8
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*-----------------------------------------------------------------
35 * Each kcopyd client has its own little pool of preallocated
36 * pages for kcopyd io.
37 *---------------------------------------------------------------*/
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010038struct dm_kcopyd_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 spinlock_t lock;
40 struct page_list *pages;
41 unsigned int nr_pages;
42 unsigned int nr_free_pages;
Alasdair G Kergon138728d2006-03-27 01:17:50 -080043
Milan Broz373a3922007-05-09 02:33:02 -070044 struct dm_io_client *io_client;
45
Alasdair G Kergon138728d2006-03-27 01:17:50 -080046 wait_queue_head_t destroyq;
47 atomic_t nr_jobs;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010048
Mikulas Patocka08d87572008-04-24 21:43:46 +010049 mempool_t *job_pool;
50
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010051 struct workqueue_struct *kcopyd_wq;
52 struct work_struct kcopyd_work;
53
54/*
55 * We maintain three lists of jobs:
56 *
57 * i) jobs waiting for pages
58 * ii) jobs that have pages, and are waiting for the io to be issued.
59 * iii) jobs that have completed.
60 *
61 * All three of these are protected by job_lock.
62 */
63 spinlock_t job_lock;
64 struct list_head complete_jobs;
65 struct list_head io_jobs;
66 struct list_head pages_jobs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010069static void wake(struct dm_kcopyd_client *kc)
70{
71 queue_work(kc->kcopyd_wq, &kc->kcopyd_work);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static struct page_list *alloc_pl(void)
75{
76 struct page_list *pl;
77
78 pl = kmalloc(sizeof(*pl), GFP_KERNEL);
79 if (!pl)
80 return NULL;
81
82 pl->page = alloc_page(GFP_KERNEL);
83 if (!pl->page) {
84 kfree(pl);
85 return NULL;
86 }
87
88 return pl;
89}
90
91static void free_pl(struct page_list *pl)
92{
93 __free_page(pl->page);
94 kfree(pl);
95}
96
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010097static int kcopyd_get_pages(struct dm_kcopyd_client *kc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 unsigned int nr, struct page_list **pages)
99{
100 struct page_list *pl;
101
102 spin_lock(&kc->lock);
103 if (kc->nr_free_pages < nr) {
104 spin_unlock(&kc->lock);
105 return -ENOMEM;
106 }
107
108 kc->nr_free_pages -= nr;
109 for (*pages = pl = kc->pages; --nr; pl = pl->next)
110 ;
111
112 kc->pages = pl->next;
113 pl->next = NULL;
114
115 spin_unlock(&kc->lock);
116
117 return 0;
118}
119
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100120static void kcopyd_put_pages(struct dm_kcopyd_client *kc, struct page_list *pl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct page_list *cursor;
123
124 spin_lock(&kc->lock);
125 for (cursor = pl; cursor->next; cursor = cursor->next)
126 kc->nr_free_pages++;
127
128 kc->nr_free_pages++;
129 cursor->next = kc->pages;
130 kc->pages = pl;
131 spin_unlock(&kc->lock);
132}
133
134/*
135 * These three functions resize the page pool.
136 */
137static void drop_pages(struct page_list *pl)
138{
139 struct page_list *next;
140
141 while (pl) {
142 next = pl->next;
143 free_pl(pl);
144 pl = next;
145 }
146}
147
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100148static int client_alloc_pages(struct dm_kcopyd_client *kc, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 unsigned int i;
151 struct page_list *pl = NULL, *next;
152
153 for (i = 0; i < nr; i++) {
154 next = alloc_pl();
155 if (!next) {
156 if (pl)
157 drop_pages(pl);
158 return -ENOMEM;
159 }
160 next->next = pl;
161 pl = next;
162 }
163
164 kcopyd_put_pages(kc, pl);
165 kc->nr_pages += nr;
166 return 0;
167}
168
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100169static void client_free_pages(struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 BUG_ON(kc->nr_free_pages != kc->nr_pages);
172 drop_pages(kc->pages);
173 kc->pages = NULL;
174 kc->nr_free_pages = kc->nr_pages = 0;
175}
176
177/*-----------------------------------------------------------------
178 * kcopyd_jobs need to be allocated by the *clients* of kcopyd,
179 * for this reason we use a mempool to prevent the client from
180 * ever having to do io (which could cause a deadlock).
181 *---------------------------------------------------------------*/
182struct kcopyd_job {
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100183 struct dm_kcopyd_client *kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct list_head list;
185 unsigned long flags;
186
187 /*
188 * Error state of the job.
189 */
190 int read_err;
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700191 unsigned long write_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 /*
194 * Either READ or WRITE
195 */
196 int rw;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100197 struct dm_io_region source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
200 * The destinations for the transfer.
201 */
202 unsigned int num_dests;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100203 struct dm_io_region dests[DM_KCOPYD_MAX_REGIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 sector_t offset;
206 unsigned int nr_pages;
207 struct page_list *pages;
208
209 /*
210 * Set this to ensure you are notified when the job has
211 * completed. 'context' is for callback to use.
212 */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100213 dm_kcopyd_notify_fn fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 void *context;
215
216 /*
217 * These fields are only used if the job has been split
218 * into more manageable parts.
219 */
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100220 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 atomic_t sub_jobs;
222 sector_t progress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100224 struct kcopyd_job *master_job;
225};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Christoph Lametere18b8902006-12-06 20:33:20 -0800227static struct kmem_cache *_job_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100229int __init dm_kcopyd_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100231 _job_cache = kmem_cache_create("kcopyd_job",
232 sizeof(struct kcopyd_job) * (SPLIT_COUNT + 1),
233 __alignof__(struct kcopyd_job), 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!_job_cache)
235 return -ENOMEM;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238}
239
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100240void dm_kcopyd_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 kmem_cache_destroy(_job_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 _job_cache = NULL;
244}
245
246/*
247 * Functions to push and pop a job onto the head of a given job
248 * list.
249 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100250static struct kcopyd_job *pop(struct list_head *jobs,
251 struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 struct kcopyd_job *job = NULL;
254 unsigned long flags;
255
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100256 spin_lock_irqsave(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (!list_empty(jobs)) {
259 job = list_entry(jobs->next, struct kcopyd_job, list);
260 list_del(&job->list);
261 }
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100262 spin_unlock_irqrestore(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 return job;
265}
266
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100267static void push(struct list_head *jobs, struct kcopyd_job *job)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 unsigned long flags;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100270 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100272 spin_lock_irqsave(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 list_add_tail(&job->list, jobs);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100274 spin_unlock_irqrestore(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Kazuo Itob673c3a2008-10-21 17:44:50 +0100277
278static void push_head(struct list_head *jobs, struct kcopyd_job *job)
279{
280 unsigned long flags;
281 struct dm_kcopyd_client *kc = job->kc;
282
283 spin_lock_irqsave(&kc->job_lock, flags);
284 list_add(&job->list, jobs);
285 spin_unlock_irqrestore(&kc->job_lock, flags);
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
289 * These three functions process 1 item from the corresponding
290 * job list.
291 *
292 * They return:
293 * < 0: error
294 * 0: success
295 * > 0: can't process yet.
296 */
297static int run_complete_job(struct kcopyd_job *job)
298{
299 void *context = job->context;
300 int read_err = job->read_err;
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700301 unsigned long write_err = job->write_err;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100302 dm_kcopyd_notify_fn fn = job->fn;
303 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Mikulas Patocka73830852009-04-09 00:27:16 +0100305 if (job->pages)
306 kcopyd_put_pages(kc, job->pages);
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100307 /*
308 * If this is the master job, the sub jobs have already
309 * completed so we can free everything.
310 */
311 if (job->master_job == job)
312 mempool_free(job, kc->job_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 fn(read_err, write_err, context);
Alasdair G Kergon138728d2006-03-27 01:17:50 -0800314
315 if (atomic_dec_and_test(&kc->nr_jobs))
316 wake_up(&kc->destroyq);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
319}
320
321static void complete_io(unsigned long error, void *context)
322{
323 struct kcopyd_job *job = (struct kcopyd_job *) context;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100324 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (error) {
327 if (job->rw == WRITE)
Jonathan Brassowce503f52006-06-26 00:27:30 -0700328 job->write_err |= error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 else
330 job->read_err = 1;
331
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100332 if (!test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100333 push(&kc->complete_jobs, job);
334 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return;
336 }
337 }
338
339 if (job->rw == WRITE)
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100340 push(&kc->complete_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 else {
343 job->rw = WRITE;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100344 push(&kc->io_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100347 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/*
351 * Request io on as many buffer heads as we can currently get for
352 * a particular job.
353 */
354static int run_io_job(struct kcopyd_job *job)
355{
356 int r;
Milan Broz373a3922007-05-09 02:33:02 -0700357 struct dm_io_request io_req = {
Mikulas Patocka8d35d3e2011-01-13 19:59:50 +0000358 .bi_rw = job->rw,
Milan Broz373a3922007-05-09 02:33:02 -0700359 .mem.type = DM_IO_PAGE_LIST,
360 .mem.ptr.pl = job->pages,
361 .mem.offset = job->offset,
362 .notify.fn = complete_io,
363 .notify.context = job,
364 .client = job->kc->io_client,
365 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Jens Axboe7eaceac2011-03-10 08:52:07 +0100367 if (job->rw == READ)
Milan Broz373a3922007-05-09 02:33:02 -0700368 r = dm_io(&io_req, 1, &job->source, NULL);
Jens Axboe721a9602011-03-09 11:56:30 +0100369 else
Milan Broz373a3922007-05-09 02:33:02 -0700370 r = dm_io(&io_req, job->num_dests, job->dests, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 return r;
373}
374
375static int run_pages_job(struct kcopyd_job *job)
376{
377 int r;
378
379 job->nr_pages = dm_div_up(job->dests[0].count + job->offset,
380 PAGE_SIZE >> 9);
381 r = kcopyd_get_pages(job->kc, job->nr_pages, &job->pages);
382 if (!r) {
383 /* this job is ready for io */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100384 push(&job->kc->io_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 0;
386 }
387
388 if (r == -ENOMEM)
389 /* can't complete now */
390 return 1;
391
392 return r;
393}
394
395/*
396 * Run through a list for as long as possible. Returns the count
397 * of successful jobs.
398 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100399static int process_jobs(struct list_head *jobs, struct dm_kcopyd_client *kc,
400 int (*fn) (struct kcopyd_job *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 struct kcopyd_job *job;
403 int r, count = 0;
404
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100405 while ((job = pop(jobs, kc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 r = fn(job);
408
409 if (r < 0) {
410 /* error this rogue job */
411 if (job->rw == WRITE)
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700412 job->write_err = (unsigned long) -1L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 else
414 job->read_err = 1;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100415 push(&kc->complete_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break;
417 }
418
419 if (r > 0) {
420 /*
421 * We couldn't service this job ATM, so
422 * push this job back onto the list.
423 */
Kazuo Itob673c3a2008-10-21 17:44:50 +0100424 push_head(jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 break;
426 }
427
428 count++;
429 }
430
431 return count;
432}
433
434/*
435 * kcopyd does this every time it's woken up.
436 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100437static void do_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100439 struct dm_kcopyd_client *kc = container_of(work,
440 struct dm_kcopyd_client, kcopyd_work);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100441 struct blk_plug plug;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
444 * The order that these are called is *very* important.
445 * complete jobs can free some pages for pages jobs.
446 * Pages jobs when successful will jump onto the io jobs
447 * list. io jobs call wake when they complete and it all
448 * starts again.
449 */
Jens Axboe7eaceac2011-03-10 08:52:07 +0100450 blk_start_plug(&plug);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100451 process_jobs(&kc->complete_jobs, kc, run_complete_job);
452 process_jobs(&kc->pages_jobs, kc, run_pages_job);
453 process_jobs(&kc->io_jobs, kc, run_io_job);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100454 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
458 * If we are copying a small region we just dispatch a single job
459 * to do the copy, otherwise the io has to be split up into many
460 * jobs.
461 */
462static void dispatch_job(struct kcopyd_job *job)
463{
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100464 struct dm_kcopyd_client *kc = job->kc;
465 atomic_inc(&kc->nr_jobs);
Mikulas Patocka9ca170a2009-12-10 23:52:13 +0000466 if (unlikely(!job->source.count))
467 push(&kc->complete_jobs, job);
468 else
469 push(&kc->pages_jobs, job);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100470 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700473static void segment_complete(int read_err, unsigned long write_err,
474 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 /* FIXME: tidy this function */
477 sector_t progress = 0;
478 sector_t count = 0;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100479 struct kcopyd_job *sub_job = (struct kcopyd_job *) context;
480 struct kcopyd_job *job = sub_job->master_job;
Mikulas Patocka73830852009-04-09 00:27:16 +0100481 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100483 mutex_lock(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /* update the error */
486 if (read_err)
487 job->read_err = 1;
488
489 if (write_err)
Jonathan Brassowce503f52006-06-26 00:27:30 -0700490 job->write_err |= write_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /*
493 * Only dispatch more work if there hasn't been an error.
494 */
495 if ((!job->read_err && !job->write_err) ||
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100496 test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* get the next chunk of work */
498 progress = job->progress;
499 count = job->source.count - progress;
500 if (count) {
501 if (count > SUB_JOB_SIZE)
502 count = SUB_JOB_SIZE;
503
504 job->progress += count;
505 }
506 }
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100507 mutex_unlock(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 if (count) {
510 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 *sub_job = *job;
513 sub_job->source.sector += progress;
514 sub_job->source.count = count;
515
516 for (i = 0; i < job->num_dests; i++) {
517 sub_job->dests[i].sector += progress;
518 sub_job->dests[i].count = count;
519 }
520
521 sub_job->fn = segment_complete;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100522 sub_job->context = sub_job;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 dispatch_job(sub_job);
524
525 } else if (atomic_dec_and_test(&job->sub_jobs)) {
526
527 /*
Mikulas Patocka340cd442009-04-09 00:27:17 +0100528 * Queue the completion callback to the kcopyd thread.
529 *
530 * Some callers assume that all the completions are called
531 * from a single thread and don't race with each other.
532 *
533 * We must not call the callback directly here because this
534 * code may not be executing in the thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Mikulas Patocka340cd442009-04-09 00:27:17 +0100536 push(&kc->complete_jobs, job);
537 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539}
540
541/*
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100542 * Create some sub jobs to share the work between them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 */
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100544static void split_job(struct kcopyd_job *master_job)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 int i;
547
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100548 atomic_inc(&master_job->kc->nr_jobs);
Mikulas Patocka340cd442009-04-09 00:27:17 +0100549
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100550 atomic_set(&master_job->sub_jobs, SPLIT_COUNT);
551 for (i = 0; i < SPLIT_COUNT; i++) {
552 master_job[i + 1].master_job = master_job;
553 segment_complete(0, 0u, &master_job[i + 1]);
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100557int dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
558 unsigned int num_dests, struct dm_io_region *dests,
559 unsigned int flags, dm_kcopyd_notify_fn fn, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 struct kcopyd_job *job;
562
563 /*
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100564 * Allocate an array of jobs consisting of one master job
565 * followed by SPLIT_COUNT sub jobs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Mikulas Patocka08d87572008-04-24 21:43:46 +0100567 job = mempool_alloc(kc->job_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /*
570 * set up for the read.
571 */
572 job->kc = kc;
573 job->flags = flags;
574 job->read_err = 0;
575 job->write_err = 0;
576 job->rw = READ;
577
578 job->source = *from;
579
580 job->num_dests = num_dests;
581 memcpy(&job->dests, dests, sizeof(*dests) * num_dests);
582
583 job->offset = 0;
584 job->nr_pages = 0;
585 job->pages = NULL;
586
587 job->fn = fn;
588 job->context = context;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100589 job->master_job = job;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Mikulas Patockaa705a342011-05-29 13:02:58 +0100591 if (job->source.count <= SUB_JOB_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 dispatch_job(job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 else {
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100594 mutex_init(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 job->progress = 0;
596 split_job(job);
597 }
598
599 return 0;
600}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100601EXPORT_SYMBOL(dm_kcopyd_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603/*
604 * Cancels a kcopyd job, eg. someone might be deactivating a
605 * mirror.
606 */
Adrian Bunk0b563062006-01-06 00:20:08 -0800607#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608int kcopyd_cancel(struct kcopyd_job *job, int block)
609{
610 /* FIXME: finish */
611 return -1;
612}
Adrian Bunk0b563062006-01-06 00:20:08 -0800613#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615/*-----------------------------------------------------------------
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100616 * Client setup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 *---------------------------------------------------------------*/
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100618int dm_kcopyd_client_create(unsigned int nr_pages,
619 struct dm_kcopyd_client **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100621 int r = -ENOMEM;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100622 struct dm_kcopyd_client *kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 kc = kmalloc(sizeof(*kc), GFP_KERNEL);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100625 if (!kc)
626 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 spin_lock_init(&kc->lock);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100629 spin_lock_init(&kc->job_lock);
630 INIT_LIST_HEAD(&kc->complete_jobs);
631 INIT_LIST_HEAD(&kc->io_jobs);
632 INIT_LIST_HEAD(&kc->pages_jobs);
633
Mikulas Patocka08d87572008-04-24 21:43:46 +0100634 kc->job_pool = mempool_create_slab_pool(MIN_JOBS, _job_cache);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100635 if (!kc->job_pool)
636 goto bad_slab;
Mikulas Patocka08d87572008-04-24 21:43:46 +0100637
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100638 INIT_WORK(&kc->kcopyd_work, do_work);
Tejun Heo9c4376d2011-01-13 19:59:58 +0000639 kc->kcopyd_wq = alloc_workqueue("kcopyd",
640 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100641 if (!kc->kcopyd_wq)
642 goto bad_workqueue;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 kc->pages = NULL;
645 kc->nr_pages = kc->nr_free_pages = 0;
646 r = client_alloc_pages(kc, nr_pages);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100647 if (r)
648 goto bad_client_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Milan Broz373a3922007-05-09 02:33:02 -0700650 kc->io_client = dm_io_client_create(nr_pages);
651 if (IS_ERR(kc->io_client)) {
652 r = PTR_ERR(kc->io_client);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100653 goto bad_io_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Alasdair G Kergon138728d2006-03-27 01:17:50 -0800656 init_waitqueue_head(&kc->destroyq);
657 atomic_set(&kc->nr_jobs, 0);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 *result = kc;
660 return 0;
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100661
662bad_io_client:
663 client_free_pages(kc);
664bad_client_pages:
665 destroy_workqueue(kc->kcopyd_wq);
666bad_workqueue:
667 mempool_destroy(kc->job_pool);
668bad_slab:
669 kfree(kc);
670
671 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100673EXPORT_SYMBOL(dm_kcopyd_client_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100675void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Alasdair G Kergon138728d2006-03-27 01:17:50 -0800677 /* Wait for completion of all jobs submitted by this client. */
678 wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs));
679
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100680 BUG_ON(!list_empty(&kc->complete_jobs));
681 BUG_ON(!list_empty(&kc->io_jobs));
682 BUG_ON(!list_empty(&kc->pages_jobs));
683 destroy_workqueue(kc->kcopyd_wq);
Milan Broz373a3922007-05-09 02:33:02 -0700684 dm_io_client_destroy(kc->io_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 client_free_pages(kc);
Mikulas Patocka08d87572008-04-24 21:43:46 +0100686 mempool_destroy(kc->job_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 kfree(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100689EXPORT_SYMBOL(dm_kcopyd_client_destroy);