blob: 0270844c2a3dc208dfee6f7e9cb28e48460918ec [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 struct page_list *pages;
40 unsigned int nr_pages;
41 unsigned int nr_free_pages;
Alasdair G Kergon138728dc2006-03-27 01:17:50 -080042
Milan Broz373a3922007-05-09 02:33:02 -070043 struct dm_io_client *io_client;
44
Alasdair G Kergon138728dc2006-03-27 01:17:50 -080045 wait_queue_head_t destroyq;
46 atomic_t nr_jobs;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010047
Mikulas Patocka08d87572008-04-24 21:43:46 +010048 mempool_t *job_pool;
49
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010050 struct workqueue_struct *kcopyd_wq;
51 struct work_struct kcopyd_work;
52
53/*
54 * We maintain three lists of jobs:
55 *
56 * i) jobs waiting for pages
57 * ii) jobs that have pages, and are waiting for the io to be issued.
58 * iii) jobs that have completed.
59 *
60 * All three of these are protected by job_lock.
61 */
62 spinlock_t job_lock;
63 struct list_head complete_jobs;
64 struct list_head io_jobs;
65 struct list_head pages_jobs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010068static void wake(struct dm_kcopyd_client *kc)
69{
70 queue_work(kc->kcopyd_wq, &kc->kcopyd_work);
71}
72
Mikulas Patockaf99b55e2011-05-29 13:03:04 +010073static struct page_list *alloc_pl(gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 struct page_list *pl;
76
Mikulas Patockaf99b55e2011-05-29 13:03:04 +010077 pl = kmalloc(sizeof(*pl), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (!pl)
79 return NULL;
80
Mikulas Patockaf99b55e2011-05-29 13:03:04 +010081 pl->page = alloc_page(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (!pl->page) {
83 kfree(pl);
84 return NULL;
85 }
86
87 return pl;
88}
89
90static void free_pl(struct page_list *pl)
91{
92 __free_page(pl->page);
93 kfree(pl);
94}
95
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010096static int kcopyd_get_pages(struct dm_kcopyd_client *kc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 unsigned int nr, struct page_list **pages)
98{
99 struct page_list *pl;
100
Mikulas Patocka4cc1b4c2011-05-29 13:03:02 +0100101 if (kc->nr_free_pages < nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 kc->nr_free_pages -= nr;
105 for (*pages = pl = kc->pages; --nr; pl = pl->next)
106 ;
107
108 kc->pages = pl->next;
109 pl->next = NULL;
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return 0;
112}
113
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100114static void kcopyd_put_pages(struct dm_kcopyd_client *kc, struct page_list *pl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct page_list *cursor;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 for (cursor = pl; cursor->next; cursor = cursor->next)
119 kc->nr_free_pages++;
120
121 kc->nr_free_pages++;
122 cursor->next = kc->pages;
123 kc->pages = pl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
126/*
127 * These three functions resize the page pool.
128 */
129static void drop_pages(struct page_list *pl)
130{
131 struct page_list *next;
132
133 while (pl) {
134 next = pl->next;
135 free_pl(pl);
136 pl = next;
137 }
138}
139
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100140static int client_alloc_pages(struct dm_kcopyd_client *kc, unsigned int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 unsigned int i;
143 struct page_list *pl = NULL, *next;
144
145 for (i = 0; i < nr; i++) {
Mikulas Patockaf99b55e2011-05-29 13:03:04 +0100146 next = alloc_pl(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (!next) {
148 if (pl)
149 drop_pages(pl);
150 return -ENOMEM;
151 }
152 next->next = pl;
153 pl = next;
154 }
155
156 kcopyd_put_pages(kc, pl);
157 kc->nr_pages += nr;
158 return 0;
159}
160
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100161static void client_free_pages(struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 BUG_ON(kc->nr_free_pages != kc->nr_pages);
164 drop_pages(kc->pages);
165 kc->pages = NULL;
166 kc->nr_free_pages = kc->nr_pages = 0;
167}
168
169/*-----------------------------------------------------------------
170 * kcopyd_jobs need to be allocated by the *clients* of kcopyd,
171 * for this reason we use a mempool to prevent the client from
172 * ever having to do io (which could cause a deadlock).
173 *---------------------------------------------------------------*/
174struct kcopyd_job {
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100175 struct dm_kcopyd_client *kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct list_head list;
177 unsigned long flags;
178
179 /*
180 * Error state of the job.
181 */
182 int read_err;
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700183 unsigned long write_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /*
186 * Either READ or WRITE
187 */
188 int rw;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100189 struct dm_io_region source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 /*
192 * The destinations for the transfer.
193 */
194 unsigned int num_dests;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100195 struct dm_io_region dests[DM_KCOPYD_MAX_REGIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 sector_t offset;
198 unsigned int nr_pages;
199 struct page_list *pages;
200
201 /*
202 * Set this to ensure you are notified when the job has
203 * completed. 'context' is for callback to use.
204 */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100205 dm_kcopyd_notify_fn fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 void *context;
207
208 /*
209 * These fields are only used if the job has been split
210 * into more manageable parts.
211 */
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100212 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 atomic_t sub_jobs;
214 sector_t progress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100216 struct kcopyd_job *master_job;
217};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Christoph Lametere18b8902006-12-06 20:33:20 -0800219static struct kmem_cache *_job_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100221int __init dm_kcopyd_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100223 _job_cache = kmem_cache_create("kcopyd_job",
224 sizeof(struct kcopyd_job) * (SPLIT_COUNT + 1),
225 __alignof__(struct kcopyd_job), 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (!_job_cache)
227 return -ENOMEM;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
231
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100232void dm_kcopyd_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 kmem_cache_destroy(_job_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 _job_cache = NULL;
236}
237
238/*
239 * Functions to push and pop a job onto the head of a given job
240 * list.
241 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100242static struct kcopyd_job *pop(struct list_head *jobs,
243 struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct kcopyd_job *job = NULL;
246 unsigned long flags;
247
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100248 spin_lock_irqsave(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (!list_empty(jobs)) {
251 job = list_entry(jobs->next, struct kcopyd_job, list);
252 list_del(&job->list);
253 }
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100254 spin_unlock_irqrestore(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 return job;
257}
258
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100259static void push(struct list_head *jobs, struct kcopyd_job *job)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 unsigned long flags;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100262 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100264 spin_lock_irqsave(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 list_add_tail(&job->list, jobs);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100266 spin_unlock_irqrestore(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Kazuo Itob673c3a2008-10-21 17:44:50 +0100269
270static void push_head(struct list_head *jobs, struct kcopyd_job *job)
271{
272 unsigned long flags;
273 struct dm_kcopyd_client *kc = job->kc;
274
275 spin_lock_irqsave(&kc->job_lock, flags);
276 list_add(&job->list, jobs);
277 spin_unlock_irqrestore(&kc->job_lock, flags);
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/*
281 * These three functions process 1 item from the corresponding
282 * job list.
283 *
284 * They return:
285 * < 0: error
286 * 0: success
287 * > 0: can't process yet.
288 */
289static int run_complete_job(struct kcopyd_job *job)
290{
291 void *context = job->context;
292 int read_err = job->read_err;
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700293 unsigned long write_err = job->write_err;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100294 dm_kcopyd_notify_fn fn = job->fn;
295 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Mikulas Patocka73830852009-04-09 00:27:16 +0100297 if (job->pages)
298 kcopyd_put_pages(kc, job->pages);
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100299 /*
300 * If this is the master job, the sub jobs have already
301 * completed so we can free everything.
302 */
303 if (job->master_job == job)
304 mempool_free(job, kc->job_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 fn(read_err, write_err, context);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800306
307 if (atomic_dec_and_test(&kc->nr_jobs))
308 wake_up(&kc->destroyq);
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return 0;
311}
312
313static void complete_io(unsigned long error, void *context)
314{
315 struct kcopyd_job *job = (struct kcopyd_job *) context;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100316 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (error) {
319 if (job->rw == WRITE)
Jonathan Brassowce503f52006-06-26 00:27:30 -0700320 job->write_err |= error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 else
322 job->read_err = 1;
323
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100324 if (!test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100325 push(&kc->complete_jobs, job);
326 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return;
328 }
329 }
330
331 if (job->rw == WRITE)
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100332 push(&kc->complete_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 else {
335 job->rw = WRITE;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100336 push(&kc->io_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100339 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/*
343 * Request io on as many buffer heads as we can currently get for
344 * a particular job.
345 */
346static int run_io_job(struct kcopyd_job *job)
347{
348 int r;
Milan Broz373a3922007-05-09 02:33:02 -0700349 struct dm_io_request io_req = {
Mikulas Patocka8d35d3e2011-01-13 19:59:50 +0000350 .bi_rw = job->rw,
Milan Broz373a3922007-05-09 02:33:02 -0700351 .mem.type = DM_IO_PAGE_LIST,
352 .mem.ptr.pl = job->pages,
353 .mem.offset = job->offset,
354 .notify.fn = complete_io,
355 .notify.context = job,
356 .client = job->kc->io_client,
357 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Jens Axboe7eaceac2011-03-10 08:52:07 +0100359 if (job->rw == READ)
Milan Broz373a3922007-05-09 02:33:02 -0700360 r = dm_io(&io_req, 1, &job->source, NULL);
Jens Axboe721a9602011-03-09 11:56:30 +0100361 else
Milan Broz373a3922007-05-09 02:33:02 -0700362 r = dm_io(&io_req, job->num_dests, job->dests, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 return r;
365}
366
367static int run_pages_job(struct kcopyd_job *job)
368{
369 int r;
370
371 job->nr_pages = dm_div_up(job->dests[0].count + job->offset,
372 PAGE_SIZE >> 9);
373 r = kcopyd_get_pages(job->kc, job->nr_pages, &job->pages);
374 if (!r) {
375 /* this job is ready for io */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100376 push(&job->kc->io_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378 }
379
380 if (r == -ENOMEM)
381 /* can't complete now */
382 return 1;
383
384 return r;
385}
386
387/*
388 * Run through a list for as long as possible. Returns the count
389 * of successful jobs.
390 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100391static int process_jobs(struct list_head *jobs, struct dm_kcopyd_client *kc,
392 int (*fn) (struct kcopyd_job *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct kcopyd_job *job;
395 int r, count = 0;
396
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100397 while ((job = pop(jobs, kc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 r = fn(job);
400
401 if (r < 0) {
402 /* error this rogue job */
403 if (job->rw == WRITE)
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700404 job->write_err = (unsigned long) -1L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 else
406 job->read_err = 1;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100407 push(&kc->complete_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 break;
409 }
410
411 if (r > 0) {
412 /*
413 * We couldn't service this job ATM, so
414 * push this job back onto the list.
415 */
Kazuo Itob673c3a2008-10-21 17:44:50 +0100416 push_head(jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 }
419
420 count++;
421 }
422
423 return count;
424}
425
426/*
427 * kcopyd does this every time it's woken up.
428 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100429static void do_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100431 struct dm_kcopyd_client *kc = container_of(work,
432 struct dm_kcopyd_client, kcopyd_work);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100433 struct blk_plug plug;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /*
436 * The order that these are called is *very* important.
437 * complete jobs can free some pages for pages jobs.
438 * Pages jobs when successful will jump onto the io jobs
439 * list. io jobs call wake when they complete and it all
440 * starts again.
441 */
Jens Axboe7eaceac2011-03-10 08:52:07 +0100442 blk_start_plug(&plug);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100443 process_jobs(&kc->complete_jobs, kc, run_complete_job);
444 process_jobs(&kc->pages_jobs, kc, run_pages_job);
445 process_jobs(&kc->io_jobs, kc, run_io_job);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100446 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449/*
450 * If we are copying a small region we just dispatch a single job
451 * to do the copy, otherwise the io has to be split up into many
452 * jobs.
453 */
454static void dispatch_job(struct kcopyd_job *job)
455{
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100456 struct dm_kcopyd_client *kc = job->kc;
457 atomic_inc(&kc->nr_jobs);
Mikulas Patocka9ca170a2009-12-10 23:52:13 +0000458 if (unlikely(!job->source.count))
459 push(&kc->complete_jobs, job);
460 else
461 push(&kc->pages_jobs, job);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100462 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700465static void segment_complete(int read_err, unsigned long write_err,
466 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 /* FIXME: tidy this function */
469 sector_t progress = 0;
470 sector_t count = 0;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100471 struct kcopyd_job *sub_job = (struct kcopyd_job *) context;
472 struct kcopyd_job *job = sub_job->master_job;
Mikulas Patocka73830852009-04-09 00:27:16 +0100473 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100475 mutex_lock(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /* update the error */
478 if (read_err)
479 job->read_err = 1;
480
481 if (write_err)
Jonathan Brassowce503f52006-06-26 00:27:30 -0700482 job->write_err |= write_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /*
485 * Only dispatch more work if there hasn't been an error.
486 */
487 if ((!job->read_err && !job->write_err) ||
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100488 test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* get the next chunk of work */
490 progress = job->progress;
491 count = job->source.count - progress;
492 if (count) {
493 if (count > SUB_JOB_SIZE)
494 count = SUB_JOB_SIZE;
495
496 job->progress += count;
497 }
498 }
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100499 mutex_unlock(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if (count) {
502 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 *sub_job = *job;
505 sub_job->source.sector += progress;
506 sub_job->source.count = count;
507
508 for (i = 0; i < job->num_dests; i++) {
509 sub_job->dests[i].sector += progress;
510 sub_job->dests[i].count = count;
511 }
512
513 sub_job->fn = segment_complete;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100514 sub_job->context = sub_job;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 dispatch_job(sub_job);
516
517 } else if (atomic_dec_and_test(&job->sub_jobs)) {
518
519 /*
Mikulas Patocka340cd442009-04-09 00:27:17 +0100520 * Queue the completion callback to the kcopyd thread.
521 *
522 * Some callers assume that all the completions are called
523 * from a single thread and don't race with each other.
524 *
525 * We must not call the callback directly here because this
526 * code may not be executing in the thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Mikulas Patocka340cd442009-04-09 00:27:17 +0100528 push(&kc->complete_jobs, job);
529 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531}
532
533/*
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100534 * Create some sub jobs to share the work between them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100536static void split_job(struct kcopyd_job *master_job)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 int i;
539
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100540 atomic_inc(&master_job->kc->nr_jobs);
Mikulas Patocka340cd442009-04-09 00:27:17 +0100541
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100542 atomic_set(&master_job->sub_jobs, SPLIT_COUNT);
543 for (i = 0; i < SPLIT_COUNT; i++) {
544 master_job[i + 1].master_job = master_job;
545 segment_complete(0, 0u, &master_job[i + 1]);
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100549int dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
550 unsigned int num_dests, struct dm_io_region *dests,
551 unsigned int flags, dm_kcopyd_notify_fn fn, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 struct kcopyd_job *job;
554
555 /*
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100556 * Allocate an array of jobs consisting of one master job
557 * followed by SPLIT_COUNT sub jobs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
Mikulas Patocka08d87572008-04-24 21:43:46 +0100559 job = mempool_alloc(kc->job_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /*
562 * set up for the read.
563 */
564 job->kc = kc;
565 job->flags = flags;
566 job->read_err = 0;
567 job->write_err = 0;
568 job->rw = READ;
569
570 job->source = *from;
571
572 job->num_dests = num_dests;
573 memcpy(&job->dests, dests, sizeof(*dests) * num_dests);
574
575 job->offset = 0;
576 job->nr_pages = 0;
577 job->pages = NULL;
578
579 job->fn = fn;
580 job->context = context;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100581 job->master_job = job;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Mikulas Patockaa705a342011-05-29 13:02:58 +0100583 if (job->source.count <= SUB_JOB_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 dispatch_job(job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 else {
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100586 mutex_init(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 job->progress = 0;
588 split_job(job);
589 }
590
591 return 0;
592}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100593EXPORT_SYMBOL(dm_kcopyd_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595/*
596 * Cancels a kcopyd job, eg. someone might be deactivating a
597 * mirror.
598 */
Adrian Bunk0b563062006-01-06 00:20:08 -0800599#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600int kcopyd_cancel(struct kcopyd_job *job, int block)
601{
602 /* FIXME: finish */
603 return -1;
604}
Adrian Bunk0b563062006-01-06 00:20:08 -0800605#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607/*-----------------------------------------------------------------
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100608 * Client setup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 *---------------------------------------------------------------*/
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100610int dm_kcopyd_client_create(unsigned int nr_pages,
611 struct dm_kcopyd_client **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100613 int r = -ENOMEM;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100614 struct dm_kcopyd_client *kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 kc = kmalloc(sizeof(*kc), GFP_KERNEL);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100617 if (!kc)
618 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100620 spin_lock_init(&kc->job_lock);
621 INIT_LIST_HEAD(&kc->complete_jobs);
622 INIT_LIST_HEAD(&kc->io_jobs);
623 INIT_LIST_HEAD(&kc->pages_jobs);
624
Mikulas Patocka08d87572008-04-24 21:43:46 +0100625 kc->job_pool = mempool_create_slab_pool(MIN_JOBS, _job_cache);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100626 if (!kc->job_pool)
627 goto bad_slab;
Mikulas Patocka08d87572008-04-24 21:43:46 +0100628
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100629 INIT_WORK(&kc->kcopyd_work, do_work);
Tejun Heo9c4376d2011-01-13 19:59:58 +0000630 kc->kcopyd_wq = alloc_workqueue("kcopyd",
631 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100632 if (!kc->kcopyd_wq)
633 goto bad_workqueue;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 kc->pages = NULL;
636 kc->nr_pages = kc->nr_free_pages = 0;
637 r = client_alloc_pages(kc, nr_pages);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100638 if (r)
639 goto bad_client_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Milan Broz373a3922007-05-09 02:33:02 -0700641 kc->io_client = dm_io_client_create(nr_pages);
642 if (IS_ERR(kc->io_client)) {
643 r = PTR_ERR(kc->io_client);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100644 goto bad_io_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800647 init_waitqueue_head(&kc->destroyq);
648 atomic_set(&kc->nr_jobs, 0);
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 *result = kc;
651 return 0;
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100652
653bad_io_client:
654 client_free_pages(kc);
655bad_client_pages:
656 destroy_workqueue(kc->kcopyd_wq);
657bad_workqueue:
658 mempool_destroy(kc->job_pool);
659bad_slab:
660 kfree(kc);
661
662 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100664EXPORT_SYMBOL(dm_kcopyd_client_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100666void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800668 /* Wait for completion of all jobs submitted by this client. */
669 wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs));
670
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100671 BUG_ON(!list_empty(&kc->complete_jobs));
672 BUG_ON(!list_empty(&kc->io_jobs));
673 BUG_ON(!list_empty(&kc->pages_jobs));
674 destroy_workqueue(kc->kcopyd_wq);
Milan Broz373a3922007-05-09 02:33:02 -0700675 dm_io_client_destroy(kc->io_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 client_free_pages(kc);
Mikulas Patocka08d87572008-04-24 21:43:46 +0100677 mempool_destroy(kc->job_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 kfree(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100680EXPORT_SYMBOL(dm_kcopyd_client_destroy);