1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Thin move _read_activation_params check

Since we finaly recognize thin creation only after
_determine_snapshot_type() - move _read_activation_params()
after it - so we can support  lvcreate -an thin snapshot.
This commit is contained in:
Zdenek Kabelac 2011-11-10 12:40:29 +00:00
parent 95308c5f58
commit a538e369db

View File

@ -789,9 +789,6 @@ static int _lvcreate_params(struct lvcreate_params *lp,
return 0;
}
if (!_read_activation_params(lp, cmd))
return_0;
/*
* Allocation parameters
*/
@ -993,6 +990,15 @@ int lvcreate(struct cmd_context *cmd, int argc, char **argv)
goto_out;
}
/*
* Check activation parameters to support inactive thin snapshot creation
* FIXME: anything else needs to be moved past _determine_snapshot_type()?
*/
if (!_read_activation_params(&lp, cmd)) {
r = ECMD_FAILED;
goto_out;
}
if (!_update_extents_params(vg, &lp, &lcp)) {
r = ECMD_FAILED;
goto_out;