1
2
3
4
5
6
7
8
9
10
11
12 #ifndef _LINUX_DM_KCOPYD_H
13 #define _LINUX_DM_KCOPYD_H
14
15 #ifdef __KERNEL__
16
17 #include <linux/dm-io.h>
18
19
20 #define DM_KCOPYD_MAX_REGIONS 8
21
22 #define DM_KCOPYD_IGNORE_ERROR 1
23 #define DM_KCOPYD_WRITE_SEQ 2
24
25 struct 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
35
36
37
38
39
40
41
42 #define DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(name, description) \
43 static struct dm_kcopyd_throttle dm_kcopyd_throttle = { 100, 0, 0, 0, 0 }; \
44 module_param_named(name, dm_kcopyd_throttle.throttle, uint, 0644); \
45 MODULE_PARM_DESC(name, description)
46
47
48
49
50
51 struct dm_kcopyd_client;
52 struct dm_kcopyd_client *dm_kcopyd_client_create(struct dm_kcopyd_throttle *throttle);
53 void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc);
54
55
56
57
58
59
60
61
62 typedef void (*dm_kcopyd_notify_fn)(int read_err, unsigned long write_err,
63 void *context);
64
65 void 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);
68
69
70
71
72
73
74
75
76
77
78
79
80 void *dm_kcopyd_prepare_callback(struct dm_kcopyd_client *kc,
81 dm_kcopyd_notify_fn fn, void *context);
82 void dm_kcopyd_do_callback(void *job, int read_err, unsigned long write_err);
83
84 void 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
88 #endif
89 #endif