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 <linux/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/delay.h>
26 #include <linux/device-mapper.h>
27 #include <linux/dm-kcopyd.h>
34 #define DEFAULT_SUB_JOB_SIZE_KB 512
35 #define MAX_SUB_JOB_SIZE_KB 1024
37 static unsigned kcopyd_subjob_size_kb
= DEFAULT_SUB_JOB_SIZE_KB
;
39 module_param(kcopyd_subjob_size_kb
, uint
, S_IRUGO
| S_IWUSR
);
40 MODULE_PARM_DESC(kcopyd_subjob_size_kb
, "Sub-job size for dm-kcopyd clients");
42 static unsigned dm_get_kcopyd_subjob_size(void)
44 unsigned sub_job_size_kb
;
46 sub_job_size_kb
= __dm_get_module_param(&kcopyd_subjob_size_kb
,
47 DEFAULT_SUB_JOB_SIZE_KB
,
50 return sub_job_size_kb
<< 1;
53 /*-----------------------------------------------------------------
54 * Each kcopyd client has its own little pool of preallocated
55 * pages for kcopyd io.
56 *---------------------------------------------------------------*/
57 struct dm_kcopyd_client
{
58 struct page_list
*pages
;
59 unsigned nr_reserved_pages
;
60 unsigned nr_free_pages
;
61 unsigned sub_job_size
;
63 struct dm_io_client
*io_client
;
65 wait_queue_head_t destroyq
;
69 struct workqueue_struct
*kcopyd_wq
;
70 struct work_struct kcopyd_work
;
72 struct dm_kcopyd_throttle
*throttle
;
77 * We maintain four lists of jobs:
79 * i) jobs waiting for pages
80 * ii) jobs that have pages, and are waiting for the io to be issued.
81 * iii) jobs that don't need to do any IO and just run a callback
82 * iv) jobs that have completed.
84 * All four of these are protected by job_lock.
87 struct list_head callback_jobs
;
88 struct list_head complete_jobs
;
89 struct list_head io_jobs
;
90 struct list_head pages_jobs
;
93 static struct page_list zero_page_list
;
95 static DEFINE_SPINLOCK(throttle_spinlock
);
98 * IO/IDLE accounting slowly decays after (1 << ACCOUNT_INTERVAL_SHIFT) period.
99 * When total_period >= (1 << ACCOUNT_INTERVAL_SHIFT) the counters are divided
102 #define ACCOUNT_INTERVAL_SHIFT SHIFT_HZ
105 * Sleep this number of milliseconds.
107 * The value was decided experimentally.
108 * Smaller values seem to cause an increased copy rate above the limit.
109 * The reason for this is unknown but possibly due to jiffies rounding errors
110 * or read/write cache inside the disk.
112 #define SLEEP_MSEC 100
115 * Maximum number of sleep events. There is a theoretical livelock if more
116 * kcopyd clients do work simultaneously which this limit avoids.
118 #define MAX_SLEEPS 10
120 static void io_job_start(struct dm_kcopyd_throttle
*t
)
122 unsigned throttle
, now
, difference
;
129 spin_lock_irq(&throttle_spinlock
);
131 throttle
= READ_ONCE(t
->throttle
);
133 if (likely(throttle
>= 100))
137 difference
= now
- t
->last_jiffies
;
138 t
->last_jiffies
= now
;
140 t
->io_period
+= difference
;
141 t
->total_period
+= difference
;
144 * Maintain sane values if we got a temporary overflow.
146 if (unlikely(t
->io_period
> t
->total_period
))
147 t
->io_period
= t
->total_period
;
149 if (unlikely(t
->total_period
>= (1 << ACCOUNT_INTERVAL_SHIFT
))) {
150 int shift
= fls(t
->total_period
>> ACCOUNT_INTERVAL_SHIFT
);
151 t
->total_period
>>= shift
;
152 t
->io_period
>>= shift
;
155 skew
= t
->io_period
- throttle
* t
->total_period
/ 100;
157 if (unlikely(skew
> 0) && slept
< MAX_SLEEPS
) {
159 spin_unlock_irq(&throttle_spinlock
);
167 spin_unlock_irq(&throttle_spinlock
);
170 static void io_job_finish(struct dm_kcopyd_throttle
*t
)
177 spin_lock_irqsave(&throttle_spinlock
, flags
);
181 if (likely(READ_ONCE(t
->throttle
) >= 100))
184 if (!t
->num_io_jobs
) {
185 unsigned now
, difference
;
188 difference
= now
- t
->last_jiffies
;
189 t
->last_jiffies
= now
;
191 t
->io_period
+= difference
;
192 t
->total_period
+= difference
;
195 * Maintain sane values if we got a temporary overflow.
197 if (unlikely(t
->io_period
> t
->total_period
))
198 t
->io_period
= t
->total_period
;
202 spin_unlock_irqrestore(&throttle_spinlock
, flags
);
206 static void wake(struct dm_kcopyd_client
*kc
)
208 queue_work(kc
->kcopyd_wq
, &kc
->kcopyd_work
);
212 * Obtain one page for the use of kcopyd.
214 static struct page_list
*alloc_pl(gfp_t gfp
)
216 struct page_list
*pl
;
218 pl
= kmalloc(sizeof(*pl
), gfp
);
222 pl
->page
= alloc_page(gfp
);
231 static void free_pl(struct page_list
*pl
)
233 __free_page(pl
->page
);
238 * Add the provided pages to a client's free page list, releasing
239 * back to the system any beyond the reserved_pages limit.
241 static void kcopyd_put_pages(struct dm_kcopyd_client
*kc
, struct page_list
*pl
)
243 struct page_list
*next
;
248 if (kc
->nr_free_pages
>= kc
->nr_reserved_pages
)
251 pl
->next
= kc
->pages
;
260 static int kcopyd_get_pages(struct dm_kcopyd_client
*kc
,
261 unsigned int nr
, struct page_list
**pages
)
263 struct page_list
*pl
;
268 pl
= alloc_pl(__GFP_NOWARN
| __GFP_NORETRY
| __GFP_KSWAPD_RECLAIM
);
270 /* Use reserved pages */
274 kc
->pages
= pl
->next
;
285 kcopyd_put_pages(kc
, *pages
);
290 * These three functions resize the page pool.
292 static void drop_pages(struct page_list
*pl
)
294 struct page_list
*next
;
304 * Allocate and reserve nr_pages for the use of a specific client.
306 static int client_reserve_pages(struct dm_kcopyd_client
*kc
, unsigned nr_pages
)
309 struct page_list
*pl
= NULL
, *next
;
311 for (i
= 0; i
< nr_pages
; i
++) {
312 next
= alloc_pl(GFP_KERNEL
);
322 kc
->nr_reserved_pages
+= nr_pages
;
323 kcopyd_put_pages(kc
, pl
);
328 static void client_free_pages(struct dm_kcopyd_client
*kc
)
330 BUG_ON(kc
->nr_free_pages
!= kc
->nr_reserved_pages
);
331 drop_pages(kc
->pages
);
333 kc
->nr_free_pages
= kc
->nr_reserved_pages
= 0;
336 /*-----------------------------------------------------------------
337 * kcopyd_jobs need to be allocated by the *clients* of kcopyd,
338 * for this reason we use a mempool to prevent the client from
339 * ever having to do io (which could cause a deadlock).
340 *---------------------------------------------------------------*/
342 struct dm_kcopyd_client
*kc
;
343 struct list_head list
;
347 * Error state of the job.
350 unsigned long write_err
;
353 * Either READ or WRITE
356 struct dm_io_region source
;
359 * The destinations for the transfer.
361 unsigned int num_dests
;
362 struct dm_io_region dests
[DM_KCOPYD_MAX_REGIONS
];
364 struct page_list
*pages
;
367 * Set this to ensure you are notified when the job has
368 * completed. 'context' is for callback to use.
370 dm_kcopyd_notify_fn fn
;
374 * These fields are only used if the job has been split
375 * into more manageable parts.
380 sector_t write_offset
;
382 struct kcopyd_job
*master_job
;
385 static struct kmem_cache
*_job_cache
;
387 int __init
dm_kcopyd_init(void)
389 _job_cache
= kmem_cache_create("kcopyd_job",
390 sizeof(struct kcopyd_job
) * (SPLIT_COUNT
+ 1),
391 __alignof__(struct kcopyd_job
), 0, NULL
);
395 zero_page_list
.next
= &zero_page_list
;
396 zero_page_list
.page
= ZERO_PAGE(0);
401 void dm_kcopyd_exit(void)
403 kmem_cache_destroy(_job_cache
);
408 * Functions to push and pop a job onto the head of a given job
411 static struct kcopyd_job
*pop_io_job(struct list_head
*jobs
,
412 struct dm_kcopyd_client
*kc
)
414 struct kcopyd_job
*job
;
417 * For I/O jobs, pop any read, any write without sequential write
418 * constraint and sequential writes that are at the right position.
420 list_for_each_entry(job
, jobs
, list
) {
421 if (job
->rw
== READ
|| !test_bit(DM_KCOPYD_WRITE_SEQ
, &job
->flags
)) {
422 list_del(&job
->list
);
426 if (job
->write_offset
== job
->master_job
->write_offset
) {
427 job
->master_job
->write_offset
+= job
->source
.count
;
428 list_del(&job
->list
);
436 static struct kcopyd_job
*pop(struct list_head
*jobs
,
437 struct dm_kcopyd_client
*kc
)
439 struct kcopyd_job
*job
= NULL
;
442 spin_lock_irqsave(&kc
->job_lock
, flags
);
444 if (!list_empty(jobs
)) {
445 if (jobs
== &kc
->io_jobs
)
446 job
= pop_io_job(jobs
, kc
);
448 job
= list_entry(jobs
->next
, struct kcopyd_job
, list
);
449 list_del(&job
->list
);
452 spin_unlock_irqrestore(&kc
->job_lock
, flags
);
457 static void push(struct list_head
*jobs
, struct kcopyd_job
*job
)
460 struct dm_kcopyd_client
*kc
= job
->kc
;
462 spin_lock_irqsave(&kc
->job_lock
, flags
);
463 list_add_tail(&job
->list
, jobs
);
464 spin_unlock_irqrestore(&kc
->job_lock
, flags
);
468 static void push_head(struct list_head
*jobs
, struct kcopyd_job
*job
)
471 struct dm_kcopyd_client
*kc
= job
->kc
;
473 spin_lock_irqsave(&kc
->job_lock
, flags
);
474 list_add(&job
->list
, jobs
);
475 spin_unlock_irqrestore(&kc
->job_lock
, flags
);
479 * These three functions process 1 item from the corresponding
485 * > 0: can't process yet.
487 static int run_complete_job(struct kcopyd_job
*job
)
489 void *context
= job
->context
;
490 int read_err
= job
->read_err
;
491 unsigned long write_err
= job
->write_err
;
492 dm_kcopyd_notify_fn fn
= job
->fn
;
493 struct dm_kcopyd_client
*kc
= job
->kc
;
495 if (job
->pages
&& job
->pages
!= &zero_page_list
)
496 kcopyd_put_pages(kc
, job
->pages
);
498 * If this is the master job, the sub jobs have already
499 * completed so we can free everything.
501 if (job
->master_job
== job
) {
502 mutex_destroy(&job
->lock
);
503 mempool_free(job
, &kc
->job_pool
);
505 fn(read_err
, write_err
, context
);
507 if (atomic_dec_and_test(&kc
->nr_jobs
))
508 wake_up(&kc
->destroyq
);
515 static void complete_io(unsigned long error
, void *context
)
517 struct kcopyd_job
*job
= (struct kcopyd_job
*) context
;
518 struct dm_kcopyd_client
*kc
= job
->kc
;
520 io_job_finish(kc
->throttle
);
523 if (op_is_write(job
->rw
))
524 job
->write_err
|= error
;
528 if (!test_bit(DM_KCOPYD_IGNORE_ERROR
, &job
->flags
)) {
529 push(&kc
->complete_jobs
, job
);
535 if (op_is_write(job
->rw
))
536 push(&kc
->complete_jobs
, job
);
540 push(&kc
->io_jobs
, job
);
547 * Request io on as many buffer heads as we can currently get for
550 static int run_io_job(struct kcopyd_job
*job
)
553 struct dm_io_request io_req
= {
556 .mem
.type
= DM_IO_PAGE_LIST
,
557 .mem
.ptr
.pl
= job
->pages
,
559 .notify
.fn
= complete_io
,
560 .notify
.context
= job
,
561 .client
= job
->kc
->io_client
,
565 * If we need to write sequentially and some reads or writes failed,
566 * no point in continuing.
568 if (test_bit(DM_KCOPYD_WRITE_SEQ
, &job
->flags
) &&
569 job
->master_job
->write_err
) {
570 job
->write_err
= job
->master_job
->write_err
;
574 io_job_start(job
->kc
->throttle
);
577 r
= dm_io(&io_req
, 1, &job
->source
, NULL
);
579 r
= dm_io(&io_req
, job
->num_dests
, job
->dests
, NULL
);
584 static int run_pages_job(struct kcopyd_job
*job
)
587 unsigned nr_pages
= dm_div_up(job
->dests
[0].count
, PAGE_SIZE
>> 9);
589 r
= kcopyd_get_pages(job
->kc
, nr_pages
, &job
->pages
);
591 /* this job is ready for io */
592 push(&job
->kc
->io_jobs
, job
);
597 /* can't complete now */
604 * Run through a list for as long as possible. Returns the count
605 * of successful jobs.
607 static int process_jobs(struct list_head
*jobs
, struct dm_kcopyd_client
*kc
,
608 int (*fn
) (struct kcopyd_job
*))
610 struct kcopyd_job
*job
;
613 while ((job
= pop(jobs
, kc
))) {
618 /* error this rogue job */
619 if (op_is_write(job
->rw
))
620 job
->write_err
= (unsigned long) -1L;
623 push(&kc
->complete_jobs
, job
);
630 * We couldn't service this job ATM, so
631 * push this job back onto the list.
633 push_head(jobs
, job
);
644 * kcopyd does this every time it's woken up.
646 static void do_work(struct work_struct
*work
)
648 struct dm_kcopyd_client
*kc
= container_of(work
,
649 struct dm_kcopyd_client
, kcopyd_work
);
650 struct blk_plug plug
;
654 * The order that these are called is *very* important.
655 * complete jobs can free some pages for pages jobs.
656 * Pages jobs when successful will jump onto the io jobs
657 * list. io jobs call wake when they complete and it all
660 spin_lock_irqsave(&kc
->job_lock
, flags
);
661 list_splice_tail_init(&kc
->callback_jobs
, &kc
->complete_jobs
);
662 spin_unlock_irqrestore(&kc
->job_lock
, flags
);
664 blk_start_plug(&plug
);
665 process_jobs(&kc
->complete_jobs
, kc
, run_complete_job
);
666 process_jobs(&kc
->pages_jobs
, kc
, run_pages_job
);
667 process_jobs(&kc
->io_jobs
, kc
, run_io_job
);
668 blk_finish_plug(&plug
);
672 * If we are copying a small region we just dispatch a single job
673 * to do the copy, otherwise the io has to be split up into many
676 static void dispatch_job(struct kcopyd_job
*job
)
678 struct dm_kcopyd_client
*kc
= job
->kc
;
679 atomic_inc(&kc
->nr_jobs
);
680 if (unlikely(!job
->source
.count
))
681 push(&kc
->callback_jobs
, job
);
682 else if (job
->pages
== &zero_page_list
)
683 push(&kc
->io_jobs
, job
);
685 push(&kc
->pages_jobs
, job
);
689 static void segment_complete(int read_err
, unsigned long write_err
,
692 /* FIXME: tidy this function */
693 sector_t progress
= 0;
695 struct kcopyd_job
*sub_job
= (struct kcopyd_job
*) context
;
696 struct kcopyd_job
*job
= sub_job
->master_job
;
697 struct dm_kcopyd_client
*kc
= job
->kc
;
699 mutex_lock(&job
->lock
);
701 /* update the error */
706 job
->write_err
|= write_err
;
709 * Only dispatch more work if there hasn't been an error.
711 if ((!job
->read_err
&& !job
->write_err
) ||
712 test_bit(DM_KCOPYD_IGNORE_ERROR
, &job
->flags
)) {
713 /* get the next chunk of work */
714 progress
= job
->progress
;
715 count
= job
->source
.count
- progress
;
717 if (count
> kc
->sub_job_size
)
718 count
= kc
->sub_job_size
;
720 job
->progress
+= count
;
723 mutex_unlock(&job
->lock
);
729 sub_job
->write_offset
= progress
;
730 sub_job
->source
.sector
+= progress
;
731 sub_job
->source
.count
= count
;
733 for (i
= 0; i
< job
->num_dests
; i
++) {
734 sub_job
->dests
[i
].sector
+= progress
;
735 sub_job
->dests
[i
].count
= count
;
738 sub_job
->fn
= segment_complete
;
739 sub_job
->context
= sub_job
;
740 dispatch_job(sub_job
);
742 } else if (atomic_dec_and_test(&job
->sub_jobs
)) {
745 * Queue the completion callback to the kcopyd thread.
747 * Some callers assume that all the completions are called
748 * from a single thread and don't race with each other.
750 * We must not call the callback directly here because this
751 * code may not be executing in the thread.
753 push(&kc
->complete_jobs
, job
);
759 * Create some sub jobs to share the work between them.
761 static void split_job(struct kcopyd_job
*master_job
)
765 atomic_inc(&master_job
->kc
->nr_jobs
);
767 atomic_set(&master_job
->sub_jobs
, SPLIT_COUNT
);
768 for (i
= 0; i
< SPLIT_COUNT
; i
++) {
769 master_job
[i
+ 1].master_job
= master_job
;
770 segment_complete(0, 0u, &master_job
[i
+ 1]);
774 void dm_kcopyd_copy(struct dm_kcopyd_client
*kc
, struct dm_io_region
*from
,
775 unsigned int num_dests
, struct dm_io_region
*dests
,
776 unsigned int flags
, dm_kcopyd_notify_fn fn
, void *context
)
778 struct kcopyd_job
*job
;
782 * Allocate an array of jobs consisting of one master job
783 * followed by SPLIT_COUNT sub jobs.
785 job
= mempool_alloc(&kc
->job_pool
, GFP_NOIO
);
786 mutex_init(&job
->lock
);
789 * set up for the read.
796 job
->num_dests
= num_dests
;
797 memcpy(&job
->dests
, dests
, sizeof(*dests
) * num_dests
);
800 * If one of the destination is a host-managed zoned block device,
801 * we need to write sequentially. If one of the destination is a
802 * host-aware device, then leave it to the caller to choose what to do.
804 if (!test_bit(DM_KCOPYD_WRITE_SEQ
, &job
->flags
)) {
805 for (i
= 0; i
< job
->num_dests
; i
++) {
806 if (bdev_zoned_model(dests
[i
].bdev
) == BLK_ZONED_HM
) {
807 set_bit(DM_KCOPYD_WRITE_SEQ
, &job
->flags
);
814 * If we need to write sequentially, errors cannot be ignored.
816 if (test_bit(DM_KCOPYD_WRITE_SEQ
, &job
->flags
) &&
817 test_bit(DM_KCOPYD_IGNORE_ERROR
, &job
->flags
))
818 clear_bit(DM_KCOPYD_IGNORE_ERROR
, &job
->flags
);
825 memset(&job
->source
, 0, sizeof job
->source
);
826 job
->source
.count
= job
->dests
[0].count
;
827 job
->pages
= &zero_page_list
;
830 * Use WRITE ZEROES to optimize zeroing if all dests support it.
832 job
->rw
= REQ_OP_WRITE_ZEROES
;
833 for (i
= 0; i
< job
->num_dests
; i
++)
834 if (!bdev_write_zeroes_sectors(job
->dests
[i
].bdev
)) {
841 job
->context
= context
;
842 job
->master_job
= job
;
843 job
->write_offset
= 0;
845 if (job
->source
.count
<= kc
->sub_job_size
)
852 EXPORT_SYMBOL(dm_kcopyd_copy
);
854 void dm_kcopyd_zero(struct dm_kcopyd_client
*kc
,
855 unsigned num_dests
, struct dm_io_region
*dests
,
856 unsigned flags
, dm_kcopyd_notify_fn fn
, void *context
)
858 dm_kcopyd_copy(kc
, NULL
, num_dests
, dests
, flags
, fn
, context
);
860 EXPORT_SYMBOL(dm_kcopyd_zero
);
862 void *dm_kcopyd_prepare_callback(struct dm_kcopyd_client
*kc
,
863 dm_kcopyd_notify_fn fn
, void *context
)
865 struct kcopyd_job
*job
;
867 job
= mempool_alloc(&kc
->job_pool
, GFP_NOIO
);
869 memset(job
, 0, sizeof(struct kcopyd_job
));
872 job
->context
= context
;
873 job
->master_job
= job
;
875 atomic_inc(&kc
->nr_jobs
);
879 EXPORT_SYMBOL(dm_kcopyd_prepare_callback
);
881 void dm_kcopyd_do_callback(void *j
, int read_err
, unsigned long write_err
)
883 struct kcopyd_job
*job
= j
;
884 struct dm_kcopyd_client
*kc
= job
->kc
;
886 job
->read_err
= read_err
;
887 job
->write_err
= write_err
;
889 push(&kc
->callback_jobs
, job
);
892 EXPORT_SYMBOL(dm_kcopyd_do_callback
);
895 * Cancels a kcopyd job, eg. someone might be deactivating a
899 int kcopyd_cancel(struct kcopyd_job
*job
, int block
)
906 /*-----------------------------------------------------------------
908 *---------------------------------------------------------------*/
909 struct dm_kcopyd_client
*dm_kcopyd_client_create(struct dm_kcopyd_throttle
*throttle
)
912 unsigned reserve_pages
;
913 struct dm_kcopyd_client
*kc
;
915 kc
= kzalloc(sizeof(*kc
), GFP_KERNEL
);
917 return ERR_PTR(-ENOMEM
);
919 spin_lock_init(&kc
->job_lock
);
920 INIT_LIST_HEAD(&kc
->callback_jobs
);
921 INIT_LIST_HEAD(&kc
->complete_jobs
);
922 INIT_LIST_HEAD(&kc
->io_jobs
);
923 INIT_LIST_HEAD(&kc
->pages_jobs
);
924 kc
->throttle
= throttle
;
926 r
= mempool_init_slab_pool(&kc
->job_pool
, MIN_JOBS
, _job_cache
);
930 INIT_WORK(&kc
->kcopyd_work
, do_work
);
931 kc
->kcopyd_wq
= alloc_workqueue("kcopyd", WQ_MEM_RECLAIM
, 0);
932 if (!kc
->kcopyd_wq
) {
937 kc
->sub_job_size
= dm_get_kcopyd_subjob_size();
938 reserve_pages
= DIV_ROUND_UP(kc
->sub_job_size
<< SECTOR_SHIFT
, PAGE_SIZE
);
941 kc
->nr_reserved_pages
= kc
->nr_free_pages
= 0;
942 r
= client_reserve_pages(kc
, reserve_pages
);
944 goto bad_client_pages
;
946 kc
->io_client
= dm_io_client_create();
947 if (IS_ERR(kc
->io_client
)) {
948 r
= PTR_ERR(kc
->io_client
);
952 init_waitqueue_head(&kc
->destroyq
);
953 atomic_set(&kc
->nr_jobs
, 0);
958 client_free_pages(kc
);
960 destroy_workqueue(kc
->kcopyd_wq
);
962 mempool_exit(&kc
->job_pool
);
968 EXPORT_SYMBOL(dm_kcopyd_client_create
);
970 void dm_kcopyd_client_destroy(struct dm_kcopyd_client
*kc
)
972 /* Wait for completion of all jobs submitted by this client. */
973 wait_event(kc
->destroyq
, !atomic_read(&kc
->nr_jobs
));
975 BUG_ON(!list_empty(&kc
->callback_jobs
));
976 BUG_ON(!list_empty(&kc
->complete_jobs
));
977 BUG_ON(!list_empty(&kc
->io_jobs
));
978 BUG_ON(!list_empty(&kc
->pages_jobs
));
979 destroy_workqueue(kc
->kcopyd_wq
);
980 dm_io_client_destroy(kc
->io_client
);
981 client_free_pages(kc
);
982 mempool_exit(&kc
->job_pool
);
985 EXPORT_SYMBOL(dm_kcopyd_client_destroy
);