* [PATCH] fix processing of %PVS arg in lvcreate
@ 2009-11-03 16:19 Milan Broz
2009-11-03 16:22 ` Alasdair G Kergon
0 siblings, 1 reply; 2+ messages in thread
From: Milan Broz @ 2009-11-03 16:19 UTC (permalink / raw)
To: lvm-devel
Fix lvcreate processing of %PVS argument.
- fix missing unlocking of VG
lvcreate -l 100%PVS -n lv1 vg_test
Please specify physical volume(s) with %PVS
Internal error: Volume Group vg_test was not unlocked
- if no PVS specified, use all available
diff --git a/tools/lvcreate.c b/tools/lvcreate.c
index be6b5cc..0ef04d9 100644
--- a/tools/lvcreate.c
+++ b/tools/lvcreate.c
@@ -161,13 +161,12 @@ static int _update_extents_params(struct volume_group *vg,
lp->extents = lp->extents * vg->free_count / 100;
break;
case PERCENT_PVS:
- if (!lcp->pv_count) {
- log_error("Please specify physical volume(s) "
- "with %%PVS");
- return 0;
+ if (!lcp->pv_count)
+ lp->extents = lp->extents * vg->extent_count / 100;
+ else {
+ pv_extent_count = pv_list_extents_free(lp->pvh);
+ lp->extents = lp->extents * pv_extent_count / 100;
}
- pv_extent_count = pv_list_extents_free(lp->pvh);
- lp->extents = lp->extents * pv_extent_count / 100;
break;
case PERCENT_LV:
log_error("Please express size as %%VG, %%PVS, or "
@@ -591,15 +590,15 @@ int lvcreate(struct cmd_context *cmd, int argc, char **argv)
}
if (!_update_extents_params(vg, &lp, &lcp)) {
- stack;
- return ECMD_FAILED;
+ r = ECMD_FAILED;
+ goto_out;
}
if (!lv_create_single(vg, &lp)) {
stack;
r = ECMD_FAILED;
}
-
+out:
unlock_and_release_vg(cmd, vg, lp.vg_name);
return r;
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-11-03 16:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-03 16:19 [PATCH] fix processing of %PVS arg in lvcreate Milan Broz
2009-11-03 16:22 ` Alasdair G Kergon
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.