blob: cfac8588ed56d84f2bf1047bfdaa6837873fc930 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01002 * Copyright (C) 2001 - 2003 Sistina Software
3 * Copyright (C) 2004 - 2008 Red Hat, Inc. All rights reserved.
4 *
5 * kcopyd provides a simple interface for copying an area of one
6 * block-device to one or more other block-devices, either synchronous
7 * or with an asynchronous completion notification.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is released under the GPL.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010012#ifndef _LINUX_DM_KCOPYD_H
13#define _LINUX_DM_KCOPYD_H
14
15#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Alasdair G Kergona765e202008-04-24 22:02:01 +010017#include <linux/dm-io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/* FIXME: make this configurable */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010020#define DM_KCOPYD_MAX_REGIONS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010022#define DM_KCOPYD_IGNORE_ERROR 1
Damien Le Moalb73c67c2017-05-08 16:40:51 -070023#define DM_KCOPYD_WRITE_SEQ 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000025struct dm_kcopyd_throttle {
26 unsigned throttle;
27 unsigned num_io_jobs;
28 unsigned io_period;
29 unsigned total_period;
30 unsigned last_jiffies;
31};
32
33/*
34 * kcopyd clients that want to support throttling must pass an initialised
35 * dm_kcopyd_throttle struct into dm_kcopyd_client_create().
36 * Two or more clients may share the same instance of this struct between
37 * them if they wish to be throttled as a group.
38 *
39 * This macro also creates a corresponding module parameter to configure
40 * the amount of throttling.
41 */
42#define DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(name, description) \
43static struct dm_kcopyd_throttle dm_kcopyd_throttle = { 100, 0, 0, 0, 0 }; \
44module_param_named(name, dm_kcopyd_throttle.throttle, uint, 0644); \
45MODULE_PARM_DESC(name, description)
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010048 * To use kcopyd you must first create a dm_kcopyd_client object.
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000049 * throttle can be NULL if you don't want any throttling.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010051struct dm_kcopyd_client;
Mikulas Patockadf5d2e92013-03-01 22:45:49 +000052struct dm_kcopyd_client *dm_kcopyd_client_create(struct dm_kcopyd_throttle *throttle);
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010053void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
56 * Submit a copy job to kcopyd. This is built on top of the
57 * previous three fns.
58 *
59 * read_err is a boolean,
60 * write_err is a bitset, with 1 bit for each destination region
61 */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010062typedef void (*dm_kcopyd_notify_fn)(int read_err, unsigned long write_err,
63 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010065int dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
66 unsigned num_dests, struct dm_io_region *dests,
67 unsigned flags, dm_kcopyd_notify_fn fn, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Mikulas Patockaa6e50b42011-08-02 12:32:04 +010069/*
70 * Prepare a callback and submit it via the kcopyd thread.
71 *
72 * dm_kcopyd_prepare_callback allocates a callback structure and returns it.
73 * It must not be called from interrupt context.
74 * The returned value should be passed into dm_kcopyd_do_callback.
75 *
76 * dm_kcopyd_do_callback submits the callback.
77 * It may be called from interrupt context.
78 * The callback is issued from the kcopyd thread.
79 */
80void *dm_kcopyd_prepare_callback(struct dm_kcopyd_client *kc,
81 dm_kcopyd_notify_fn fn, void *context);
82void dm_kcopyd_do_callback(void *job, int read_err, unsigned long write_err);
83
Mikulas Patocka7f069652011-10-31 20:18:58 +000084int dm_kcopyd_zero(struct dm_kcopyd_client *kc,
85 unsigned num_dests, struct dm_io_region *dests,
86 unsigned flags, dm_kcopyd_notify_fn fn, void *context);
87
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +010088#endif /* __KERNEL__ */
89#endif /* _LINUX_DM_KCOPYD_H */