1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-22 17:35:59 +03:00

Move pvs and pv_count fields from lvcreate_params to lvcreate_cmdline_params.

No functional change.


Author: Dave Wysochanski <dwysocha@redhat.com>
This commit is contained in:
Dave Wysochanski 2009-07-26 02:32:50 +00:00
parent 0b1ce57fd1
commit 4a7a570953

View File

@ -21,6 +21,8 @@
struct lvcreate_cmdline_params {
percent_t percent;
uint64_t size;
char **pvs;
int pv_count;
};
/* FIXME: refactor and reduce the size of this struct! */
@ -56,8 +58,6 @@ struct lvcreate_params {
uint32_t read_ahead; /* all */
alloc_policy_t alloc; /* all */
int pv_count; /* all; redundant? */
char **pvs; /* all; redundant? */
const char *tag; /* all */
};
@ -185,9 +185,9 @@ static int _update_extents_params(struct volume_group *vg,
* Create the pv list before we parse lcp->percent - might be
* PERCENT_PVSs
*/
if (lp->pv_count) {
if (lcp->pv_count) {
if (!(lp->pvh = create_pv_list(vg->cmd->mem, vg,
lp->pv_count, lp->pvs, 1)))
lcp->pv_count, lcp->pvs, 1)))
return_0;
} else
lp->pvh = &vg->pvs;
@ -200,7 +200,7 @@ static int _update_extents_params(struct volume_group *vg,
lp->extents = lp->extents * vg->free_count / 100;
break;
case PERCENT_PVS:
if (!lp->pv_count) {
if (!lcp->pv_count) {
log_error("Please specify physical volume(s) "
"with %%PVS");
return 0;
@ -603,8 +603,8 @@ static int _lvcreate_params(struct lvcreate_params *lp,
return 0;
}
lp->pv_count = argc;
lp->pvs = argv;
lcp->pv_count = argc;
lcp->pvs = argv;
return 1;
}