I have question about metadat area size. /* On disk */ /* Structure size limited to one sector */ struct mda_header { uint32_t checksum_xl; /* Checksum of rest of mda_header */ char magic[16]; /* To aid scans for metadata */ uint32_t version; uint64_t start; /* Absolute start byte of mda_header */ uint64_t size; /* Size of metadata area */ <------------------------------ struct rawLocn raw_locns[0]; /* NULL-terminated list */ }; The size mentioned in metadata header includes precommitted metadata area(raw_locn[1]) or it excludes? thanks. -- Tejas Sumant _______________________________________________ linux-lvm mailing list linux-lvm@redhat.com https://www.redhat.com/mailman/listinfo/linux-lvm read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/