summaryrefslogtreecommitdiffstats
path: root/tools/pvchange.c
diff options
context:
space:
mode:
authorDave Wysochanski <dwysocha@redhat.com>2007-06-14 15:25:36 +0000
committerDave Wysochanski <dwysocha@redhat.com>2007-06-14 15:25:36 +0000
commitb5c344937b184c2ac1b38606550ead3900757144 (patch)
tree6d1c4a2b7cacfe7801f6ca5d10a78e8f6c1e865a /tools/pvchange.c
parentf3864a94d261732430135e4c5e4ccc74955d442c (diff)
downloadlvm2-b5c344937b184c2ac1b38606550ead3900757144.tar.gz
lvm2-b5c344937b184c2ac1b38606550ead3900757144.tar.xz
lvm2-b5c344937b184c2ac1b38606550ead3900757144.zip
Convert pv->vg_name to get_pv_vg_name
Diffstat (limited to 'tools/pvchange.c')
-rw-r--r--tools/pvchange.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/pvchange.c b/tools/pvchange.c
index c77b1526..1163b865 100644
--- a/tools/pvchange.c
+++ b/tools/pvchange.c
@@ -55,12 +55,12 @@ static int _pvchange_single(struct cmd_context *cmd, struct physical_volume *pv,
log_verbose("Finding volume group of physical volume \"%s\"",
pv_name);
- if (!lock_vol(cmd, pv->vg_name, LCK_VG_WRITE)) {
+ if (!lock_vol(cmd, get_pv_vg_name(pv), LCK_VG_WRITE)) {
log_error("Can't get lock for %s", get_pv_vg_name(pv));
return 0;
}
- if (!(vg = vg_read(cmd, pv->vg_name, NULL, &consistent))) {
+ if (!(vg = vg_read(cmd, get_pv_vg_name(pv), NULL, &consistent))) {
unlock_vg(cmd, get_pv_vg_name(pv));
log_error("Unable to find volume group of \"%s\"",
pv_name);
@@ -115,7 +115,7 @@ static int _pvchange_single(struct cmd_context *cmd, struct physical_volume *pv,
}
if (arg_count(cmd, allocatable_ARG)) {
- if (!*pv->vg_name &&
+ if (!*get_pv_vg_name(pv) &&
!(pv->fmt->features & FMT_ORPHAN_ALLOCATABLE)) {
log_error("Allocatability not supported by orphan "
"%s format PV %s", pv->fmt->name, pv_name);
@@ -181,7 +181,7 @@ static int _pvchange_single(struct cmd_context *cmd, struct physical_volume *pv,
}
log_verbose("Changing uuid of %s to %s.", pv_name, uuid);
if (*get_pv_vg_name(pv)) {
- orig_vg_name = pv->vg_name;
+ orig_vg_name = get_pv_vg_name(pv);
orig_pe_alloc_count = get_pv_pe_alloc_count(pv);
pv->vg_name = ORPHAN;
pv->pe_alloc_count = 0;