@@ -305,6 +305,22 @@ static void __insert_origin(struct origin *o)
list_add_tail(&o->hash_list, sl);
}
+static struct dm_snapshot *__find_merging_snapshot(struct block_device *origin)
+{
+ struct origin *o;
+ struct dm_snapshot *snap;
+
+ o = __lookup_origin(origin);
+ if (!o)
+ return NULL;
+
+ list_for_each_entry(snap, &o->snapshots, list)
+ if (is_merge(snap->ti))
+ return snap;
+
+ return NULL;
+}
+
/*
* Make a note of the snapshot and its origin so we can look it
* up when the origin has a write on it.
@@ -320,6 +336,13 @@ static int register_snapshot(struct dm_snapshot *snap)
return -ENOMEM;
down_write(&_origins_lock);
+
+ /* Do not allow more than one merging snapshot */
+ if (is_merge(snap->ti) && __find_merging_snapshot(bdev)) {
+ up_write(&_origins_lock);
+ return -EINVAL;
+ }
+
o = __lookup_origin(bdev);
if (o)