blob: df2011de7be268131211025e227fc5d989334161 [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>
Arun Sharma600634972011-07-26 16:09:06 -070013#include <linux/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 Patockadf5d2e92013-03-01 22:45:49 +000025#include <linux/delay.h>
Mikulas Patocka586e80e2008-10-21 17:44:59 +010026#include <linux/device-mapper.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010027#include <linux/dm-kcopyd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Mike Snitzer4cc96132016-05-12 16:28:10 -040029#include "dm-core.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Mikulas Patockac6ea41f2011-05-29 13:03:00 +010031#define SPLIT_COUNT 8
32#define MIN_JOBS 8
Nikos Tsironisc663e042019-07-17 14:24:10 +030033
34#define DEFAULT_SUB_JOB_SIZE_KB 512
35#define MAX_SUB_JOB_SIZE_KB 1024
36
37static unsigned kcopyd_subjob_size_kb = DEFAULT_SUB_JOB_SIZE_KB;
38
39module_param(kcopyd_subjob_size_kb, uint, S_IRUGO | S_IWUSR);
40MODULE_PARM_DESC(kcopyd_subjob_size_kb, "Sub-job size for dm-kcopyd clients");
41
42static unsigned dm_get_kcopyd_subjob_size(void)
43{
44 unsigned sub_job_size_kb;
45
46 sub_job_size_kb = __dm_get_module_param(&kcopyd_subjob_size_kb,
47 DEFAULT_SUB_JOB_SIZE_KB,
48 MAX_SUB_JOB_SIZE_KB);
49
50 return sub_job_size_kb << 1;
51}
Mikulas Patockac6ea41f2011-05-29 13:03:00 +010052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*-----------------------------------------------------------------
54 * Each kcopyd client has its own little pool of preallocated
55 * pages for kcopyd io.
56 *---------------------------------------------------------------*/
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010057struct dm_kcopyd_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct page_list *pages;
Mikulas Patockad0471452011-05-29 13:03:07 +010059 unsigned nr_reserved_pages;
60 unsigned nr_free_pages;
Nikos Tsironisc663e042019-07-17 14:24:10 +030061 unsigned sub_job_size;
Alasdair G Kergon138728dc2006-03-27 01:17:50 -080062
Milan Broz373a3922007-05-09 02:33:02 -070063 struct dm_io_client *io_client;
64
Alasdair G Kergon138728dc2006-03-27 01:17:50 -080065 wait_queue_head_t destroyq;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010066
Kent Overstreet6f1c8192018-05-20 18:25:53 -040067 mempool_t job_pool;
Mikulas Patocka08d87572008-04-24 21:43:46 +010068
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010069 struct workqueue_struct *kcopyd_wq;
70 struct work_struct kcopyd_work;
71
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000072 struct dm_kcopyd_throttle *throttle;
73
Mike Snitzer72d711c2018-05-22 18:26:20 -040074 atomic_t nr_jobs;
75
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010076/*
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -040077 * We maintain four lists of jobs:
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010078 *
79 * i) jobs waiting for pages
80 * ii) jobs that have pages, and are waiting for the io to be issued.
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -040081 * iii) jobs that don't need to do any IO and just run a callback
82 * iv) jobs that have completed.
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010083 *
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -040084 * All four of these are protected by job_lock.
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010085 */
86 spinlock_t job_lock;
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -040087 struct list_head callback_jobs;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +010088 struct list_head complete_jobs;
89 struct list_head io_jobs;
90 struct list_head pages_jobs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
Mikulas Patocka7f069652011-10-31 20:18:58 +000093static struct page_list zero_page_list;
94
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000095static DEFINE_SPINLOCK(throttle_spinlock);
96
97/*
98 * IO/IDLE accounting slowly decays after (1 << ACCOUNT_INTERVAL_SHIFT) period.
99 * When total_period >= (1 << ACCOUNT_INTERVAL_SHIFT) the counters are divided
100 * by 2.
101 */
102#define ACCOUNT_INTERVAL_SHIFT SHIFT_HZ
103
104/*
105 * Sleep this number of milliseconds.
106 *
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.
111 */
112#define SLEEP_MSEC 100
113
114/*
115 * Maximum number of sleep events. There is a theoretical livelock if more
116 * kcopyd clients do work simultaneously which this limit avoids.
117 */
118#define MAX_SLEEPS 10
119
120static void io_job_start(struct dm_kcopyd_throttle *t)
121{
122 unsigned throttle, now, difference;
123 int slept = 0, skew;
124
125 if (unlikely(!t))
126 return;
127
128try_again:
129 spin_lock_irq(&throttle_spinlock);
130
Mark Rutland6aa7de02017-10-23 14:07:29 -0700131 throttle = READ_ONCE(t->throttle);
Mikulas Patockadf5d2e92013-03-01 22:45:49 +0000132
133 if (likely(throttle >= 100))
134 goto skip_limit;
135
136 now = jiffies;
137 difference = now - t->last_jiffies;
138 t->last_jiffies = now;
139 if (t->num_io_jobs)
140 t->io_period += difference;
141 t->total_period += difference;
142
143 /*
144 * Maintain sane values if we got a temporary overflow.
145 */
146 if (unlikely(t->io_period > t->total_period))
147 t->io_period = t->total_period;
148
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;
153 }
154
155 skew = t->io_period - throttle * t->total_period / 100;
156
157 if (unlikely(skew > 0) && slept < MAX_SLEEPS) {
158 slept++;
159 spin_unlock_irq(&throttle_spinlock);
160 msleep(SLEEP_MSEC);
161 goto try_again;
162 }
163
164skip_limit:
165 t->num_io_jobs++;
166
167 spin_unlock_irq(&throttle_spinlock);
168}
169
170static void io_job_finish(struct dm_kcopyd_throttle *t)
171{
172 unsigned long flags;
173
174 if (unlikely(!t))
175 return;
176
177 spin_lock_irqsave(&throttle_spinlock, flags);
178
179 t->num_io_jobs--;
180
Mark Rutland6aa7de02017-10-23 14:07:29 -0700181 if (likely(READ_ONCE(t->throttle) >= 100))
Mikulas Patockadf5d2e92013-03-01 22:45:49 +0000182 goto skip_limit;
183
184 if (!t->num_io_jobs) {
185 unsigned now, difference;
186
187 now = jiffies;
188 difference = now - t->last_jiffies;
189 t->last_jiffies = now;
190
191 t->io_period += difference;
192 t->total_period += difference;
193
194 /*
195 * Maintain sane values if we got a temporary overflow.
196 */
197 if (unlikely(t->io_period > t->total_period))
198 t->io_period = t->total_period;
199 }
200
201skip_limit:
202 spin_unlock_irqrestore(&throttle_spinlock, flags);
203}
204
205
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100206static void wake(struct dm_kcopyd_client *kc)
207{
208 queue_work(kc->kcopyd_wq, &kc->kcopyd_work);
209}
210
Mikulas Patockad0471452011-05-29 13:03:07 +0100211/*
212 * Obtain one page for the use of kcopyd.
213 */
Mikulas Patockaf99b55e2011-05-29 13:03:04 +0100214static struct page_list *alloc_pl(gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 struct page_list *pl;
217
Mikulas Patockaf99b55e2011-05-29 13:03:04 +0100218 pl = kmalloc(sizeof(*pl), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (!pl)
220 return NULL;
221
Mikulas Patockaf99b55e2011-05-29 13:03:04 +0100222 pl->page = alloc_page(gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!pl->page) {
224 kfree(pl);
225 return NULL;
226 }
227
228 return pl;
229}
230
231static void free_pl(struct page_list *pl)
232{
233 __free_page(pl->page);
234 kfree(pl);
235}
236
Mikulas Patockad0471452011-05-29 13:03:07 +0100237/*
238 * Add the provided pages to a client's free page list, releasing
239 * back to the system any beyond the reserved_pages limit.
240 */
241static void kcopyd_put_pages(struct dm_kcopyd_client *kc, struct page_list *pl)
242{
243 struct page_list *next;
244
245 do {
246 next = pl->next;
247
248 if (kc->nr_free_pages >= kc->nr_reserved_pages)
249 free_pl(pl);
250 else {
251 pl->next = kc->pages;
252 kc->pages = pl;
253 kc->nr_free_pages++;
254 }
255
256 pl = next;
257 } while (pl);
258}
259
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100260static int kcopyd_get_pages(struct dm_kcopyd_client *kc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 unsigned int nr, struct page_list **pages)
262{
263 struct page_list *pl;
264
Mikulas Patockad0471452011-05-29 13:03:07 +0100265 *pages = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Mikulas Patockad0471452011-05-29 13:03:07 +0100267 do {
Mel Gormand0164ad2015-11-06 16:28:21 -0800268 pl = alloc_pl(__GFP_NOWARN | __GFP_NORETRY | __GFP_KSWAPD_RECLAIM);
Mikulas Patockad0471452011-05-29 13:03:07 +0100269 if (unlikely(!pl)) {
270 /* Use reserved pages */
271 pl = kc->pages;
272 if (unlikely(!pl))
273 goto out_of_memory;
274 kc->pages = pl->next;
275 kc->nr_free_pages--;
276 }
277 pl->next = *pages;
278 *pages = pl;
279 } while (--nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Mikulas Patockad0471452011-05-29 13:03:07 +0100283out_of_memory:
284 if (*pages)
285 kcopyd_put_pages(kc, *pages);
286 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/*
290 * These three functions resize the page pool.
291 */
292static void drop_pages(struct page_list *pl)
293{
294 struct page_list *next;
295
296 while (pl) {
297 next = pl->next;
298 free_pl(pl);
299 pl = next;
300 }
301}
302
Mikulas Patockad0471452011-05-29 13:03:07 +0100303/*
304 * Allocate and reserve nr_pages for the use of a specific client.
305 */
306static int client_reserve_pages(struct dm_kcopyd_client *kc, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Mikulas Patockad0471452011-05-29 13:03:07 +0100308 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 struct page_list *pl = NULL, *next;
310
Mikulas Patockad0471452011-05-29 13:03:07 +0100311 for (i = 0; i < nr_pages; i++) {
Mikulas Patockaf99b55e2011-05-29 13:03:04 +0100312 next = alloc_pl(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!next) {
314 if (pl)
315 drop_pages(pl);
316 return -ENOMEM;
317 }
318 next->next = pl;
319 pl = next;
320 }
321
Mikulas Patockad0471452011-05-29 13:03:07 +0100322 kc->nr_reserved_pages += nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 kcopyd_put_pages(kc, pl);
Mikulas Patockad0471452011-05-29 13:03:07 +0100324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 0;
326}
327
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100328static void client_free_pages(struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Mikulas Patockad0471452011-05-29 13:03:07 +0100330 BUG_ON(kc->nr_free_pages != kc->nr_reserved_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 drop_pages(kc->pages);
332 kc->pages = NULL;
Mikulas Patockad0471452011-05-29 13:03:07 +0100333 kc->nr_free_pages = kc->nr_reserved_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
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 *---------------------------------------------------------------*/
341struct kcopyd_job {
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100342 struct dm_kcopyd_client *kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct list_head list;
344 unsigned long flags;
345
346 /*
347 * Error state of the job.
348 */
349 int read_err;
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700350 unsigned long write_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 /*
353 * Either READ or WRITE
354 */
355 int rw;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100356 struct dm_io_region source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /*
359 * The destinations for the transfer.
360 */
361 unsigned int num_dests;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100362 struct dm_io_region dests[DM_KCOPYD_MAX_REGIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct page_list *pages;
365
366 /*
367 * Set this to ensure you are notified when the job has
368 * completed. 'context' is for callback to use.
369 */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100370 dm_kcopyd_notify_fn fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 void *context;
372
373 /*
374 * These fields are only used if the job has been split
375 * into more manageable parts.
376 */
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100377 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 atomic_t sub_jobs;
379 sector_t progress;
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700380 sector_t write_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100382 struct kcopyd_job *master_job;
383};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Christoph Lametere18b8902006-12-06 20:33:20 -0800385static struct kmem_cache *_job_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100387int __init dm_kcopyd_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100389 _job_cache = kmem_cache_create("kcopyd_job",
390 sizeof(struct kcopyd_job) * (SPLIT_COUNT + 1),
391 __alignof__(struct kcopyd_job), 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (!_job_cache)
393 return -ENOMEM;
394
Mikulas Patocka7f069652011-10-31 20:18:58 +0000395 zero_page_list.next = &zero_page_list;
396 zero_page_list.page = ZERO_PAGE(0);
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 0;
399}
400
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100401void dm_kcopyd_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 kmem_cache_destroy(_job_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 _job_cache = NULL;
405}
406
407/*
408 * Functions to push and pop a job onto the head of a given job
409 * list.
410 */
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700411static struct kcopyd_job *pop_io_job(struct list_head *jobs,
412 struct dm_kcopyd_client *kc)
413{
414 struct kcopyd_job *job;
415
416 /*
417 * For I/O jobs, pop any read, any write without sequential write
418 * constraint and sequential writes that are at the right position.
419 */
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);
423 return job;
424 }
425
426 if (job->write_offset == job->master_job->write_offset) {
427 job->master_job->write_offset += job->source.count;
428 list_del(&job->list);
429 return job;
430 }
431 }
432
433 return NULL;
434}
435
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100436static struct kcopyd_job *pop(struct list_head *jobs,
437 struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 struct kcopyd_job *job = NULL;
440 unsigned long flags;
441
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100442 spin_lock_irqsave(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 if (!list_empty(jobs)) {
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700445 if (jobs == &kc->io_jobs)
446 job = pop_io_job(jobs, kc);
447 else {
448 job = list_entry(jobs->next, struct kcopyd_job, list);
449 list_del(&job->list);
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100452 spin_unlock_irqrestore(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 return job;
455}
456
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100457static void push(struct list_head *jobs, struct kcopyd_job *job)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 unsigned long flags;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100460 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100462 spin_lock_irqsave(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 list_add_tail(&job->list, jobs);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100464 spin_unlock_irqrestore(&kc->job_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Kazuo Itob673c3a2008-10-21 17:44:50 +0100467
468static void push_head(struct list_head *jobs, struct kcopyd_job *job)
469{
470 unsigned long flags;
471 struct dm_kcopyd_client *kc = job->kc;
472
473 spin_lock_irqsave(&kc->job_lock, flags);
474 list_add(&job->list, jobs);
475 spin_unlock_irqrestore(&kc->job_lock, flags);
476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478/*
479 * These three functions process 1 item from the corresponding
480 * job list.
481 *
482 * They return:
483 * < 0: error
484 * 0: success
485 * > 0: can't process yet.
486 */
487static int run_complete_job(struct kcopyd_job *job)
488{
489 void *context = job->context;
490 int read_err = job->read_err;
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700491 unsigned long write_err = job->write_err;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100492 dm_kcopyd_notify_fn fn = job->fn;
493 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Mikulas Patocka7f069652011-10-31 20:18:58 +0000495 if (job->pages && job->pages != &zero_page_list)
Mikulas Patocka73830852009-04-09 00:27:16 +0100496 kcopyd_put_pages(kc, job->pages);
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100497 /*
498 * If this is the master job, the sub jobs have already
499 * completed so we can free everything.
500 */
Mike Snitzerd5ffebd2018-01-05 21:17:20 -0500501 if (job->master_job == job) {
502 mutex_destroy(&job->lock);
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400503 mempool_free(job, &kc->job_pool);
Mike Snitzerd5ffebd2018-01-05 21:17:20 -0500504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 fn(read_err, write_err, context);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800506
507 if (atomic_dec_and_test(&kc->nr_jobs))
508 wake_up(&kc->destroyq);
509
John Pittman784c9a22018-08-06 15:53:12 -0400510 cond_resched();
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return 0;
513}
514
515static void complete_io(unsigned long error, void *context)
516{
517 struct kcopyd_job *job = (struct kcopyd_job *) context;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100518 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Mikulas Patockadf5d2e92013-03-01 22:45:49 +0000520 io_job_finish(kc->throttle);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (error) {
Mike Christie51111662016-06-05 14:31:46 -0500523 if (op_is_write(job->rw))
Jonathan Brassowce503f52006-06-26 00:27:30 -0700524 job->write_err |= error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 else
526 job->read_err = 1;
527
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100528 if (!test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100529 push(&kc->complete_jobs, job);
530 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return;
532 }
533 }
534
Mike Christie51111662016-06-05 14:31:46 -0500535 if (op_is_write(job->rw))
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100536 push(&kc->complete_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 else {
539 job->rw = WRITE;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100540 push(&kc->io_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100543 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546/*
547 * Request io on as many buffer heads as we can currently get for
548 * a particular job.
549 */
550static int run_io_job(struct kcopyd_job *job)
551{
552 int r;
Milan Broz373a3922007-05-09 02:33:02 -0700553 struct dm_io_request io_req = {
Mike Christiee6047142016-06-05 14:32:04 -0500554 .bi_op = job->rw,
555 .bi_op_flags = 0,
Milan Broz373a3922007-05-09 02:33:02 -0700556 .mem.type = DM_IO_PAGE_LIST,
557 .mem.ptr.pl = job->pages,
Mikulas Patocka4622afb2011-08-02 12:32:02 +0100558 .mem.offset = 0,
Milan Broz373a3922007-05-09 02:33:02 -0700559 .notify.fn = complete_io,
560 .notify.context = job,
561 .client = job->kc->io_client,
562 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700564 /*
565 * If we need to write sequentially and some reads or writes failed,
566 * no point in continuing.
567 */
568 if (test_bit(DM_KCOPYD_WRITE_SEQ, &job->flags) &&
569 job->master_job->write_err)
570 return -EIO;
571
Mikulas Patockadf5d2e92013-03-01 22:45:49 +0000572 io_job_start(job->kc->throttle);
573
Jens Axboe7eaceac2011-03-10 08:52:07 +0100574 if (job->rw == READ)
Milan Broz373a3922007-05-09 02:33:02 -0700575 r = dm_io(&io_req, 1, &job->source, NULL);
Jens Axboe721a9602011-03-09 11:56:30 +0100576 else
Milan Broz373a3922007-05-09 02:33:02 -0700577 r = dm_io(&io_req, job->num_dests, job->dests, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 return r;
580}
581
582static int run_pages_job(struct kcopyd_job *job)
583{
584 int r;
Mikulas Patocka5bf45a32011-08-02 12:32:02 +0100585 unsigned nr_pages = dm_div_up(job->dests[0].count, PAGE_SIZE >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Mikulas Patocka5bf45a32011-08-02 12:32:02 +0100587 r = kcopyd_get_pages(job->kc, nr_pages, &job->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (!r) {
589 /* this job is ready for io */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100590 push(&job->kc->io_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
592 }
593
594 if (r == -ENOMEM)
595 /* can't complete now */
596 return 1;
597
598 return r;
599}
600
601/*
602 * Run through a list for as long as possible. Returns the count
603 * of successful jobs.
604 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100605static int process_jobs(struct list_head *jobs, struct dm_kcopyd_client *kc,
606 int (*fn) (struct kcopyd_job *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct kcopyd_job *job;
609 int r, count = 0;
610
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100611 while ((job = pop(jobs, kc))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 r = fn(job);
614
615 if (r < 0) {
616 /* error this rogue job */
Mike Christie51111662016-06-05 14:31:46 -0500617 if (op_is_write(job->rw))
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700618 job->write_err = (unsigned long) -1L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 else
620 job->read_err = 1;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100621 push(&kc->complete_jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 break;
623 }
624
625 if (r > 0) {
626 /*
627 * We couldn't service this job ATM, so
628 * push this job back onto the list.
629 */
Kazuo Itob673c3a2008-10-21 17:44:50 +0100630 push_head(jobs, job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
632 }
633
634 count++;
635 }
636
637 return count;
638}
639
640/*
641 * kcopyd does this every time it's woken up.
642 */
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100643static void do_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100645 struct dm_kcopyd_client *kc = container_of(work,
646 struct dm_kcopyd_client, kcopyd_work);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100647 struct blk_plug plug;
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -0400648 unsigned long flags;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /*
651 * The order that these are called is *very* important.
652 * complete jobs can free some pages for pages jobs.
653 * Pages jobs when successful will jump onto the io jobs
654 * list. io jobs call wake when they complete and it all
655 * starts again.
656 */
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -0400657 spin_lock_irqsave(&kc->job_lock, flags);
658 list_splice_tail_init(&kc->callback_jobs, &kc->complete_jobs);
659 spin_unlock_irqrestore(&kc->job_lock, flags);
660
Jens Axboe7eaceac2011-03-10 08:52:07 +0100661 blk_start_plug(&plug);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100662 process_jobs(&kc->complete_jobs, kc, run_complete_job);
663 process_jobs(&kc->pages_jobs, kc, run_pages_job);
664 process_jobs(&kc->io_jobs, kc, run_io_job);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100665 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/*
669 * If we are copying a small region we just dispatch a single job
670 * to do the copy, otherwise the io has to be split up into many
671 * jobs.
672 */
673static void dispatch_job(struct kcopyd_job *job)
674{
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100675 struct dm_kcopyd_client *kc = job->kc;
676 atomic_inc(&kc->nr_jobs);
Mikulas Patocka9ca170a2009-12-10 23:52:13 +0000677 if (unlikely(!job->source.count))
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -0400678 push(&kc->callback_jobs, job);
Mikulas Patocka7f069652011-10-31 20:18:58 +0000679 else if (job->pages == &zero_page_list)
680 push(&kc->io_jobs, job);
Mikulas Patocka9ca170a2009-12-10 23:52:13 +0000681 else
682 push(&kc->pages_jobs, job);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100683 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700686static void segment_complete(int read_err, unsigned long write_err,
687 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 /* FIXME: tidy this function */
690 sector_t progress = 0;
691 sector_t count = 0;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100692 struct kcopyd_job *sub_job = (struct kcopyd_job *) context;
693 struct kcopyd_job *job = sub_job->master_job;
Mikulas Patocka73830852009-04-09 00:27:16 +0100694 struct dm_kcopyd_client *kc = job->kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100696 mutex_lock(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /* update the error */
699 if (read_err)
700 job->read_err = 1;
701
702 if (write_err)
Jonathan Brassowce503f52006-06-26 00:27:30 -0700703 job->write_err |= write_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /*
706 * Only dispatch more work if there hasn't been an error.
707 */
708 if ((!job->read_err && !job->write_err) ||
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100709 test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /* get the next chunk of work */
711 progress = job->progress;
712 count = job->source.count - progress;
713 if (count) {
Nikos Tsironisc663e042019-07-17 14:24:10 +0300714 if (count > kc->sub_job_size)
715 count = kc->sub_job_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 job->progress += count;
718 }
719 }
Matthias Kaehlckedef5b5b2007-10-19 22:38:52 +0100720 mutex_unlock(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 if (count) {
723 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 *sub_job = *job;
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700726 sub_job->write_offset = progress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 sub_job->source.sector += progress;
728 sub_job->source.count = count;
729
730 for (i = 0; i < job->num_dests; i++) {
731 sub_job->dests[i].sector += progress;
732 sub_job->dests[i].count = count;
733 }
734
735 sub_job->fn = segment_complete;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100736 sub_job->context = sub_job;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 dispatch_job(sub_job);
738
739 } else if (atomic_dec_and_test(&job->sub_jobs)) {
740
741 /*
Mikulas Patocka340cd442009-04-09 00:27:17 +0100742 * Queue the completion callback to the kcopyd thread.
743 *
744 * Some callers assume that all the completions are called
745 * from a single thread and don't race with each other.
746 *
747 * We must not call the callback directly here because this
748 * code may not be executing in the thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
Mikulas Patocka340cd442009-04-09 00:27:17 +0100750 push(&kc->complete_jobs, job);
751 wake(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753}
754
755/*
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100756 * Create some sub jobs to share the work between them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100758static void split_job(struct kcopyd_job *master_job)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 int i;
761
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100762 atomic_inc(&master_job->kc->nr_jobs);
Mikulas Patocka340cd442009-04-09 00:27:17 +0100763
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100764 atomic_set(&master_job->sub_jobs, SPLIT_COUNT);
765 for (i = 0; i < SPLIT_COUNT; i++) {
766 master_job[i + 1].master_job = master_job;
767 segment_complete(0, 0u, &master_job[i + 1]);
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Mike Snitzer7209049d2018-07-31 17:27:02 -0400771void dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
772 unsigned int num_dests, struct dm_io_region *dests,
773 unsigned int flags, dm_kcopyd_notify_fn fn, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 struct kcopyd_job *job;
Mike Snitzer70d6c402012-12-21 20:23:37 +0000776 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /*
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100779 * Allocate an array of jobs consisting of one master job
780 * followed by SPLIT_COUNT sub jobs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 */
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400782 job = mempool_alloc(&kc->job_pool, GFP_NOIO);
Mike Snitzerd5ffebd2018-01-05 21:17:20 -0500783 mutex_init(&job->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 /*
786 * set up for the read.
787 */
788 job->kc = kc;
789 job->flags = flags;
790 job->read_err = 0;
791 job->write_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 job->num_dests = num_dests;
794 memcpy(&job->dests, dests, sizeof(*dests) * num_dests);
795
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700796 /*
797 * If one of the destination is a host-managed zoned block device,
798 * we need to write sequentially. If one of the destination is a
799 * host-aware device, then leave it to the caller to choose what to do.
800 */
801 if (!test_bit(DM_KCOPYD_WRITE_SEQ, &job->flags)) {
802 for (i = 0; i < job->num_dests; i++) {
803 if (bdev_zoned_model(dests[i].bdev) == BLK_ZONED_HM) {
804 set_bit(DM_KCOPYD_WRITE_SEQ, &job->flags);
805 break;
806 }
807 }
808 }
809
810 /*
811 * If we need to write sequentially, errors cannot be ignored.
812 */
813 if (test_bit(DM_KCOPYD_WRITE_SEQ, &job->flags) &&
814 test_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags))
815 clear_bit(DM_KCOPYD_IGNORE_ERROR, &job->flags);
816
Mikulas Patocka7f069652011-10-31 20:18:58 +0000817 if (from) {
818 job->source = *from;
819 job->pages = NULL;
820 job->rw = READ;
821 } else {
822 memset(&job->source, 0, sizeof job->source);
823 job->source.count = job->dests[0].count;
824 job->pages = &zero_page_list;
Mike Snitzer70d6c402012-12-21 20:23:37 +0000825
826 /*
Christoph Hellwig615ec942017-04-05 19:21:06 +0200827 * Use WRITE ZEROES to optimize zeroing if all dests support it.
Mike Snitzer70d6c402012-12-21 20:23:37 +0000828 */
Christoph Hellwig615ec942017-04-05 19:21:06 +0200829 job->rw = REQ_OP_WRITE_ZEROES;
Mike Snitzer70d6c402012-12-21 20:23:37 +0000830 for (i = 0; i < job->num_dests; i++)
Christoph Hellwig615ec942017-04-05 19:21:06 +0200831 if (!bdev_write_zeroes_sectors(job->dests[i].bdev)) {
Mike Snitzer70d6c402012-12-21 20:23:37 +0000832 job->rw = WRITE;
833 break;
834 }
Mikulas Patocka7f069652011-10-31 20:18:58 +0000835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 job->fn = fn;
838 job->context = context;
Mikulas Patockac6ea41f2011-05-29 13:03:00 +0100839 job->master_job = job;
Damien Le Moalb73c67c2017-05-08 16:40:51 -0700840 job->write_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Nikos Tsironisc663e042019-07-17 14:24:10 +0300842 if (job->source.count <= kc->sub_job_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 dispatch_job(job);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 job->progress = 0;
846 split_job(job);
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100849EXPORT_SYMBOL(dm_kcopyd_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Mike Snitzer7209049d2018-07-31 17:27:02 -0400851void dm_kcopyd_zero(struct dm_kcopyd_client *kc,
852 unsigned num_dests, struct dm_io_region *dests,
853 unsigned flags, dm_kcopyd_notify_fn fn, void *context)
Mikulas Patocka7f069652011-10-31 20:18:58 +0000854{
Mike Snitzer7209049d2018-07-31 17:27:02 -0400855 dm_kcopyd_copy(kc, NULL, num_dests, dests, flags, fn, context);
Mikulas Patocka7f069652011-10-31 20:18:58 +0000856}
857EXPORT_SYMBOL(dm_kcopyd_zero);
858
Mikulas Patockaa6e50b42011-08-02 12:32:04 +0100859void *dm_kcopyd_prepare_callback(struct dm_kcopyd_client *kc,
860 dm_kcopyd_notify_fn fn, void *context)
861{
862 struct kcopyd_job *job;
863
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400864 job = mempool_alloc(&kc->job_pool, GFP_NOIO);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +0100865
866 memset(job, 0, sizeof(struct kcopyd_job));
867 job->kc = kc;
868 job->fn = fn;
869 job->context = context;
Alasdair G Kergond136f2e2011-10-23 20:55:17 +0100870 job->master_job = job;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +0100871
872 atomic_inc(&kc->nr_jobs);
873
874 return job;
875}
876EXPORT_SYMBOL(dm_kcopyd_prepare_callback);
877
878void dm_kcopyd_do_callback(void *j, int read_err, unsigned long write_err)
879{
880 struct kcopyd_job *job = j;
881 struct dm_kcopyd_client *kc = job->kc;
882
883 job->read_err = read_err;
884 job->write_err = write_err;
885
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -0400886 push(&kc->callback_jobs, job);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +0100887 wake(kc);
888}
889EXPORT_SYMBOL(dm_kcopyd_do_callback);
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891/*
892 * Cancels a kcopyd job, eg. someone might be deactivating a
893 * mirror.
894 */
Adrian Bunk0b563062006-01-06 00:20:08 -0800895#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896int kcopyd_cancel(struct kcopyd_job *job, int block)
897{
898 /* FIXME: finish */
899 return -1;
900}
Adrian Bunk0b563062006-01-06 00:20:08 -0800901#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903/*-----------------------------------------------------------------
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100904 * Client setup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 *---------------------------------------------------------------*/
Mikulas Patockadf5d2e92013-03-01 22:45:49 +0000906struct dm_kcopyd_client *dm_kcopyd_client_create(struct dm_kcopyd_throttle *throttle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400908 int r;
Nikos Tsironisc663e042019-07-17 14:24:10 +0300909 unsigned reserve_pages;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100910 struct dm_kcopyd_client *kc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Kent Overstreetd3775352018-06-05 05:26:33 -0400912 kc = kzalloc(sizeof(*kc), GFP_KERNEL);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100913 if (!kc)
Mikulas Patockafa34ce72011-05-29 13:03:13 +0100914 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100916 spin_lock_init(&kc->job_lock);
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -0400917 INIT_LIST_HEAD(&kc->callback_jobs);
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100918 INIT_LIST_HEAD(&kc->complete_jobs);
919 INIT_LIST_HEAD(&kc->io_jobs);
920 INIT_LIST_HEAD(&kc->pages_jobs);
Mikulas Patockadf5d2e92013-03-01 22:45:49 +0000921 kc->throttle = throttle;
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100922
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400923 r = mempool_init_slab_pool(&kc->job_pool, MIN_JOBS, _job_cache);
924 if (r)
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100925 goto bad_slab;
Mikulas Patocka08d87572008-04-24 21:43:46 +0100926
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100927 INIT_WORK(&kc->kcopyd_work, do_work);
Tejun Heo670368a2013-07-30 08:40:21 -0400928 kc->kcopyd_wq = alloc_workqueue("kcopyd", WQ_MEM_RECLAIM, 0);
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400929 if (!kc->kcopyd_wq) {
930 r = -ENOMEM;
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100931 goto bad_workqueue;
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400932 }
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100933
Nikos Tsironisc663e042019-07-17 14:24:10 +0300934 kc->sub_job_size = dm_get_kcopyd_subjob_size();
935 reserve_pages = DIV_ROUND_UP(kc->sub_job_size << SECTOR_SHIFT, PAGE_SIZE);
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 kc->pages = NULL;
Mikulas Patockad0471452011-05-29 13:03:07 +0100938 kc->nr_reserved_pages = kc->nr_free_pages = 0;
Nikos Tsironisc663e042019-07-17 14:24:10 +0300939 r = client_reserve_pages(kc, reserve_pages);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100940 if (r)
941 goto bad_client_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Mikulas Patockabda8efe2011-05-29 13:03:09 +0100943 kc->io_client = dm_io_client_create();
Milan Broz373a3922007-05-09 02:33:02 -0700944 if (IS_ERR(kc->io_client)) {
945 r = PTR_ERR(kc->io_client);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100946 goto bad_io_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800949 init_waitqueue_head(&kc->destroyq);
950 atomic_set(&kc->nr_jobs, 0);
951
Mikulas Patockafa34ce72011-05-29 13:03:13 +0100952 return kc;
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100953
954bad_io_client:
955 client_free_pages(kc);
956bad_client_pages:
957 destroy_workqueue(kc->kcopyd_wq);
958bad_workqueue:
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400959 mempool_exit(&kc->job_pool);
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100960bad_slab:
961 kfree(kc);
962
Mikulas Patockafa34ce72011-05-29 13:03:13 +0100963 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100965EXPORT_SYMBOL(dm_kcopyd_client_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100967void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800969 /* Wait for completion of all jobs submitted by this client. */
970 wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs));
971
Nikos Tsironisd7e6b8d2018-10-31 17:53:09 -0400972 BUG_ON(!list_empty(&kc->callback_jobs));
Mikulas Patocka8c0cbc22008-04-24 21:43:44 +0100973 BUG_ON(!list_empty(&kc->complete_jobs));
974 BUG_ON(!list_empty(&kc->io_jobs));
975 BUG_ON(!list_empty(&kc->pages_jobs));
976 destroy_workqueue(kc->kcopyd_wq);
Milan Broz373a3922007-05-09 02:33:02 -0700977 dm_io_client_destroy(kc->io_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 client_free_pages(kc);
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400979 mempool_exit(&kc->job_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 kfree(kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100982EXPORT_SYMBOL(dm_kcopyd_client_destroy);