1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-10-26 07:33:16 +03:00

Clarify terminology:

VG is resizeable  - PVs can be added or removed
  PV is allocatable - free extents on it may be allocated to LVs
This commit is contained in:
Alasdair Kergon
2002-01-10 15:09:51 +00:00
parent fc63d04f42
commit b80f32dd0a
15 changed files with 62 additions and 56 deletions

View File

@@ -21,7 +21,7 @@ struct flag {
static struct flag _vg_flags[] = {
{ACTIVE, "ACTIVE"},
{EXPORTED_VG, "EXPORTED"},
{EXTENDABLE_VG, "EXTENDABLE"},
{RESIZEABLE_VG, "RESIZEABLE"},
{CLUSTERED, "CLUSTERED"},
{SHARED, "SHARED"},
{0, NULL}
@@ -29,7 +29,7 @@ static struct flag _vg_flags[] = {
static struct flag _pv_flags[] = {
{ACTIVE, "ACTIVE"},
{ALLOCATED_PV, "ALLOCATED"},
{ALLOCATABLE_PV, "ALLOCATABLE"},
{0, NULL}
};