2 * Copyright (C) 2002 Sistina Software (UK) Limited.
3 * Copyright (C) 2006 Red Hat GmbH
5 * This file is released under the GPL.
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.
12 #include <linux/types.h>
13 #include <asm/atomic.h>
14 #include <linux/blkdev.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>
24 #include <linux/mutex.h>
25 #include <linux/device-mapper.h>
26 #include <linux/dm-kcopyd.h>
30 #define SUB_JOB_SIZE 128
33 #define RESERVE_PAGES (DIV_ROUND_UP(SUB_JOB_SIZE << SECTOR_SHIFT, PAGE_SIZE))
35 /*-----------------------------------------------------------------
36 * Each kcopyd client has its own little pool of preallocated
37 * pages for kcopyd io.
38 *---------------------------------------------------------------*/
39 struct dm_kcopyd_client {
40 struct page_list *pages;
41 unsigned nr_reserved_pages;
42 unsigned nr_free_pages;
44 struct dm_io_client *io_client;
46 wait_queue_head_t destroyq;
51 struct workqueue_struct *kcopyd_wq;
52 struct work_struct kcopyd_work;
55 * We maintain three lists of jobs:
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.
61 * All three of these are protected by job_lock.
64 struct list_head complete_jobs;
65 struct list_head io_jobs;
66 struct list_head pages_jobs;
69 static void wake(struct dm_kcopyd_client *kc)
71 queue_work(kc->kcopyd_wq, &kc->kcopyd_work);
75 * Obtain one page for the use of kcopyd.
77 static struct page_list *alloc_pl(gfp_t gfp)
81 pl = kmalloc(sizeof(*pl), gfp);
85 pl->page = alloc_page(gfp);
94 static void free_pl(struct page_list *pl)
96 __free_page(pl->page);
101 * Add the provided pages to a client's free page list, releasing
102 * back to the system any beyond the reserved_pages limit.
104 static void kcopyd_put_pages(struct dm_kcopyd_client *kc, struct page_list *pl)
106 struct page_list *next;
111 if (kc->nr_free_pages >= kc->nr_reserved_pages)
114 pl->next = kc->pages;
123 static int kcopyd_get_pages(struct dm_kcopyd_client *kc,
124 unsigned int nr, struct page_list **pages)
126 struct page_list *pl;
131 pl = alloc_pl(__GFP_NOWARN | __GFP_NORETRY);
133 /* Use reserved pages */
137 kc->pages = pl->next;
148 kcopyd_put_pages(kc, *pages);
153 * These three functions resize the page pool.
155 static void drop_pages(struct page_list *pl)
157 struct page_list *next;
167 * Allocate and reserve nr_pages for the use of a specific client.
169 static int client_reserve_pages(struct dm_kcopyd_client *kc, unsigned nr_pages)
172 struct page_list *pl = NULL, *next;
174 for (i = 0; i < nr_pages; i++) {
175 next = alloc_pl(GFP_KERNEL);
185 kc->nr_reserved_pages += nr_pages;
186 kcopyd_put_pages(kc, pl);
191 static void client_free_pages(struct dm_kcopyd_client *kc)
193 BUG_ON(kc->nr_free_pages != kc->nr_reserved_pages);
194 drop_pages(kc->pages);
196 kc->nr_free_pages = kc->nr_reserved_pages = 0;
199 /*-----------------------------------------------------------------
200 * kcopyd_jobs need to be allocated by the *clients* of kcopyd,
201 * for this reason we use a mempool to prevent the client from
202 * ever having to do io (which could cause a deadlock).
203 *---------------------------------------------------------------*/
205 struct dm_kcopyd_client *kc;
206 struct list_head list;
210 * Error state of the job.
213 unsigned long write_err;
216 * Either READ or WRITE
219 struct dm_io_region source;
222 * The destinations for the transfer.
224 unsigned int num_dests;
225 struct dm_io_region dests[DM_KCOPYD_MAX_REGIONS];
228 unsigned int nr_pages;
229 struct page_list *pages;
232 * Set this to ensure you are notified when the job has
233 * completed. 'context' is for callback to use.
235 dm_kcopyd_notify_fn fn;
239 * These fields are only used if the job has been split
240 * into more manageable parts.
246 struct kcopyd_job *master_job;
249 static struct kmem_cache *_job_cache;
251 int __init dm_kcopyd_init(void)
253 _job_cache = kmem_cache_create("kcopyd_job",
254 sizeof(struct kcopyd_job) * (SPLIT_COUNT + 1),
255 __alignof__(struct kcopyd_job), 0, NULL);
262 void dm_kcopyd_exit(void)
264 kmem_cache_destroy(_job_cache);
269 * Functions to push and pop a job onto the head of a given job
272 static struct kcopyd_job *pop(struct list_head *jobs,
273 struct dm_kcopyd_client *kc)
275 struct kcopyd_job *job = NULL;
278 spin_lock_irqsave(&kc->job_lock, flags);
280 if (!list_empty(jobs)) {
281 job = list_entry(jobs->next, struct kcopyd_job, list);
282 list_del(&job->list);
284 spin_unlock_irqrestore(&kc->job_lock, flags);
289 static void push(struct list_head *jobs, struct kcopyd_job *job)
292 struct dm_kcopyd_client *kc = job->kc;
294 spin_lock_irqsave(&kc->job_lock, flags);
295 list_add_tail(&job->list, jobs);
296 spin_unlock_irqrestore(&kc->job_lock, flags);
300 static void push_head(struct list_head *jobs, struct kcopyd_job *job)
303 struct dm_kcopyd_client *kc = job->kc;
305 spin_lock_irqsave(&kc->job_lock, flags);
306 list_add(&job->list, jobs);
307 spin_unlock_irqrestore(&kc->job_lock, flags);
311 * These three functions process 1 item from the corresponding
317 * > 0: can't process yet.
319 static int run_complete_job(struct kcopyd_job *job)
321 void *context = job->context;
322 int read_err = job->read_err;
323 unsigned long write_err = job->write_err;
324 dm_kcopyd_notify_fn fn = job->fn;
325 struct dm_kcopyd_client *kc = job->kc;
328 kcopyd_put_pages(kc, job->pages);
330 * If this is the master job, the sub jobs have already
331 * completed so we can free everything.
333 if (job->master_job == job)
334 mempool_free(job, kc->job_pool);
335 fn(read_err, write_err, context);
337 if (atomic_dec_and_test(&kc->nr_jobs))
338 wake_up(&kc->destroyq);
343 static void complete_io(unsigned long error, void *context)
345 struct kcopyd_job *job = (struct kcopyd_job *) context;
346 struct dm_kcopyd_client *kc = job->kc;
349 if (job->rw == WRITE)
350 job->write_err |= error;
354 if (!test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
355 push(&kc->complete_jobs, job);
361 if (job->rw == WRITE)
362 push(&kc->complete_jobs, job);
366 push(&kc->io_jobs, job);
373 * Request io on as many buffer heads as we can currently get for
376 static int run_io_job(struct kcopyd_job *job)
379 struct dm_io_request io_req = {
381 .mem.type = DM_IO_PAGE_LIST,
382 .mem.ptr.pl = job->pages,
383 .mem.offset = job->offset,
384 .notify.fn = complete_io,
385 .notify.context = job,
386 .client = job->kc->io_client,
390 r = dm_io(&io_req, 1, &job->source, NULL);
392 r = dm_io(&io_req, job->num_dests, job->dests, NULL);
397 static int run_pages_job(struct kcopyd_job *job)
401 job->nr_pages = dm_div_up(job->dests[0].count + job->offset,
403 r = kcopyd_get_pages(job->kc, job->nr_pages, &job->pages);
405 /* this job is ready for io */
406 push(&job->kc->io_jobs, job);
411 /* can't complete now */
418 * Run through a list for as long as possible. Returns the count
419 * of successful jobs.
421 static int process_jobs(struct list_head *jobs, struct dm_kcopyd_client *kc,
422 int (*fn) (struct kcopyd_job *))
424 struct kcopyd_job *job;
427 while ((job = pop(jobs, kc))) {
432 /* error this rogue job */
433 if (job->rw == WRITE)
434 job->write_err = (unsigned long) -1L;
437 push(&kc->complete_jobs, job);
443 * We couldn't service this job ATM, so
444 * push this job back onto the list.
446 push_head(jobs, job);
457 * kcopyd does this every time it's woken up.
459 static void do_work(struct work_struct *work)
461 struct dm_kcopyd_client *kc = container_of(work,
462 struct dm_kcopyd_client, kcopyd_work);
463 struct blk_plug plug;
466 * The order that these are called is *very* important.
467 * complete jobs can free some pages for pages jobs.
468 * Pages jobs when successful will jump onto the io jobs
469 * list. io jobs call wake when they complete and it all
472 blk_start_plug(&plug);
473 process_jobs(&kc->complete_jobs, kc, run_complete_job);
474 process_jobs(&kc->pages_jobs, kc, run_pages_job);
475 process_jobs(&kc->io_jobs, kc, run_io_job);
476 blk_finish_plug(&plug);
480 * If we are copying a small region we just dispatch a single job
481 * to do the copy, otherwise the io has to be split up into many
484 static void dispatch_job(struct kcopyd_job *job)
486 struct dm_kcopyd_client *kc = job->kc;
487 atomic_inc(&kc->nr_jobs);
488 if (unlikely(!job->source.count))
489 push(&kc->complete_jobs, job);
491 push(&kc->pages_jobs, job);
495 static void segment_complete(int read_err, unsigned long write_err,
498 /* FIXME: tidy this function */
499 sector_t progress = 0;
501 struct kcopyd_job *sub_job = (struct kcopyd_job *) context;
502 struct kcopyd_job *job = sub_job->master_job;
503 struct dm_kcopyd_client *kc = job->kc;
505 mutex_lock(&job->lock);
507 /* update the error */
512 job->write_err |= write_err;
515 * Only dispatch more work if there hasn't been an error.
517 if ((!job->read_err && !job->write_err) ||
518 test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
519 /* get the next chunk of work */
520 progress = job->progress;
521 count = job->source.count - progress;
523 if (count > SUB_JOB_SIZE)
524 count = SUB_JOB_SIZE;
526 job->progress += count;
529 mutex_unlock(&job->lock);
535 sub_job->source.sector += progress;
536 sub_job->source.count = count;
538 for (i = 0; i < job->num_dests; i++) {
539 sub_job->dests[i].sector += progress;
540 sub_job->dests[i].count = count;
543 sub_job->fn = segment_complete;
544 sub_job->context = sub_job;
545 dispatch_job(sub_job);
547 } else if (atomic_dec_and_test(&job->sub_jobs)) {
550 * Queue the completion callback to the kcopyd thread.
552 * Some callers assume that all the completions are called
553 * from a single thread and don't race with each other.
555 * We must not call the callback directly here because this
556 * code may not be executing in the thread.
558 push(&kc->complete_jobs, job);
564 * Create some sub jobs to share the work between them.
566 static void split_job(struct kcopyd_job *master_job)
570 atomic_inc(&master_job->kc->nr_jobs);
572 atomic_set(&master_job->sub_jobs, SPLIT_COUNT);
573 for (i = 0; i < SPLIT_COUNT; i++) {
574 master_job[i + 1].master_job = master_job;
575 segment_complete(0, 0u, &master_job[i + 1]);
579 int dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
580 unsigned int num_dests, struct dm_io_region *dests,
581 unsigned int flags, dm_kcopyd_notify_fn fn, void *context)
583 struct kcopyd_job *job;
586 * Allocate an array of jobs consisting of one master job
587 * followed by SPLIT_COUNT sub jobs.
589 job = mempool_alloc(kc->job_pool, GFP_NOIO);
592 * set up for the read.
602 job->num_dests = num_dests;
603 memcpy(&job->dests, dests, sizeof(*dests) * num_dests);
610 job->context = context;
611 job->master_job = job;
613 if (job->source.count <= SUB_JOB_SIZE)
616 mutex_init(&job->lock);
623 EXPORT_SYMBOL(dm_kcopyd_copy);
626 * Cancels a kcopyd job, eg. someone might be deactivating a
630 int kcopyd_cancel(struct kcopyd_job *job, int block)
637 /*-----------------------------------------------------------------
639 *---------------------------------------------------------------*/
640 struct dm_kcopyd_client *dm_kcopyd_client_create(void)
643 struct dm_kcopyd_client *kc;
645 kc = kmalloc(sizeof(*kc), GFP_KERNEL);
647 return ERR_PTR(-ENOMEM);
649 spin_lock_init(&kc->job_lock);
650 INIT_LIST_HEAD(&kc->complete_jobs);
651 INIT_LIST_HEAD(&kc->io_jobs);
652 INIT_LIST_HEAD(&kc->pages_jobs);
654 kc->job_pool = mempool_create_slab_pool(MIN_JOBS, _job_cache);
658 INIT_WORK(&kc->kcopyd_work, do_work);
659 kc->kcopyd_wq = alloc_workqueue("kcopyd",
660 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
665 kc->nr_reserved_pages = kc->nr_free_pages = 0;
666 r = client_reserve_pages(kc, RESERVE_PAGES);
668 goto bad_client_pages;
670 kc->io_client = dm_io_client_create();
671 if (IS_ERR(kc->io_client)) {
672 r = PTR_ERR(kc->io_client);
676 init_waitqueue_head(&kc->destroyq);
677 atomic_set(&kc->nr_jobs, 0);
682 client_free_pages(kc);
684 destroy_workqueue(kc->kcopyd_wq);
686 mempool_destroy(kc->job_pool);
692 EXPORT_SYMBOL(dm_kcopyd_client_create);
694 void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc)
696 /* Wait for completion of all jobs submitted by this client. */
697 wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs));
699 BUG_ON(!list_empty(&kc->complete_jobs));
700 BUG_ON(!list_empty(&kc->io_jobs));
701 BUG_ON(!list_empty(&kc->pages_jobs));
702 destroy_workqueue(kc->kcopyd_wq);
703 dm_io_client_destroy(kc->io_client);
704 client_free_pages(kc);
705 mempool_destroy(kc->job_pool);
708 EXPORT_SYMBOL(dm_kcopyd_client_destroy);