aboutsummaryrefslogtreecommitdiff
path: root/e2fslib/ext2_err.et.in
blob: 235f75df909f5cdaf912f8f9094e3724d0e6c0a9 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#
# Copyright (C) 1993, 1994, 1995, 1996 Theodore Ts'o.  
#
# %Begin-Header%
# This file may be redistributed under the terms of the GNU Public
# License.
# %End-Header%
#
	error_table ext2

ec	EXT2_ET_BASE,
	"EXT2FS Library version @E2FSPROGS_VERSION@"

ec	EXT2_ET_MAGIC_EXT2FS_FILSYS,
	"Wrong magic number for ext2_filsys structure"

ec	EXT2_ET_MAGIC_BADBLOCKS_LIST,
	"Wrong magic number for badblocks_list structure"

ec	EXT2_ET_MAGIC_BADBLOCKS_ITERATE,
	"Wrong magic number for badblocks_iterate structure"

ec	EXT2_ET_MAGIC_INODE_SCAN,
	"Wrong magic number for inode_scan structure"

ec	EXT2_ET_MAGIC_IO_CHANNEL,
	"Wrong magic number for io_channel structure"

ec	EXT2_ET_MAGIC_UNIX_IO_CHANNEL,
	"Wrong magic number for unix io_channel structure"

ec	EXT2_ET_MAGIC_IO_MANAGER,
	"Wrong magic number for io_manager structure"

ec	EXT2_ET_MAGIC_BLOCK_BITMAP,
	"Wrong magic number for block_bitmap structure"

ec	EXT2_ET_MAGIC_INODE_BITMAP,
	"Wrong magic number for inode_bitmap structure"

ec	EXT2_ET_MAGIC_GENERIC_BITMAP,
	"Wrong magic number for generic_bitmap structure"

ec	EXT2_ET_MAGIC_TEST_IO_CHANNEL,
	"Wrong magic number for test io_channel structure"

ec	EXT2_ET_MAGIC_DBLIST,
	"Wrong magic number for directory block list structure"

ec	EXT2_ET_MAGIC_ICOUNT,
	"Wrong magic number for icount structure"

ec	EXT2_ET_MAGIC_PQ_IO_CHANNEL,
	"Wrong magic number for Powerquest io_channel structure"

ec	EXT2_ET_MAGIC_EXT2_FILE,
	"Wrong magic number for ext2 file structure"

ec	EXT2_ET_MAGIC_E2IMAGE,
	"Wrong magic number for Ext2 Image Header"

ec	EXT2_ET_MAGIC_RESERVED_8,
	"Wrong magic number --- RESERVED_8"

ec	EXT2_ET_MAGIC_RESERVED_9,
	"Wrong magic number --- RESERVED_9"

ec	EXT2_ET_BAD_MAGIC,
	"Bad magic number in super-block"

ec	EXT2_ET_REV_TOO_HIGH,
	"Filesystem revision too high"

ec	EXT2_ET_RO_FILSYS,
	"Attempt to write to filesystem opened read-only"

ec	EXT2_ET_GDESC_READ,
	"Can't read group descriptors"

ec	EXT2_ET_GDESC_WRITE,
	"Can't write group descriptors"

ec	EXT2_ET_GDESC_BAD_BLOCK_MAP,
	"Corrupt group descriptor: bad block for block bitmap"

ec	EXT2_ET_GDESC_BAD_INODE_MAP,
	"Corrupt group descriptor: bad block for inode bitmap"

ec	EXT2_ET_GDESC_BAD_INODE_TABLE,
	"Corrupt group descriptor: bad block for inode table"

ec	EXT2_ET_INODE_BITMAP_WRITE,
	"Can't write an inode bitmap"

ec	EXT2_ET_INODE_BITMAP_READ,
	"Can't read an inode bitmap"

ec	EXT2_ET_BLOCK_BITMAP_WRITE,
	"Can't write an block bitmap"

ec	EXT2_ET_BLOCK_BITMAP_READ,
	"Can't read an block bitmap"

ec	EXT2_ET_INODE_TABLE_WRITE,
	"Can't write an inode table"

ec	EXT2_ET_INODE_TABLE_READ,
	"Can't read an inode table"

ec	EXT2_ET_NEXT_INODE_READ,
	"Can't read next inode"

ec	EXT2_ET_UNEXPECTED_BLOCK_SIZE,
	"Filesystem has unexpected block size"

ec	EXT2_ET_DIR_CORRUPTED,
	"EXT2 directory corrupted"

ec	EXT2_ET_SHORT_READ,
	"Attempt to read block from filesystem resulted in short read"

ec	EXT2_ET_SHORT_WRITE,
	"Attempt to write block from filesystem resulted in short write"

ec	EXT2_ET_DIR_NO_SPACE,
	"No free space in the directory"

ec	EXT2_ET_NO_INODE_BITMAP,
	"Inode bitmap not loaded"

ec	EXT2_ET_NO_BLOCK_BITMAP,
	"Block bitmap not loaded"

ec	EXT2_ET_BAD_INODE_NUM,
	"Illegal inode number"

