summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlasdair G Kergon <agk@redhat.com>2015-11-13 18:06:08 +0000
committerAlasdair G Kergon <agk@redhat.com>2015-11-13 18:06:08 +0000
commit970a42890905e62c43d20b3b4eb0ec7ece0af11c (patch)
tree431b4374c48ad8b5d6fbaa5e678a893f345f2f97
parentb2e13ac552b6209c02c6e2c00aa0db2018135523 (diff)
downloadlvm2-970a42890905e62c43d20b3b4eb0ec7ece0af11c.tar.gz
pvmove: Remove unused find_pvmove_lv_from_pvname.
-rw-r--r--lib/metadata/metadata-exported.h5
-rw-r--r--lib/metadata/mirror.c18
2 files changed, 0 insertions, 23 deletions
diff --git a/lib/metadata/metadata-exported.h b/lib/metadata/metadata-exported.h
index 2d118f42a..f00968763 100644
--- a/lib/metadata/metadata-exported.h
+++ b/lib/metadata/metadata-exported.h
@@ -1185,11 +1185,6 @@ void lv_release_replicator_vgs(const struct logical_volume *lv);
struct logical_volume *find_pvmove_lv(struct volume_group *vg,
struct device *dev, uint64_t lv_type);
-struct logical_volume *find_pvmove_lv_from_pvname(struct cmd_context *cmd,
- struct volume_group *vg,
- const char *name,
- const char *uuid,
- uint64_t lv_type);
const struct logical_volume *find_pvmove_lv_in_lv(const struct logical_volume *lv);
const char *get_pvmove_pvname_from_lv(const struct logical_volume *lv);
const char *get_pvmove_pvname_from_lv_mirr(const struct logical_volume *lv_mirr);
diff --git a/lib/metadata/mirror.c b/lib/metadata/mirror.c
index b69acf5b2..ae7b084db 100644
--- a/lib/metadata/mirror.c
+++ b/lib/metadata/mirror.c
@@ -1640,24 +1640,6 @@ struct logical_volume *find_pvmove_lv(struct volume_group *vg,
return NULL;
}
-struct logical_volume *find_pvmove_lv_from_pvname(struct cmd_context *cmd,
- struct volume_group *vg,
- const char *name,
- const char *uuid __attribute__((unused)),
- uint64_t lv_type)
-{
- struct physical_volume *pv;
- struct logical_volume *lv;
-
- if (!(pv = find_pv_by_name(cmd, name, 0, 0)))
- return_NULL;
-
- lv = find_pvmove_lv(vg, pv->dev, lv_type);
- free_pv_fid(pv);
-
- return lv;
-}
-
struct dm_list *lvs_using_lv(struct cmd_context *cmd, struct volume_group *vg,
struct logical_volume *lv)
{