blob: 76ac8199373bf6d665b46bd8a10f51488343a647 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* libguestfs generated file
* WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
* ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
*
* Copyright (C) 2009 Red Hat Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
struct guestfs_int_bool {
int32_t i;
int32_t b;
};
struct guestfs_lvm_pv {
char *pv_name;
char pv_uuid[32]; /* this is NOT nul-terminated, be careful when printing */
char *pv_fmt;
uint64_t pv_size;
uint64_t dev_size;
uint64_t pv_free;
uint64_t pv_used;
char *pv_attr;
int64_t pv_pe_count;
int64_t pv_pe_alloc_count;
char *pv_tags;
uint64_t pe_start;
int64_t pv_mda_count;
uint64_t pv_mda_free;
};
struct guestfs_lvm_pv_list {
uint32_t len;
struct guestfs_lvm_pv *val;
};
struct guestfs_lvm_vg {
char *vg_name;
char vg_uuid[32]; /* this is NOT nul-terminated, be careful when printing */
char *vg_fmt;
char *vg_attr;
uint64_t vg_size;
uint64_t vg_free;
char *vg_sysid;
uint64_t vg_extent_size;
int64_t vg_extent_count;
int64_t vg_free_count;
int64_t max_lv;
int64_t max_pv;
int64_t pv_count;
int64_t lv_count;
int64_t snap_count;
int64_t vg_seqno;
char *vg_tags;
int64_t vg_mda_count;
uint64_t vg_mda_free;
};
struct guestfs_lvm_vg_list {
uint32_t len;
struct guestfs_lvm_vg *val;
};
struct guestfs_lvm_lv {
char *lv_name;
char lv_uuid[32]; /* this is NOT nul-terminated, be careful when printing */
char *lv_attr;
int64_t lv_major;
int64_t lv_minor;
int64_t lv_kernel_major;
int64_t lv_kernel_minor;
uint64_t lv_size;
int64_t seg_count;
char *origin;
float snap_percent; /* [0..100] or -1 */
float copy_percent; /* [0..100] or -1 */
char *move_pv;
char *lv_tags;
char *mirror_log;
char *modules;
};
struct guestfs_lvm_lv_list {
uint32_t len;
struct guestfs_lvm_lv *val;
};
struct guestfs_stat {
int64_t dev;
int64_t ino;
int64_t mode;
int64_t nlink;
int64_t uid;
int64_t gid;
int64_t rdev;
int64_t size;
int64_t blksize;
int64_t blocks;
int64_t atime;
int64_t mtime;
int64_t ctime;
};
struct guestfs_statvfs {
int64_t bsize;
int64_t frsize;
int64_t blocks;
int64_t bfree;
int64_t bavail;
int64_t files;
int64_t ffree;
int64_t favail;
int64_t fsid;
int64_t flag;
int64_t namemax;
};
|