[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH 6/7] move individual dm_multisnap 'flags' values
- From: Mike Snitzer <snitzer redhat com>
- To: Mikulas Patocka <mpatocka redhat com>
- Cc: dm-devel redhat com
- Subject: [dm-devel] [PATCH 6/7] move individual dm_multisnap 'flags' values
- Date: Fri, 2 Apr 2010 01:17:57 -0400
Moved the definitions of DM_MULTISNAP_SYNC_SNAPSHOTS and
DM_MULTISNAP_PRESERVE_ON_ERROR outside of 'struct dm_multisnap'
---
drivers/md/dm-multisnap-private.h | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/md/dm-multisnap-private.h b/drivers/md/dm-multisnap-private.h
index 935ddc1..f27e42a 100644
--- a/drivers/md/dm-multisnap-private.h
+++ b/drivers/md/dm-multisnap-private.h
@@ -39,6 +39,10 @@ struct dm_multisnap_bio_queue {
#define DM_MULTISNAP_N_QUEUES 2
+/* multisnap flags which get set by multisnap_origin_ctr() */
+#define DM_MULTISNAP_SYNC_SNAPSHOTS 1
+#define DM_MULTISNAP_PRESERVE_ON_ERROR 2
+
struct dm_multisnap {
struct dm_multisnap_exception_store *store;
struct dm_exception_store *ps;
@@ -52,9 +56,6 @@ struct dm_multisnap {
unsigned char chunk_shift;
unsigned char flags;
- /* FIXME these flags should be defined outside the struct, like agk fixed for merge */
-#define DM_MULTISNAP_SYNC_SNAPSHOTS 1
-#define DM_MULTISNAP_PRESERVE_ON_ERROR 2
sector_t origin_sectors;
--
1.6.6.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]