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) {