aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-exception-store.h
diff options
context:
space:
mode:
authorJonathan Brassow <jbrassow@redhat.com>2009-01-05 22:05:15 -0500
committerAlasdair G Kergon <agk@redhat.com>2009-01-05 22:05:15 -0500
commitaea53d92f70eeb00ae480e399a997dd55fd5055d (patch)
tree55e087e5e22168ed87f6d51ca0c8557a7678834f /drivers/md/dm-exception-store.h
parentfe9cf30eb8186ef267d1868dc9f12f2d0f40835a (diff)
dm snapshot: separate out exception store interface
Pull structures that bridge the gap between snapshot and exception store out of dm-snap.h and put them in a new .h file - dm-exception-store.h. This file will define the API for new exception stores. Ultimately, dm-snap.h is unnecessary, since only dm-snap.c should be using it. Signed-off-by: Jonathan Brassow <jbrassow@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-exception-store.h')
-rw-r--r--drivers/md/dm-exception-store.h131
1 files changed, 131 insertions, 0 deletions
diff --git a/drivers/md/dm-exception-store.h b/drivers/md/dm-exception-store.h
new file mode 100644
index 00000000000..d75f775562e
--- /dev/null
+++ b/drivers/md/dm-exception-store.h
@@ -0,0 +1,131 @@
1/*
2 * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
3 * Copyright (C) 2008 Red Hat, Inc. All rights reserved.
4 *
5 * Device-mapper snapshot exception store.
6 *
7 * This file is released under the GPL.
8 */
9
10#ifndef _LINUX_DM_EXCEPTION_STORE
11#define _LINUX_DM_EXCEPTION_STORE
12
13#include <linux/blkdev.h>
14
15/*
16 * The snapshot code deals with largish chunks of the disk at a
17 * time. Typically 32k - 512k.
18 */
19typedef sector_t chunk_t;
20
21/*
22 * An exception is used where an old chunk of data has been
23 * replaced by a new one.
24 * If chunk_t is 64 bits in size, the top 8 bits of new_chunk hold the number
25 * of chunks that follow contiguously. Remaining bits hold the number of the
26 * chunk within the device.
27 */
28struct dm_snap_exception {
29 struct list_head hash_list;
30
31 chunk_t old_chunk;
32 chunk_t new_chunk;
33};
34
35/*
36 * Abstraction to handle the meta/layout of exception stores (the
37 * COW device).
38 */
39struct exception_store {
40 /*
41 * Destroys this object when you've finished with it.
42 */
43 void (*destroy) (struct exception_store *store);
44
45 /*
46 * The target shouldn't read the COW device until this is
47 * called.
48 */
49 int (*read_metadata) (struct exception_store *store);
50
51 /*
52 * Find somewhere to store the next exception.
53 */
54 int (*prepare_exception) (struct exception_store *store,
55 struct dm_snap_exception *e);
56
57 /*
58 * Update the metadata with this exception.
59 */
60 void (*commit_exception) (struct exception_store *store,
61 struct dm_snap_exception *e,
62 void (*callback) (void *, int success),
63 void *callback_context);
64
65 /*
66 * The snapshot is invalid, note this in the metadata.
67 */
68 void (*drop_snapshot) (struct exception_store *store);
69
70 /*
71 * Return how full the snapshot is.
72 */
73 void (*fraction_full) (struct exception_store *store,
74 sector_t *numerator,
75 sector_t *denominator);
76
77 struct dm_snapshot *snap;
78 void *context;
79};
80
81/*
82 * Funtions to manipulate consecutive chunks
83 */
84# if defined(CONFIG_LBD) || (BITS_PER_LONG == 64)
85# define DM_CHUNK_CONSECUTIVE_BITS 8
86# define DM_CHUNK_NUMBER_BITS 56
87
88static inline chunk_t dm_chunk_number(chunk_t chunk)
89{
90 return chunk & (chunk_t)((1ULL << DM_CHUNK_NUMBER_BITS) - 1ULL);
91}
92
93static inline unsigned dm_consecutive_chunk_count(struct dm_snap_exception *e)
94{
95 return e->new_chunk >> DM_CHUNK_NUMBER_BITS;
96}
97
98static inline void dm_consecutive_chunk_count_inc(struct dm_snap_exception *e)
99{
100 e->new_chunk += (1ULL << DM_CHUNK_NUMBER_BITS);
101
102 BUG_ON(!dm_consecutive_chunk_count(e));
103}
104
105# else
106# define DM_CHUNK_CONSECUTIVE_BITS 0
107
108static inline chunk_t dm_chunk_number(chunk_t chunk)
109{
110 return chunk;
111}
112
113static inline unsigned dm_consecutive_chunk_count(struct dm_snap_exception *e)
114{
115 return 0;
116}
117
118static inline void dm_consecutive_chunk_count_inc(struct dm_snap_exception *e)
119{
120}
121
122# endif
123
124/*
125 * Two exception store implementations.
126 */
127int dm_create_persistent(struct exception_store *store);
128
129int dm_create_transient(struct exception_store *store);
130
131#endif /* _LINUX_DM_EXCEPTION_STORE */