ec	EXT2_ET_BAD_BLOCK_NUM,
	"Illegal block number"

ec	EXT2_ET_EXPAND_DIR_ERR,
	"Internal error in ext2fs_expand_dir"

ec	EXT2_ET_TOOSMALL,
	"Not enough space to build proposed filesystem"

ec	EXT2_ET_BAD_BLOCK_MARK,
	"Illegal block number passed to ext2fs_mark_block_bitmap"

ec	EXT2_ET_BAD_BLOCK_UNMARK,
	"Illegal block number passed to ext2fs_unmark_block_bitmap"

ec	EXT2_ET_BAD_BLOCK_TEST,
	"Illegal block number passed to ext2fs_test_block_bitmap"

ec	EXT2_ET_BAD_INODE_MARK,
	"Illegal inode number passed to ext2fs_mark_inode_bitmap"

ec	EXT2_ET_BAD_INODE_UNMARK,
	"Illegal inode number passed to ext2fs_unmark_inode_bitmap"

ec	EXT2_ET_BAD_INODE_TEST,
	"Illegal inode number passed to ext2fs_test_inode_bitmap"

ec	EXT2_ET_FUDGE_BLOCK_BITMAP_END,
	"Attempt to fudge end of block bitmap past the real end"

ec	EXT2_ET_FUDGE_INODE_BITMAP_END,
	"Attempt to fudge end of inode bitmap past the real end"

ec	EXT2_ET_BAD_IND_BLOCK,
	"Illegal indirect block found" 

ec	EXT2_ET_BAD_DIND_BLOCK,
	"Illegal doubly indirect block found" 

ec	EXT2_ET_BAD_TIND_BLOCK,
	"Illegal triply indirect block found" 

ec	EXT2_ET_NEQ_BLOCK_BITMAP,
	"Block bitmaps are not the same"

ec	EXT2_ET_NEQ_INODE_BITMAP,
	"Inode bitmaps are not the same"

ec	EXT2_ET_BAD_DEVICE_NAME,
	"Illegal or malformed device name"

ec	EXT2_ET_MISSING_INODE_TABLE,
	"A block group is missing an inode table"

ec	EXT2_ET_CORRUPT_SUPERBLOCK,
	"The ext2 superblock is corrupt"

ec	EXT2_ET_BAD_GENERIC_MARK,
	"Illegal generic bit number passed to ext2fs_mark_generic_bitmap"

ec	EXT2_ET_BAD_GENERIC_UNMARK,
	"Illegal generic bit number passed to ext2fs_unmark_generic_bitmap"

ec	EXT2_ET_BAD_GENERIC_TEST,
	"Illegal generic bit number passed to ext2fs_test_generic_bitmap"

ec	EXT2_ET_SYMLINK_LOOP,
	"Too many symbolic links encountered."

ec	EXT2_ET_CALLBACK_NOTHANDLED,
	"The callback function will not handle this case"

ec	EXT2_ET_BAD_BLOCK_IN_INODE_TABLE,
	"The inode is from a bad block in the inode table"

ec	EXT2_ET_UNSUPP_FEATURE,
	"Filesystem has unsupported feature(s)"

ec	EXT2_ET_RO_UNSUPP_FEATURE,
	"Filesystem has unsupported read-only feature(s)"

ec	EXT2_ET_LLSEEK_FAILED,
	"IO Channel failed to seek on read or write"

ec	EXT2_ET_NO_MEMORY,
	"Memory allocation failed"

ec	EXT2_ET_INVALID_ARGUMENT,
	"Invalid argument passed to ext2 library"

ec	EXT2_ET_BLOCK_ALLOC_FAIL,
	"Could not allocate block in ext2 filesystem"

ec	EXT2_ET_INODE_ALLOC_FAIL,
	"Could not allocate inode in ext2 filesystem"

ec	EXT2_ET_NO_DIRECTORY,
	"Ext2 inode is not a directory"

ec	EXT2_ET_TOO_MANY_REFS,
	"Too many references in table"

ec	EXT2_ET_FILE_NOT_FOUND,
	"File not found by ext2_lookup"

ec	EXT2_ET_FILE_RO,
	"File open read-only"

ec	EXT2_ET_DB_NOT_FOUND,
	"Ext2 directory block not found"

ec	EXT2_ET_DIR_EXISTS,
	"Ext2 directory already exists"

ec	EXT2_ET_UNIMPLEMENTED,
	"Unimplemented ext2 library function"

ec	EXT2_ET_CANCEL_REQUESTED,
	"User cancel requested"

ec	EXT2_ET_FILE_TOO_BIG,
	"Ext2 file too big"

ec	EXT2_ET_JOURNAL_NOT_BLOCK,
	"Supplied journal device not a block device"

ec	EXT2_ET_NO_JOURNAL_SB,
	"Journal superblock not found"

ec	EXT2_ET_JOURNAL_TOO_SMALL,
	"Journal must be at least 1024 blocks"

ec	EXT2_ET_JOURNAL_UNSUPP_VERSION,
	"Unsupported journal version"

ec	EXT2_ET_LOAD_EXT_JOURNAL,
	"Error loading external journal"

	end