From 6235861e64e9567493e14c6f227a6cc5ce609e07 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Thu, 1 Nov 2018 15:29:05 +0100 Subject: [PATCH] cov: remove uneeded code Since clvmd was dropped this code become useless. --- lib/activate/activate.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/activate/activate.c b/lib/activate/activate.c index 93448d3b1..1e195b6f3 100644 --- a/lib/activate/activate.c +++ b/lib/activate/activate.c @@ -2031,8 +2031,6 @@ static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s, const struct logical_volume *lv, const struct logical_volume *lv_pre) { const struct logical_volume *pvmove_lv = NULL; - const struct logical_volume *lv_to_free = NULL; - const struct logical_volume *lv_pre_to_free = NULL; struct logical_volume *lv_pre_tmp, *lv_tmp; struct seg_list *sl; struct lv_segment *snap_seg; @@ -2223,10 +2221,6 @@ static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s, out: if (mem) dm_pool_destroy(mem); - if (lv_pre_to_free) - release_vg(lv_pre_to_free->vg); - if (lv_to_free) - release_vg(lv_to_free->vg); return r; } @@ -2387,7 +2381,6 @@ static int _lv_has_open_snapshots(const struct logical_volume *lv) int lv_deactivate(struct cmd_context *cmd, const char *lvid_s, const struct logical_volume *lv) { - const struct logical_volume *lv_to_free = NULL; struct lvinfo info; static const struct lv_activate_opts laopts = { .skip_in_use = 1 }; struct dm_list *snh; @@ -2457,8 +2450,6 @@ int lv_deactivate(struct cmd_context *cmd, const char *lvid_s, const struct logi r = 0; } out: - if (lv_to_free) - release_vg(lv_to_free->vg); return r; }