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

FMT_INSTANCE_PV is no longer used

This commit is contained in:
Alasdair Kergon 2012-02-12 22:37:24 +00:00
parent f3f6c17250
commit ba14fff2af
2 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,7 @@
Version 2.02.91 -
===================================
Refactor format instances for orphan PVs (internal).
Remove PV-based format instances (which are no longer needed).
Link all orphan PVs directly to a per-format global orphan VG.
Refactor lvmcache around an internal API.
Stop processing lvextend if trying to extend a mirror that is being recovered.
Add pool_below_threshold() function to check thin pool percent status.

View File

@ -200,16 +200,13 @@ struct pv_segment {
/*
* These flags define the type of the format instance to be created.
* There are two basic types: a PV-based and a VG-based format instance.
* There used to be a PV-based type, but all are now VG-based.
* We can further control the format_instance initialisation and functionality
* by using the other flags. Today, the primary role of the format_instance
* is to temporarily store metadata area information we are working with. More
* flags can be defined to cover even more functionality in the future...
*/
/* PV-based format instance */
#define FMT_INSTANCE_PV 0x00000000U
/* VG-based format instance */
#define FMT_INSTANCE_VG 0x00000001U