]> sourceware.org Git - lvm2.git/commitdiff
Add -tpool layer in activation tree
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 3 Nov 2011 14:52:09 +0000 (14:52 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 3 Nov 2011 14:52:09 +0000 (14:52 +0000)
Let's put the overlay device over real thin pool device.
So we can get the proper locking on cluster.
Overwise the pool LV would be activate once implicitely
and in other case explicitely, confusing locking mechanism.
This patch make the activation of pool LV independent on
activation of thin LV since they will both implicitely use
real -thin pool device.

lib/activate/activate.h
lib/activate/dev_manager.c
lib/thin/thin.c

index b95c1e09940fe049595fc386ccb54d58217a6578..119211dfc3b9e760133421569a2534568c07fb8e 100644 (file)
@@ -34,6 +34,7 @@ struct lv_activate_opts {
        int exclusive;
        int origin_only;
        int no_merging;
+       int real_pool;
        unsigned revert;
 };
 
index 9fcdde892eaa8982f89d6809febda9d2f409bbb9..1e404e4a275e0bc6ac5b0f8892e03745a6e69ca9 100644 (file)
@@ -1100,13 +1100,16 @@ static int _add_lv_to_dtree(struct dev_manager *dm, struct dm_tree *dtree,
                return_0;
 
        if (lv_is_thin_pool(lv)) {
-                   if (!_add_lv_to_dtree(dm, dtree, first_seg(lv)->pool_metadata_lv, origin_only))
-                           return_0;
-                   if (!_add_lv_to_dtree(dm, dtree, seg_lv(first_seg(lv), 0), origin_only))
-                           return_0;
+               if (!_add_dev_to_dtree(dm, dtree, lv, "tpool"))
+                       return_0;
+               if (!_add_lv_to_dtree(dm, dtree, first_seg(lv)->pool_metadata_lv, origin_only))
+                       return_0;
+               /* FIXME code from _create_partial_dtree() should be moved here */
+               if (!_add_lv_to_dtree(dm, dtree, seg_lv(first_seg(lv), 0), origin_only))
+                       return_0;
        } else if (lv_is_thin_volume(lv)) {
-                   if (!_add_lv_to_dtree(dm, dtree, first_seg(lv)->pool_lv, origin_only))
-                           return_0;
+               if (!_add_lv_to_dtree(dm, dtree, first_seg(lv)->pool_lv, origin_only))
+                       return_0;
        }
 
        return 1;
@@ -1451,6 +1454,7 @@ static int _add_segment_to_dtree(struct dev_manager *dm,
        struct dm_list *snh;
        struct lv_segment *seg_present;
        const char *target_name;
+       struct lv_activate_opts lva;
 
        /* Ensure required device-mapper targets are loaded */
        seg_present = find_cow(seg->lv) ? : seg;
@@ -1495,13 +1499,18 @@ static int _add_segment_to_dtree(struct dev_manager *dm,
        } else if (lv_is_cow(seg->lv) && !layer) {
                if (!_add_new_lv_to_dtree(dm, dtree, seg->lv, laopts, "cow"))
                        return_0;
-       } else if (lv_is_thin_volume(seg->lv)) {
-               if (!_add_new_lv_to_dtree(dm, dtree, seg->pool_lv, laopts, NULL))
+       } else if (!layer && (lv_is_thin_pool(seg->lv) ||
+                             lv_is_thin_volume(seg->lv))) {
+               lva = *laopts;
+               lva.real_pool = 1;
+               if (!_add_new_lv_to_dtree(dm, dtree, lv_is_thin_pool(seg->lv) ?
+                                         seg->lv : seg->pool_lv, &lva, "tpool"))
                        return_0;
        } else {
                if (lv_is_thin_pool(seg->lv) &&
                    !_add_new_lv_to_dtree(dm, dtree, seg->pool_metadata_lv, laopts, NULL))
                        return_0;
+
                /* Add any LVs used by this segment */
                for (s = 0; s < seg->area_count; s++) {
                        if ((seg_type(seg, s) == AREA_LV) &&
index 0a90e78aadd4401558bc4fef8bc0650ddfae37e7..ead082c210a09a4218d66463b9c2c130f5656c0b 100644 (file)
@@ -223,6 +223,21 @@ static int _thin_pool_add_target_line(struct dev_manager *dm,
        char *metadata_dlid, *pool_dlid;
        const struct lv_thin_message *lmsg;
 
+       if (!laopts->real_pool) {
+               if (!(pool_dlid = build_dm_uuid(mem, seg->lv->lvid.s, "tpool"))) {
+                       log_error("Failed to build uuid for thin pool LV %s.", seg->pool_lv->name);
+                       return 0;
+               }
+
+               //if (!dm_tree_node_add_thin_target(node, len, pool_dlid,
+               //                                  DM_THIN_ERROR_DEVICE_ID))
+               if (!dm_tree_node_add_linear_target(node, len) ||
+                   !dm_tree_node_add_target_area(node, NULL, pool_dlid, 0))
+                       return_0;
+
+               return 1;
+       }
+
        if (!(metadata_dlid = build_dm_uuid(mem, seg->pool_metadata_lv->lvid.s, NULL))) {
                log_error("Failed to build uuid for metadata LV %s.",
                          seg->pool_metadata_lv->name);
@@ -356,14 +371,29 @@ static int _thin_add_target_line(struct dev_manager *dm,
                                 struct dm_tree_node *node, uint64_t len,
                                 uint32_t *pvmove_mirror_count __attribute__((unused)))
 {
-       char *thin_pool_dlid;
+       char *pool_dlid;
+       uint32_t device_id = seg->device_id;
 
-       if (!(thin_pool_dlid = build_dm_uuid(mem, seg->pool_lv->lvid.s, NULL))) {
-               log_error("Failed to build uuid for thin pool LV %s.", seg->pool_lv->name);
+       if (!(pool_dlid = build_dm_uuid(mem, seg->pool_lv->lvid.s, "tpool"))) {
+               log_error("Failed to build uuid for pool LV %s.",
+                         seg->pool_lv->name);
                return 0;
        }
 
-       if (!dm_tree_node_add_thin_target(node, len, thin_pool_dlid, seg->device_id))
+#if 0
+{
+       /* If we would need to activate 'to be deleted' thin LVs */
+       struct lv_thin_message *tmsg;
+       dm_list_iterate_items(tmsg, &first_seg(seg->pool_lv)->thin_messages)
+               /* If this node is going to be deleted - use the error target */
+               if ((tmsg->type == DM_THIN_MESSAGE_DELETE) &&
+                   (tmsg->u.delete_id == seg->device_id)) {
+                       device_id = DM_THIN_ERROR_DEVICE_ID;
+                       break;
+               }
+}
+#endif
+       if (!dm_tree_node_add_thin_target(node, len, pool_dlid, device_id))
                return_0;
 
        return 1;
This page took 0.03715 seconds and 5 git commands to generate.