6b13f685e
김민수
BSP 최초 추가
|
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#ifndef _VXFS_OLT_H_
#define _VXFS_OLT_H_
#define VXFS_OLT_MAGIC 0xa504FCF5
enum {
VXFS_OLT_FREE = 1,
VXFS_OLT_FSHEAD = 2,
VXFS_OLT_CUT = 3,
VXFS_OLT_ILIST = 4,
VXFS_OLT_DEV = 5,
VXFS_OLT_SB = 6
};
struct vxfs_olt {
u_int32_t olt_magic;
u_int32_t olt_size;
u_int32_t olt_checksum;
u_int32_t __unused1;
u_int32_t olt_mtime;
u_int32_t olt_mutime;
u_int32_t olt_totfree;
vx_daddr_t olt_extents[2];
u_int32_t olt_esize;
vx_daddr_t olt_next[2];
u_int32_t olt_nsize;
u_int32_t __unused2;
};
struct vxfs_oltcommon {
u_int32_t olt_type;
u_int32_t olt_size;
};
struct vxfs_oltfree {
u_int32_t olt_type;
u_int32_t olt_fsize;
};
struct vxfs_oltilist {
u_int32_t olt_type;
u_int32_t olt_size;
vx_ino_t olt_iext[2];
};
struct vxfs_oltcut {
u_int32_t olt_type;
u_int32_t olt_size;
vx_ino_t olt_cutino;
u_int32_t __pad;
};
struct vxfs_oltsb {
u_int32_t olt_type;
u_int32_t olt_size;
vx_ino_t olt_sbino;
u_int32_t __unused1;
vx_ino_t olt_logino[2];
vx_ino_t olt_oltino[2];
};
struct vxfs_oltdev {
u_int32_t olt_type;
u_int32_t olt_size;
vx_ino_t olt_devino[2];
};
struct vxfs_oltfshead {
u_int32_t olt_type;
u_int32_t olt_size;
vx_ino_t olt_fsino[2];
};
#endif /* _VXFS_OLT_H_ */
|