From 970a42890905e62c43d20b3b4eb0ec7ece0af11c Mon Sep 17 00:00:00 2001 From: Alasdair G Kergon Date: Fri, 13 Nov 2015 18:06:08 +0000 Subject: [PATCH] pvmove: Remove unused find_pvmove_lv_from_pvname. --- lib/metadata/metadata-exported.h | 5 ----- lib/metadata/mirror.c | 18 ------------------ 2 files changed, 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) {