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

o sync the new in core rep. for Alasdair.

This will break everything !  Hopefully things will be working again by
   this evening.
This commit is contained in:
Joe Thornber 2001-11-26 12:49:29 +00:00
parent 592e834cd1
commit 23687ed34d

View File

@ -68,6 +68,12 @@ struct pe_specifier {
uint32_t pe;
};
struct stripe_segment {
uint32_t count;
uint32_t chunk_size;
struct pe_specifier[1];
};
struct cmd_context;
struct volume_group {
@ -108,8 +114,9 @@ struct logical_volume {
uint64_t size;
uint32_t le_count;
/* le -> pe mapping array */
struct pe_specifier *map;
/* the segment array */
uint32_t segment_count;
struct stripe_segment *segments;
};
struct name_list {