Merge branch 'iommu-fixes-2.6.28' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / include / linux / dm-dirty-log.h
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2003 Sistina Software
416cd17b
HM
3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
4 *
5 * Device-Mapper dirty region log.
1da177e4
LT
6 *
7 * This file is released under the LGPL.
8 */
9
416cd17b
HM
10#ifndef _LINUX_DM_DIRTY_LOG
11#define _LINUX_DM_DIRTY_LOG
12
13#ifdef __KERNEL__
1da177e4 14
416cd17b
HM
15#include <linux/types.h>
16#include <linux/device-mapper.h>
1da177e4
LT
17
18typedef sector_t region_t;
19
416cd17b 20struct dm_dirty_log_type;
1da177e4 21
416cd17b
HM
22struct dm_dirty_log {
23 struct dm_dirty_log_type *type;
1da177e4
LT
24 void *context;
25};
26
416cd17b 27struct dm_dirty_log_type {
1da177e4
LT
28 const char *name;
29 struct module *module;
1da177e4 30
416cd17b
HM
31 int (*ctr)(struct dm_dirty_log *log, struct dm_target *ti,
32 unsigned argc, char **argv);
33 void (*dtr)(struct dm_dirty_log *log);
1da177e4
LT
34
35 /*
36 * There are times when we don't want the log to touch
37 * the disk.
38 */
416cd17b
HM
39 int (*presuspend)(struct dm_dirty_log *log);
40 int (*postsuspend)(struct dm_dirty_log *log);
41 int (*resume)(struct dm_dirty_log *log);
1da177e4
LT
42
43 /*
44 * Retrieves the smallest size of region that the log can
45 * deal with.
46 */
416cd17b 47 uint32_t (*get_region_size)(struct dm_dirty_log *log);
1da177e4 48
416cd17b 49 /*
1da177e4
LT
50 * A predicate to say whether a region is clean or not.
51 * May block.
52 */
416cd17b 53 int (*is_clean)(struct dm_dirty_log *log, region_t region);
1da177e4
LT
54
55 /*
56 * Returns: 0, 1, -EWOULDBLOCK, < 0
57 *
58 * A predicate function to check the area given by
59 * [sector, sector + len) is in sync.
60 *
61 * If -EWOULDBLOCK is returned the state of the region is
62 * unknown, typically this will result in a read being
63 * passed to a daemon to deal with, since a daemon is
64 * allowed to block.
65 */
416cd17b
HM
66 int (*in_sync)(struct dm_dirty_log *log, region_t region,
67 int can_block);
1da177e4
LT
68
69 /*
70 * Flush the current log state (eg, to disk). This
71 * function may block.
72 */
416cd17b 73 int (*flush)(struct dm_dirty_log *log);
1da177e4
LT
74
75 /*
76 * Mark an area as clean or dirty. These functions may
77 * block, though for performance reasons blocking should
78 * be extremely rare (eg, allocating another chunk of
79 * memory for some reason).
80 */
416cd17b
HM
81 void (*mark_region)(struct dm_dirty_log *log, region_t region);
82 void (*clear_region)(struct dm_dirty_log *log, region_t region);
1da177e4
LT
83
84 /*
85 * Returns: <0 (error), 0 (no region), 1 (region)
86 *
87 * The mirrord will need perform recovery on regions of
88 * the mirror that are in the NOSYNC state. This
89 * function asks the log to tell the caller about the
90 * next region that this machine should recover.
91 *
92 * Do not confuse this function with 'in_sync()', one
93 * tells you if an area is synchronised, the other
94 * assigns recovery work.
95 */
416cd17b 96 int (*get_resync_work)(struct dm_dirty_log *log, region_t *region);
1da177e4
LT
97
98 /*
f3ee6b2f
JB
99 * This notifies the log that the resync status of a region
100 * has changed. It also clears the region from the recovering
101 * list (if present).
1da177e4 102 */
416cd17b 103 void (*set_region_sync)(struct dm_dirty_log *log,
f3ee6b2f 104 region_t region, int in_sync);
1da177e4 105
416cd17b 106 /*
1da177e4 107 * Returns the number of regions that are in sync.
416cd17b
HM
108 */
109 region_t (*get_sync_count)(struct dm_dirty_log *log);
1da177e4
LT
110
111 /*
112 * Support function for mirror status requests.
113 */
416cd17b
HM
114 int (*status)(struct dm_dirty_log *log, status_type_t status_type,
115 char *result, unsigned maxlen);
1da177e4
LT
116};
117
416cd17b
HM
118int dm_dirty_log_type_register(struct dm_dirty_log_type *type);
119int dm_dirty_log_type_unregister(struct dm_dirty_log_type *type);
1da177e4
LT
120
121/*
122 * Make sure you use these two functions, rather than calling
123 * type->constructor/destructor() directly.
124 */
416cd17b
HM
125struct dm_dirty_log *dm_dirty_log_create(const char *type_name,
126 struct dm_target *ti,
127 unsigned argc, char **argv);
128void dm_dirty_log_destroy(struct dm_dirty_log *log);
1da177e4 129
416cd17b
HM
130#endif /* __KERNEL__ */
131#endif /* _LINUX_DM_DIRTY_LOG_H */