summaryrefslogtreecommitdiffstats
path: root/lib/label/lvm2_label.h
blob: b901a889d3512b0f8884b3b3e53aa044b98f97e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (C) 2001 Sistina Software (UK) Limited.
 *
 * This file is released under the GPL.
 */

struct lvm2_label
{
    uint32_t magic;
    uint32_t crc;
    uint64_t label1_loc;
    uint64_t label2_loc;
    uint16_t datalen;

    char     disk_type[32];
    uint32_t version[3];

    char    *data;
};

#define VERSION_MATCH_EQUAL     1
#define VERSION_MATCH_LESSTHAN  2
#define VERSION_MATCH_LESSEQUAL 3
#define VERSION_MATCH_ANY       4

extern struct dev_filter *label_filter_create();
extern struct dev_filter *label_format_filter_create(char *disk_type, uint32_t version[3], int match_type);