]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/problem.h
mke2fs: allow creation of journal device with superblock checksum
[thirdparty/e2fsprogs.git] / e2fsck / problem.h
CommitLineData
21c84b71
TT
1/*
2 * problem.h --- e2fsck problem error codes
3 *
4 * Copyright 1996 by Theodore Ts'o
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
10 */
11
1b6bf175
TT
12typedef __u32 problem_t;
13
21c84b71 14struct problem_context {
1b6bf175 15 errcode_t errcode;
86c627ec 16 ext2_ino_t ino, ino2, dir;
21c84b71
TT
17 struct ext2_inode *inode;
18 struct ext2_dir_entry *dirent;
15d482ba 19 blk64_t blk, blk2;
9d1bd3de 20 e2_blkcnt_t blkcount;
3971bfe8 21 dgrp_t group;
b9a64a51 22 __u32 csum1, csum2;
246501c6 23 __u64 num;
1b6bf175 24 const char *str;
21c84b71
TT
25};
26
21c84b71
TT
27/*
28 * We define a set of "latch groups"; these are problems which are
29 * handled as a set. The user answers once for a particular latch
30 * group.
31 */
21afac09 32#define PR_LATCH_MASK 0x0ff0 /* Latch mask */
21c84b71
TT
33#define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */
34#define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */
1b6bf175
TT
35#define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */
36#define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */
37#define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */
38#define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */
21afac09 39#define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees */
da307041 40#define PR_LATCH_TOOBIG 0x0080 /* Latch for file to big errors */
850d05e9 41#define PR_LATCH_OPTIMIZE_DIR 0x0090 /* Latch for optimize directories */
60139154 42#define PR_LATCH_BG_CHECKSUM 0x00A0 /* Latch for block group checksums */
21c84b71
TT
43
44#define PR_LATCH(x) ((((x) & PR_LATCH_MASK) >> 4) - 1)
45
1b6bf175
TT
46/*
47 * Latch group descriptor flags
48 */
49#define PRL_YES 0x0001 /* Answer yes */
50#define PRL_NO 0x0002 /* Answer no */
51#define PRL_LATCHED 0x0004 /* The latch group is latched */
52#define PRL_SUPPRESS 0x0008 /* Suppress all latch group questions */
53
54#define PRL_VARIABLE 0x000f /* All the flags that need to be reset */
55
21c84b71
TT
56/*
57 * Pre-Pass 1 errors
58 */
59
60/* Block bitmap not in group */
61#define PR_0_BB_NOT_GROUP 0x000001
62
63/* Inode bitmap not in group */
64#define PR_0_IB_NOT_GROUP 0x000002
65
66/* Inode table not in group */
67#define PR_0_ITABLE_NOT_GROUP 0x000003
68
1b6bf175
TT
69/* Superblock corrupt */
70#define PR_0_SB_CORRUPT 0x000004
71
72/* Filesystem size is wrong */
73#define PR_0_FS_SIZE_WRONG 0x000005
74
75/* Fragments not supported */
76#define PR_0_NO_FRAGMENTS 0x000006
77
78/* Bad blocks_per_group */
79#define PR_0_BLOCKS_PER_GROUP 0x000007
80
81/* Bad first_data_block */
82#define PR_0_FIRST_DATA_BLOCK 0x000008
83
84/* Adding UUID to filesystem */
85#define PR_0_ADD_UUID 0x000009
86
db0691b5 87/* Relocate hint */
1b6bf175
TT
88#define PR_0_RELOCATE_HINT 0x00000A
89
90/* Miscellaneous superblock corruption */
91#define PR_0_MISC_CORRUPT_SUPER 0x00000B
db0691b5 92
1b6bf175
TT
93/* Error determing physical device size of filesystem */
94#define PR_0_GETSIZE_ERROR 0x00000C
95
d4b0ce03
TT
96/* Inode count in the superblock incorrect */
97#define PR_0_INODE_COUNT_WRONG 0x00000D
98
4ea0a110
TT
99/* The Hurd does not support the filetype feature */
100#define PR_0_HURD_CLEAR_FILETYPE 0x00000E
3b5386dc
TT
101
102/* Journal inode is invalid */
103#define PR_0_JOURNAL_BAD_INODE 0x00000F
104
adee8d75
TT
105/* The external journal has multiple filesystems (which we can't handle yet) */
106#define PR_0_JOURNAL_UNSUPP_MULTIFS 0x000010
3b5386dc 107
adee8d75
TT
108/* Can't find external journal */
109#define PR_0_CANT_FIND_JOURNAL 0x000011
3b5386dc 110
adee8d75
TT
111/* External journal has bad superblock */
112#define PR_0_EXT_JOURNAL_BAD_SUPER 0x000012
3b5386dc
TT
113
114/* Superblock has a bad journal UUID */
115#define PR_0_JOURNAL_BAD_UUID 0x000013
116
117/* Journal has an unknown superblock type */
118#define PR_0_JOURNAL_UNSUPP_SUPER 0x000014
119
120/* Journal superblock is corrupt */
121#define PR_0_JOURNAL_BAD_SUPER 0x000015
122
123/* Journal superblock is corrupt */
124#define PR_0_JOURNAL_HAS_JOURNAL 0x000016
125
126/* Superblock has recovery flag set but no journal */
127#define PR_0_JOURNAL_RECOVER_SET 0x000017
128
d37066a9
TT
129/* Journal has data, but recovery flag is clear */
130#define PR_0_JOURNAL_RECOVERY_CLEAR 0x000018
3b5386dc 131
d37066a9
TT
132/* Ask if we should clear the journal */
133#define PR_0_JOURNAL_RESET_JOURNAL 0x000019
3b5386dc 134
060b5fbf
TT
135/* Filesystem revision is 0, but feature flags are set */
136#define PR_0_FS_REV_LEVEL 0x00001A
137
ecf1b776 138/* Clearing orphan inode */
8394902e 139#define PR_0_ORPHAN_CLEAR_INODE 0x000020
db0691b5 140
80bfaa3e 141/* Illegal block found in orphaned inode */
ecf1b776 142#define PR_0_ORPHAN_ILLEGAL_BLOCK_NUM 0x000021
80bfaa3e
TT
143
144/* Already cleared block found in orphaned inode */
ecf1b776 145#define PR_0_ORPHAN_ALREADY_CLEARED_BLOCK 0x000022
db0691b5 146
80bfaa3e 147/* Illegal orphan inode in superblock */
ecf1b776 148#define PR_0_ORPHAN_ILLEGAL_HEAD_INODE 0x000023
80bfaa3e
TT
149
150/* Illegal inode in orphaned inode list */
ae33f578 151#define PR_0_ORPHAN_ILLEGAL_INODE 0x000024
80bfaa3e 152
424cd2be
TT
153/* Journal has unsupported read-only feature - abort */
154#define PR_0_JOURNAL_UNSUPP_ROCOMPAT 0x000025
155
156/* Journal has unsupported incompatible feature - abort */
157#define PR_0_JOURNAL_UNSUPP_INCOMPAT 0x000026
158
c7f23364 159/* Journal has unsupported version number */
2f686ace 160#define PR_0_JOURNAL_UNSUPP_VERSION 0x000027
c7f23364 161
773fd8a1
TT
162/* Moving journal to hidden file */
163#define PR_0_MOVE_JOURNAL 0x000028
164
165/* Error moving journal */
166#define PR_0_ERR_MOVE_JOURNAL 0x000029
167
62e3e7fe
TT
168/* Clearing V2 journal superblock */
169#define PR_0_CLEAR_V2_JOURNAL 0x00002A
170
d37066a9
TT
171/* Run journal anyway */
172#define PR_0_JOURNAL_RUN 0x00002B
173
174/* Run journal anyway by default */
175#define PR_0_JOURNAL_RUN_DEFAULT 0x00002C
176
a435ec34
TT
177/* Backup journal inode blocks */
178#define PR_0_BACKUP_JNL 0x00002D
179
e75cfc5d
TT
180/* Reserved blocks w/o resize_inode */
181#define PR_0_NONZERO_RESERVED_GDT_BLOCKS 0x00002E
182
183/* Resize_inode not enabled, but resize inode is non-zero */
184#define PR_0_CLEAR_RESIZE_INODE 0x00002F
185
c3ffaf83
TT
186/* Resize inode invalid */
187#define PR_0_RESIZE_INODE_INVALID 0x000030
188
8dceb924
TT
189/* Last mount time is in the future */
190#define PR_0_FUTURE_SB_LAST_MOUNT 0x000031
191
192/* Last write time is in the future */
193#define PR_0_FUTURE_SB_LAST_WRITE 0x000032
194
b1c52b26
TT
195/* Superblock hint for external journal incorrect */
196#define PR_0_EXTERNAL_JOURNAL_HINT 0x000033
197
f77704e4
TT
198/* Superblock hint for external journal incorrect */
199#define PR_0_DIRHASH_HINT 0x000034
200
49a7360b
JS
201/* Group descriptor N checksum is invalid */
202#define PR_0_GDT_CSUM 0x000035
203
204/* Group descriptor N marked uninitialized without feature set. */
205#define PR_0_GDT_UNINIT 0x000036
206
40b9cc51
TT
207/* Block bitmap is not initialised and Inode bitmap is -- NO LONGER USED */
208/* #define PR_0_BB_UNINIT_IB_INIT 0x000037 */
49a7360b
JS
209
210/* Group descriptor N has invalid unused inodes count. */
211#define PR_0_GDT_ITABLE_UNUSED 0x000038
212
0d5439c8
AD
213/* Last group block bitmap is uninitialized. */
214#define PR_0_BB_UNINIT_LAST 0x000039
215
185c4aea
TT
216/* Journal transaction found corrupt */
217#define PR_0_JNL_TXN_CORRUPT 0x00003A
218
80875db5
TT
219/* The test_fs filesystem flag is set and ext4 is available */
220#define PR_0_CLEAR_TESTFS_FLAG 0x00003B
221
26ea4899
TT
222/* Last mount time is in the future (fudged) */
223#define PR_0_FUTURE_SB_LAST_MOUNT_FUDGED 0x00003C
224
225/* Last write time is in the future (fudged) */
226#define PR_0_FUTURE_SB_LAST_WRITE_FUDGED 0x00003D
227
60139154
TT
228/* Block group checksum (latch question) */
229#define PR_0_GDT_CSUM_LATCH 0x00003E
230
a3efe484
TT
231/* Free inodes count wrong */
232#define PR_0_FREE_INODE_COUNT 0x00003F
233
234/* Free blocks count wrong */
235#define PR_0_FREE_BLOCK_COUNT 0x000040
236
624e4a64
AK
237/* Make quota file hidden */
238#define PR_0_HIDE_QUOTA 0x000041
239
0f5eba75
AD
240/* Superblock has invalid MMP block. */
241#define PR_0_MMP_INVALID_BLK 0x000042
242
243/* Superblock has invalid MMP magic. */
244#define PR_0_MMP_INVALID_MAGIC 0x000043
245
010c49cf
TT
246/* Opening file system failed */
247#define PR_0_OPEN_FAILED 0x000044
248
249/* Checking group descriptor failed */
250#define PR_0_CHECK_DESC_FAILED 0x000045
26ea4899 251
387e6384
DW
252/*
253 * metadata_csum supersedes uninit_bg; both feature bits cannot be set
254 * simultaneously.
255 */
256#define PR_0_META_AND_GDT_CSUM_SET 0x000046
257
f57b3715
DW
258/* Superblock has invalid MMP checksum. */
259#define PR_0_MMP_CSUM_INVALID 0x000047
260
27b2297d
DW
261/* 64bit is set but extents are not set. */
262#define PR_0_64BIT_WITHOUT_EXTENTS 0x000048
263
7a4352dc
TT
264/* The first_meta_bg is too big */
265#define PR_0_FIRST_META_BG_TOO_BIG 0x000049
387e6384 266
21c84b71
TT
267/*
268 * Pass 1 errors
269 */
270
1b6bf175
TT
271/* Pass 1: Checking inodes, blocks, and sizes */
272#define PR_1_PASS_HEADER 0x010000
273
21c84b71 274/* Root directory is not an inode */
1b6bf175 275#define PR_1_ROOT_NO_DIR 0x010001
21c84b71
TT
276
277/* Root directory has dtime set */
1b6bf175 278#define PR_1_ROOT_DTIME 0x010002
21c84b71
TT
279
280/* Reserved inode has bad mode */
1b6bf175 281#define PR_1_RESERVED_BAD_MODE 0x010003
21c84b71
TT
282
283/* Deleted inode has zero dtime */
1b6bf175 284#define PR_1_ZERO_DTIME 0x010004
21c84b71
TT
285
286/* Inode in use, but dtime set */
1b6bf175 287#define PR_1_SET_DTIME 0x010005
21c84b71
TT
288
289/* Zero-length directory */
1b6bf175 290#define PR_1_ZERO_LENGTH_DIR 0x010006
21c84b71
TT
291
292/* Block bitmap conflicts with some other fs block */
1b6bf175 293#define PR_1_BB_CONFLICT 0x010007
21c84b71
TT
294
295/* Inode bitmap conflicts with some other fs block */
1b6bf175 296#define PR_1_IB_CONFLICT 0x010008
21c84b71
TT
297
298/* Inode table conflicts with some other fs block */
1b6bf175 299#define PR_1_ITABLE_CONFLICT 0x010009
21c84b71
TT
300
301/* Block bitmap is on a bad block */
1b6bf175 302#define PR_1_BB_BAD_BLOCK 0x01000A
21c84b71
TT
303
304/* Inode bitmap is on a bad block */
1b6bf175 305#define PR_1_IB_BAD_BLOCK 0x01000B
21c84b71
TT
306
307/* Inode has incorrect i_size */
1b6bf175 308#define PR_1_BAD_I_SIZE 0x01000C
21c84b71
TT
309
310/* Inode has incorrect i_blocks */
1b6bf175 311#define PR_1_BAD_I_BLOCKS 0x01000D
21c84b71
TT
312
313/* Illegal block number in inode */
1b6bf175 314#define PR_1_ILLEGAL_BLOCK_NUM 0x01000E
21c84b71
TT
315
316/* Block number overlaps fs metadata */
317#define PR_1_BLOCK_OVERLAPS_METADATA 0x01000F
318
319/* Inode has illegal blocks (latch question) */
1b6bf175 320#define PR_1_INODE_BLOCK_LATCH 0x010010
21c84b71
TT
321
322/* Too many bad blocks in inode */
ae33f578 323#define PR_1_TOO_MANY_BAD_BLOCKS 0x010011
db0691b5 324
21c84b71 325/* Illegal block number in bad block inode */
ae33f578 326#define PR_1_BB_ILLEGAL_BLOCK_NUM 0x010012
21c84b71
TT
327
328/* Bad block inode has illegal blocks (latch question) */
1b6bf175
TT
329#define PR_1_INODE_BBLOCK_LATCH 0x010013
330
331/* Duplicate or bad blocks in use! */
332#define PR_1_DUP_BLOCKS_PREENSTOP 0x010014
db0691b5
TT
333
334/* Bad block used as bad block indirect block */
1b6bf175
TT
335#define PR_1_BBINODE_BAD_METABLOCK 0x010015
336
337/* Inconsistency can't be fixed prompt */
338#define PR_1_BBINODE_BAD_METABLOCK_PROMPT 0x010016
db0691b5 339
1b6bf175 340/* Bad primary block */
b2f93192 341#define PR_1_BAD_PRIMARY_BLOCK 0x010017
db0691b5 342
1b6bf175 343/* Bad primary block prompt */
b2f93192 344#define PR_1_BAD_PRIMARY_BLOCK_PROMPT 0x010018
1b6bf175
TT
345
346/* Bad primary superblock */
b2f93192 347#define PR_1_BAD_PRIMARY_SUPERBLOCK 0x010019
1b6bf175
TT
348
349/* Bad primary block group descriptors */
b2f93192 350#define PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR 0x01001A
1b6bf175
TT
351
352/* Bad superblock in group */
b2f93192 353#define PR_1_BAD_SUPERBLOCK 0x01001B
1b6bf175
TT
354
355/* Bad block group descriptors in group */
b2f93192 356#define PR_1_BAD_GROUP_DESCRIPTORS 0x01001C
1b6bf175 357
db0691b5 358/* Block claimed for no reason */
b2f93192 359#define PR_1_PROGERR_CLAIMED_BLOCK 0x01001D
1b6bf175 360
f8188fff 361/* Error allocating blocks for relocating metadata */
b2f93192 362#define PR_1_RELOC_BLOCK_ALLOCATE 0x01001E
db0691b5 363
f8188fff 364/* Error allocating block buffer during relocation process */
b2f93192 365#define PR_1_RELOC_MEMORY_ALLOCATE 0x01001F
db0691b5
TT
366
367/* Relocating metadata group information from X to Y */
b2f93192 368#define PR_1_RELOC_FROM_TO 0x010020
db0691b5 369
1b6bf175 370/* Relocating metatdata group information to X */
b2f93192 371#define PR_1_RELOC_TO 0x010021
db0691b5 372
1b6bf175 373/* Block read error during relocation process */
b2f93192 374#define PR_1_RELOC_READ_ERR 0x010022
db0691b5 375
1b6bf175 376/* Block write error during relocation process */
b2f93192 377#define PR_1_RELOC_WRITE_ERR 0x010023
1b6bf175
TT
378
379/* Error allocating inode bitmap */
b2f93192 380#define PR_1_ALLOCATE_IBITMAP_ERROR 0x010024
1b6bf175
TT
381
382/* Error allocating block bitmap */
b2f93192 383#define PR_1_ALLOCATE_BBITMAP_ERROR 0x010025
1b6bf175
TT
384
385/* Error allocating icount structure */
b2f93192 386#define PR_1_ALLOCATE_ICOUNT 0x010026
db0691b5 387
1b6bf175 388/* Error allocating dbcount */
b2f93192 389#define PR_1_ALLOCATE_DBCOUNT 0x010027
1b6bf175
TT
390
391/* Error while scanning inodes */
b2f93192 392#define PR_1_ISCAN_ERROR 0x010028
1b6bf175
TT
393
394/* Error while iterating over blocks */
b2f93192 395#define PR_1_BLOCK_ITERATE 0x010029
1b6bf175 396
db0691b5 397/* Error while storing inode count information */
b2f93192 398#define PR_1_ICOUNT_STORE 0x01002A
1b6bf175 399
db0691b5 400/* Error while storing directory block information */
b2f93192 401#define PR_1_ADD_DBLOCK 0x01002B
1b6bf175
TT
402
403/* Error while reading inode (for clearing) */
b2f93192 404#define PR_1_READ_INODE 0x01002C
1b6bf175 405
f8188fff 406/* Suppress messages prompt */
b2f93192 407#define PR_1_SUPPRESS_MESSAGES 0x01002D
21c84b71 408
6fdc7a32
TT
409/* Imagic flag set on an inode when filesystem doesn't support it */
410#define PR_1_SET_IMAGIC 0x01002F
411
412/* Immutable flag set on a device or socket inode */
413#define PR_1_SET_IMMUTABLE 0x010030
1917875f
TT
414
415/* Compression flag set on a non-compressed filesystem */
416#define PR_1_COMPR_SET 0x010031
417
d647a1ea
TT
418/* Non-zero size on on device, fifo or socket inode */
419#define PR_1_SET_NONZSIZE 0x010032
420
060b5fbf
TT
421/* Filesystem revision is 0, but feature flags are set */
422#define PR_1_FS_REV_LEVEL 0x010033
423
f18996c8 424/* Journal inode not in use, needs clearing */
a9ca2016 425#define PR_1_JOURNAL_INODE_NOT_CLEAR 0x010034
f18996c8 426
a9ca2016
TT
427/* Journal inode has wrong mode */
428#define PR_1_JOURNAL_BAD_MODE 0x010035
21afac09
TT
429
430/* Inode that was part of orphan linked list */
431#define PR_1_LOW_DTIME 0x010036
432
433/* Latch question which asks how to deal with low dtime inodes */
434#define PR_1_ORPHAN_LIST_REFUGEES 0x010037
342d847d
TT
435
436/* Error allocating refcount structure */
437#define PR_1_ALLOCATE_REFCOUNT 0x010038
db0691b5 438
342d847d
TT
439/* Error reading Extended Attribute block */
440#define PR_1_READ_EA_BLOCK 0x010039
441
442/* Invalid Extended Attribute block */
443#define PR_1_BAD_EA_BLOCK 0x01003A
444
e8a3ee62
TT
445/* Error reading Extended Attribute block while fixing refcount -- abort */
446#define PR_1_EXTATTR_READ_ABORT 0x01003B
447
448/* Extended attribute reference count incorrect */
449#define PR_1_EXTATTR_REFCOUNT 0x01003C
450
db0691b5 451/* Error writing Extended Attribute block while fixing refcount */
a6217f5a 452#define PR_1_EXTATTR_WRITE_ABORT 0x01003D
55fd07ed
TT
453
454/* Multiple EA blocks not supported */
455#define PR_1_EA_MULTI_BLOCK 0x01003E
456
457/* Error allocating EA region allocation structure */
a6217f5a 458#define PR_1_EA_ALLOC_REGION_ABORT 0x01003F
b94a052a 459
55fd07ed
TT
460/* Error EA allocation collision */
461#define PR_1_EA_ALLOC_COLLISION 0x010040
b94a052a 462
55fd07ed
TT
463/* Bad extended attribute name */
464#define PR_1_EA_BAD_NAME 0x010041
465
466/* Bad extended attribute value */
b94a052a
AD
467#define PR_1_EA_BAD_VALUE 0x010042
468
da307041
TT
469/* Inode too big (latch question) */
470#define PR_1_INODE_TOOBIG 0x010043
471
472/* Directory too big */
473#define PR_1_TOOBIG_DIR 0x010044
474
475/* Regular file too big */
476#define PR_1_TOOBIG_REG 0x010045
477
478/* Symlink too big */
479#define PR_1_TOOBIG_SYMLINK 0x010046
480
8fdc9985
TT
481/* INDEX_FL flag set on a non-HTREE filesystem */
482#define PR_1_HTREE_SET 0x010047
483
db0691b5 484/* INDEX_FL flag set on a non-directory */
503f9e7f
TT
485#define PR_1_HTREE_NODIR 0x010048
486
db0691b5 487/* Invalid root node in HTREE directory */
503f9e7f
TT
488#define PR_1_HTREE_BADROOT 0x010049
489
db0691b5 490/* Unsupported hash version in HTREE directory */
503f9e7f
TT
491#define PR_1_HTREE_HASHV 0x01004A
492
db0691b5 493/* Incompatible flag in HTREE root node */
503f9e7f
TT
494#define PR_1_HTREE_INCOMPAT 0x01004B
495
db0691b5 496/* HTREE too deep */
503f9e7f
TT
497#define PR_1_HTREE_DEPTH 0x01004C
498
000ba404
TT
499/* Bad block has indirect block that conflicts with filesystem block */
500#define PR_1_BB_FS_BLOCK 0x01004D
501
c3ffaf83
TT
502/* Resize inode failed */
503#define PR_1_RESIZE_INODE_CREATE 0x01004E
504
db0691b5 505/* inode->i_size is too long */
cebe48a1
TT
506#define PR_1_EXTRA_ISIZE 0x01004F
507
508/* attribute name is too long */
509#define PR_1_ATTR_NAME_LEN 0x010050
510
511/* wrong EA value offset */
512#define PR_1_ATTR_VALUE_OFFSET 0x010051
513
514/* wrong EA blocknumber */
515#define PR_1_ATTR_VALUE_BLOCK 0x010052
516
517/* wrong EA value size */
518#define PR_1_ATTR_VALUE_SIZE 0x010053
519
520/* wrong EA hash value */
521#define PR_1_ATTR_HASH 0x010054
522
fbc3f901
TT
523/* inode appears to be a directory */
524#define PR_1_TREAT_AS_DIRECTORY 0x010055
525
15d482ba
TT
526/* Error while reading extent tree */
527#define PR_1_READ_EXTENT 0x010056
528
7518c176
TT
529/* Failure to iterate extents */
530#define PR_1_EXTENT_ITERATE_FAILURE 0x010057
15d482ba
TT
531
532/* Bad starting block in extent */
533#define PR_1_EXTENT_BAD_START_BLK 0x010058
534
535/* Extent ends beyond filesystem */
536#define PR_1_EXTENT_ENDS_BEYOND 0x010059
537
538/* EXTENTS_FL flag set on a non-extents capable filesystem */
539#define PR_1_EXTENTS_SET 0x01005A
540
541/* inode has extents, superblock missing INCOMPAT_EXTENTS feature */
542#define PR_1_EXTENT_FEATURE 0x01005B
543
544/* inode missing EXTENTS_FL, but is an extent inode */
545#define PR_1_UNSET_EXTENT_FL 0x01005C
546
ee19c902
TT
547/* Fast symlink has EXTENTS_FL set */
548#define PR_1_FAST_SYMLINK_EXTENT_FL 0x01005D
549
d5a8f9a9
TT
550/* Extents are out of order */
551#define PR_1_OUT_OF_ORDER_EXTENTS 0x01005E
552
7518c176
TT
553/* Extent node header invalid */
554#define PR_1_EXTENT_HEADER_INVALID 0x01005F
555
010dc7b9 556/* PR_1_EOFBLOCKS_FL_SET 0x010060 was here */
2291fbb0 557
44fe08f1
TT
558/* Failed to convert subcluster bitmap */
559#define PR_1_CONVERT_SUBCLUSTER 0x010061
560
624e4a64
AK
561/* Quota inode has wrong mode */
562#define PR_1_QUOTA_BAD_MODE 0x010062
563
564/* Quota inode is not in use, but contains data */
565#define PR_1_QUOTA_INODE_NOT_CLEAR 0x010063
566
567/* Quota inode is user visible */
568#define PR_1_QUOTA_INODE_NOT_HIDDEN 0x010064
569
96a8afa7
TT
570/* Invalid bad inode */
571#define PR_1_INVALID_BAD_INODE 0x010065
572
26c09eb8
TT
573/* Extent has zero length */
574#define PR_1_EXTENT_LENGTH_ZERO 0x010066
575
68d70624
DW
576/* inode seems to contain garbage */
577#define PR_1_INODE_IS_GARBAGE 0x010067
b9cde40d
DW
578
579/* inode passes checks, but checksum does not match inode */
580#define PR_1_INODE_ONLY_CSUM_INVALID 0x010068
581
78c666b8
DW
582/* Inode EA allocation collision */
583#define PR_1_INODE_EA_ALLOC_COLLISION 0x010069
584
1e2372b3
DW
585/* extent block passes checks, but checksum does not match extent block */
586#define PR_1_EXTENT_ONLY_CSUM_INVALID 0x01006A
587
5e07cb28
DW
588/* ea block passes checks, but checksum invalid */
589#define PR_1_EA_BLOCK_ONLY_CSUM_INVALID 0x01006C
590
789bd401
ES
591/* Index start doesn't match start of next extent down */
592#define PR_1_EXTENT_INDEX_START_INVALID 0x01006D
387e6384 593
d3f32c2d 594#define PR_1_EXTENT_END_OUT_OF_BOUNDS 0x01006E
25fed0fc
ZL
595
596/* Inode has inline data, but superblock is missing INLINE_DATA feature. */
597#define PR_1_INLINE_DATA_FEATURE 0x01006F
598
599/* INLINE_DATA feature is set in a non-inline-data filesystem */
600#define PR_1_INLINE_DATA_SET 0x010070
601
35c8faaf
DW
602/* file metadata collides with critical metadata */
603#define PR_1_CRITICAL_METADATA_COLLISION 0x010071
604
57b7fabc
DW
605/* Directory inode has a missing block (hole) */
606#define PR_1_COLLAPSE_DBLOCK 0x010072
607
608/* uninit directory block */
609#define PR_1_UNINIT_DBLOCK 0x010073
610
9a1d614d
DW
611/* Inode logical block is misaligned */
612#define PR_1_MISALIGNED_CLUSTER 0x010074
613
49a3749a
DW
614/* Inode has INLINE_DATA_FL flag but extended attribute not found */
615#define PR_1_INLINE_DATA_NO_ATTR 0x010075
616
8dae07fb
DW
617/* extents/inlinedata set on fifo/socket/device */
618#define PR_1_SPECIAL_EXTENTS_IDATA 0x010076
619
fa441f91
DW
620/* idata/extent flag set and extent header found, clear idata flag */
621#define PR_1_CLEAR_INLINE_DATA_FOR_EXTENT 0x010077
622
623/* inlinedata/extent set and no extent header found, clear extent flag */
624#define PR_1_CLEAR_EXTENT_FOR_INLINE_DATA 0x010078
625
626/* inlinedata/extent set, clear both flags */
627#define PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS 0x010079
628
629/* inlinedata/extent set, clear inode */
630#define PR_1_CLEAR_EXTENT_INLINE_DATA_INODE 0x01007A
631
21c84b71
TT
632/*
633 * Pass 1b errors
634 */
635
1b6bf175
TT
636/* Pass 1B: Rescan for duplicate/bad blocks */
637#define PR_1B_PASS_HEADER 0x011000
638
639/* Duplicate/bad block(s) header */
640#define PR_1B_DUP_BLOCK_HEADER 0x011001
641
642/* Duplicate/bad block(s) in inode */
643#define PR_1B_DUP_BLOCK 0x011002
644
645/* Duplicate/bad block(s) end */
646#define PR_1B_DUP_BLOCK_END 0x011003
db0691b5 647
1b6bf175
TT
648/* Error while scanning inodes */
649#define PR_1B_ISCAN_ERROR 0x011004
650
651/* Error allocating inode bitmap */
652#define PR_1B_ALLOCATE_IBITMAP_ERROR 0x011005
653
133a56dc 654/* Error while iterating over blocks */
7494cbfd 655#define PR_1B_BLOCK_ITERATE 0x011006
1b6bf175 656
0684a4f3 657/* Error adjusting EA refcount */
7494cbfd 658#define PR_1B_ADJ_EA_REFCOUNT 0x011007
0684a4f3 659
28b966d7
DW
660/* Duplicate/bad block range in inode */
661#define PR_1B_DUP_RANGE 0x011008
662
1b6bf175
TT
663/* Pass 1C: Scan directories for inodes with dup blocks. */
664#define PR_1C_PASS_HEADER 0x012000
665
666
667/* Pass 1D: Reconciling duplicate blocks */
668#define PR_1D_PASS_HEADER 0x013000
669
21c84b71 670/* File has duplicate blocks */
1b6bf175 671#define PR_1D_DUP_FILE 0x013001
21c84b71 672
db0691b5 673/* List of files sharing duplicate blocks */
1b6bf175 674#define PR_1D_DUP_FILE_LIST 0x013002
21c84b71 675
db0691b5 676/* File sharing blocks with filesystem metadata */
1b6bf175
TT
677#define PR_1D_SHARE_METADATA 0x013003
678
db0691b5 679/* Report of how many duplicate/bad inodes */
1b6bf175
TT
680#define PR_1D_NUM_DUP_INODES 0x013004
681
682/* Duplicated blocks already reassigned or cloned. */
683#define PR_1D_DUP_BLOCKS_DEALT 0x013005
684
685/* Clone duplicate/bad blocks? */
686#define PR_1D_CLONE_QUESTION 0x013006
687
688/* Delete file? */
689#define PR_1D_DELETE_QUESTION 0x013007
521e3685 690
1b6bf175
TT
691/* Couldn't clone file (error) */
692#define PR_1D_CLONE_ERROR 0x013008
db0691b5 693
21c84b71
TT
694/*
695 * Pass 2 errors
696 */
697
1b6bf175
TT
698/* Pass 2: Checking directory structure */
699#define PR_2_PASS_HEADER 0x020000
700
21c84b71
TT
701/* Bad inode number for '.' */
702#define PR_2_BAD_INODE_DOT 0x020001
703
704/* Directory entry has bad inode number */
705#define PR_2_BAD_INO 0x020002
706
707/* Directory entry has deleted or unused inode */
708#define PR_2_UNUSED_INODE 0x020003
709
710/* Directry entry is link to '.' */
711#define PR_2_LINK_DOT 0x020004
712
713/* Directory entry points to inode now located in a bad block */
714#define PR_2_BB_INODE 0x020005
715
716/* Directory entry contains a link to a directory */
717#define PR_2_LINK_DIR 0x020006
718
719/* Directory entry contains a link to the root directry */
720#define PR_2_LINK_ROOT 0x020007
721
722/* Directory entry has illegal characters in its name */
723#define PR_2_BAD_NAME 0x020008
724
db0691b5 725/* Missing '.' in directory inode */
21c84b71
TT
726#define PR_2_MISSING_DOT 0x020009
727
db0691b5 728/* Missing '..' in directory inode */
21c84b71
TT
729#define PR_2_MISSING_DOT_DOT 0x02000A
730
731/* First entry in directory inode doesn't contain '.' */
732#define PR_2_1ST_NOT_DOT 0x02000B
733
734/* Second entry in directory inode doesn't contain '..' */
735#define PR_2_2ND_NOT_DOT_DOT 0x02000C
736
737/* i_faddr should be zero */
738#define PR_2_FADDR_ZERO 0x02000D
739
740/* i_file_acl should be zero */
741#define PR_2_FILE_ACL_ZERO 0x02000E
742
743/* i_dir_acl should be zero */
744#define PR_2_DIR_ACL_ZERO 0x02000F
745
746/* i_frag should be zero */
747#define PR_2_FRAG_ZERO 0x020010
748
749/* i_fsize should be zero */
750#define PR_2_FSIZE_ZERO 0x020011
db0691b5 751
21c84b71
TT
752/* inode has bad mode */
753#define PR_2_BAD_MODE 0x020012
754
755/* directory corrupted */
756#define PR_2_DIR_CORRUPTED 0x020013
db0691b5 757
21c84b71
TT
758/* filename too long */
759#define PR_2_FILENAME_LONG 0x020014
db0691b5 760
21c84b71
TT
761/* Directory inode has a missing block (hole) */
762#define PR_2_DIRECTORY_HOLE 0x020015
763
764/* '.' is not NULL terminated */
765#define PR_2_DOT_NULL_TERM 0x020016
766
767/* '..' is not NULL terminated */
768#define PR_2_DOT_DOT_NULL_TERM 0x020017
769
7cf73dcd
TT
770/* Illegal character device in inode */
771#define PR_2_BAD_CHAR_DEV 0x020018
772
773/* Illegal block device in inode */
774#define PR_2_BAD_BLOCK_DEV 0x020019
775
1b6bf175
TT
776/* Duplicate '.' entry */
777#define PR_2_DUP_DOT 0x02001A
778
779/* Duplicate '..' entry */
780#define PR_2_DUP_DOT_DOT 0x02001B
db0691b5 781
1b6bf175
TT
782/* Internal error: couldn't find dir_info */
783#define PR_2_NO_DIRINFO 0x02001C
784
785/* Final rec_len is wrong */
786#define PR_2_FINAL_RECLEN 0x02001D
787
788/* Error allocating icount structure */
789#define PR_2_ALLOCATE_ICOUNT 0x02001E
790
791/* Error iterating over directory blocks */
792#define PR_2_DBLIST_ITERATE 0x02001F
793
794/* Error reading directory block */
795#define PR_2_READ_DIRBLOCK 0x020020
796
797/* Error writing directory block */
798#define PR_2_WRITE_DIRBLOCK 0x020021
799
800/* Error allocating new directory block */
801#define PR_2_ALLOC_DIRBOCK 0x020022
802
803/* Error deallocating inode */
804#define PR_2_DEALLOC_INODE 0x020023
805
f8188fff 806/* Directory entry for '.' is big. Split? */
7142db08 807#define PR_2_SPLIT_DOT 0x020024
f8188fff 808
1dde43f0
TT
809/* Illegal FIFO */
810#define PR_2_BAD_FIFO 0x020025
811
812/* Illegal socket */
813#define PR_2_BAD_SOCKET 0x020026
814
aa4115a4
TT
815/* Directory filetype not set */
816#define PR_2_SET_FILETYPE 0x020027
817
818/* Directory filetype incorrect */
819#define PR_2_BAD_FILETYPE 0x020028
820
7847c1d4
TT
821/* Directory filetype set when it shouldn't be */
822#define PR_2_CLEAR_FILETYPE 0x020029
823
c40db6d5
TT
824/* Directory filename can't be zero-length */
825#define PR_2_NULL_NAME 0x020030
826
bcf9c5d4
TT
827/* Invalid symlink */
828#define PR_2_INVALID_SYMLINK 0x020031
fdbdea09 829
342d847d
TT
830/* i_file_acl (extended attribute) is bad */
831#define PR_2_FILE_ACL_BAD 0x020032
832
a4742691
TT
833/* Filesystem contains large files, but has no such flag in sb */
834#define PR_2_FEATURE_LARGE_FILES 0x020033
835
8fdc9985
TT
836/* Node in HTREE directory not referenced */
837#define PR_2_HTREE_NOTREF 0x020034
838
839/* Node in HTREE directory referenced twice */
840#define PR_2_HTREE_DUPREF 0x020035
841
842/* Node in HTREE directory has bad min hash */
843#define PR_2_HTREE_MIN_HASH 0x020036
844
845/* Node in HTREE directory has bad max hash */
846#define PR_2_HTREE_MAX_HASH 0x020037
847
848/* Clear invalid HTREE directory */
849#define PR_2_HTREE_CLEAR 0x020038
850
851/* Clear the htree flag forcibly */
33db8f80 852/* #define PR_2_HTREE_FCLR 0x020039 */
8fdc9985
TT
853
854/* Bad block in htree interior node */
855#define PR_2_HTREE_BADBLK 0x02003A
856
0684a4f3
TT
857/* Error adjusting EA refcount */
858#define PR_2_ADJ_EA_REFCOUNT 0x02003B
859
ea1959f0
TT
860/* Invalid HTREE root node */
861#define PR_2_HTREE_BAD_ROOT 0x02003C
862
ad4fa466
TT
863/* Invalid HTREE limit */
864#define PR_2_HTREE_BAD_LIMIT 0x02003D
865
866/* Invalid HTREE count */
867#define PR_2_HTREE_BAD_COUNT 0x02003E
868
869/* HTREE interior node has out-of-order hashes in table */
870#define PR_2_HTREE_HASH_ORDER 0x02003F
871
872/* Node in HTREE directory has bad depth */
b0700a1b
TT
873#define PR_2_HTREE_BAD_DEPTH 0x020040
874
875/* Duplicate directory entry found */
876#define PR_2_DUPLICATE_DIRENT 0x020041
877
878/* Non-unique filename found */
879#define PR_2_NON_UNIQUE_FILE 0x020042
ad4fa466 880
0926668d
TT
881/* Duplicate directory entry found */
882#define PR_2_REPORT_DUP_DIRENT 0x020043
883
5d17119d
TT
884/* i_blocks_hi should be zero */
885#define PR_2_BLOCKS_HI_ZERO 0x020044
886
d45edec0
TT
887/* Unexpected HTREE block */
888#define PR_2_UNEXPECTED_HTREE_BLOCK 0x020045
889
49a7360b
JS
890/* Inode found in group where _INODE_UNINIT is set */
891#define PR_2_INOREF_BG_INO_UNINIT 0x020046
892
893/* Inode found in group unused inodes area */
894#define PR_2_INOREF_IN_UNUSED 0x020047
895
911ec626
TT
896/* i_file_acl_hi should be zero */
897#define PR_2_I_FILE_ACL_HI_ZERO 0x020048
898
07307114
DW
899/* htree root node fails checksum */
900#define PR_2_HTREE_ROOT_CSUM_INVALID 0x020049
901
902/* htree node fails checksum */
903#define PR_2_HTREE_NODE_CSUM_INVALID 0x02004A
904
e8548796
DW
905/* no space in leaf for checksum */
906#define PR_2_LEAF_NODE_MISSING_CSUM 0x02004C
907
908/* dir leaf node passes checks, but fails checksum */
909#define PR_2_LEAF_NODE_ONLY_CSUM_INVALID 0x02004D
910
52b0c6e6
DW
911/* bad inline directory size */
912#define PR_2_BAD_INLINE_DIR_SIZE 0x02004E
913
914/* fixing inline dir size failed */
915#define PR_2_FIX_INLINE_DIR_FAILED 0x02004F
916
21c84b71
TT
917/*
918 * Pass 3 errors
919 */
920
1b6bf175
TT
921/* Pass 3: Checking directory connectivity */
922#define PR_3_PASS_HEADER 0x030000
923
21c84b71 924/* Root inode not allocated */
1b6bf175 925#define PR_3_NO_ROOT_INODE 0x030001
21c84b71
TT
926
927/* No room in lost+found */
1b6bf175 928#define PR_3_EXPAND_LF_DIR 0x030002
21c84b71
TT
929
930/* Unconnected directory inode */
1b6bf175 931#define PR_3_UNCONNECTED_DIR 0x030003
21c84b71
TT
932
933/* /lost+found not found */
1b6bf175 934#define PR_3_NO_LF_DIR 0x030004
21c84b71
TT
935
936/* .. entry is incorrect */
1b6bf175
TT
937#define PR_3_BAD_DOT_DOT 0x030005
938
939/* Bad or non-existent /lost+found. Cannot reconnect */
940#define PR_3_NO_LPF 0x030006
941
942/* Could not expand /lost+found */
943#define PR_3_CANT_EXPAND_LPF 0x030007
944
945/* Could not reconnect inode */
946#define PR_3_CANT_RECONNECT 0x030008
947
948/* Error while trying to find /lost+found */
949#define PR_3_ERR_FIND_LPF 0x030009
950
951/* Error in ext2fs_new_block while creating /lost+found */
952#define PR_3_ERR_LPF_NEW_BLOCK 0x03000A
21c84b71 953
1b6bf175
TT
954/* Error in ext2fs_new_inode while creating /lost+found */
955#define PR_3_ERR_LPF_NEW_INODE 0x03000B
956
db0691b5 957/* Error in ext2fs_new_dir_block while creating /lost+found */
1b6bf175 958#define PR_3_ERR_LPF_NEW_DIR_BLOCK 0x03000C
db0691b5 959
1b6bf175
TT
960/* Error while writing directory block for /lost+found */
961#define PR_3_ERR_LPF_WRITE_BLOCK 0x03000D
962
963/* Error while adjusting inode count */
964#define PR_3_ADJUST_INODE 0x03000E
965
966/* Couldn't fix parent directory -- error */
967#define PR_3_FIX_PARENT_ERR 0x03000F
968
db0691b5 969/* Couldn't fix parent directory -- couldn't find it */
1b6bf175 970#define PR_3_FIX_PARENT_NOFIND 0x030010
db0691b5 971
1b6bf175
TT
972/* Error allocating inode bitmap */
973#define PR_3_ALLOCATE_IBITMAP_ERROR 0x030011
db0691b5 974
1b6bf175
TT
975/* Error creating root directory */
976#define PR_3_CREATE_ROOT_ERROR 0x030012
977
978/* Error creating lost and found directory */
979#define PR_3_CREATE_LPF_ERROR 0x030013
21c84b71 980
f8188fff
TT
981/* Root inode is not directory; aborting */
982#define PR_3_ROOT_NOT_DIR_ABORT 0x030014
983
984/* Cannot proceed without a root inode. */
985#define PR_3_NO_ROOT_INODE_ABORT 0x030015
986
7f813ba3 987/* Internal error: couldn't find dir_info */
4a9f5936
TT
988#define PR_3_NO_DIRINFO 0x030016
989
990/* Lost+found is not a directory */
991#define PR_3_LPF_NOTDIR 0x030017
7f813ba3 992
9676f3a9
ZL
993/* Lost+found has inline data */
994#define PR_3_LPF_INLINE_DATA 0x030018
995
09918967
DW
996/* Cannot allocate lost+found */
997#define PR_3_LPF_NO_SPACE 0x030019
998
d5da89e8
DW
999/* Insufficient space to recover lost files */
1000#define PR_3_NO_SPACE_TO_RECOVER 0x03001A
1001
b7a00563
TT
1002/*
1003 * Pass 3a --- rehashing diretories
1004 */
1005/* Pass 3a: Reindexing directories */
1006#define PR_3A_PASS_HEADER 0x031000
1007
1008/* Error iterating over directories */
850d05e9 1009#define PR_3A_OPTIMIZE_ITER 0x031001
b7a00563
TT
1010
1011/* Error rehash directory */
db0691b5 1012#define PR_3A_OPTIMIZE_DIR_ERR 0x031002
b7a00563
TT
1013
1014/* Rehashing dir header */
ae33f578 1015#define PR_3A_OPTIMIZE_DIR_HEADER 0x031003
b7a00563
TT
1016
1017/* Rehashing directory %d */
850d05e9 1018#define PR_3A_OPTIMIZE_DIR 0x031004
db0691b5
TT
1019
1020/* Rehashing dir end */
850d05e9
TT
1021#define PR_3A_OPTIMIZE_DIR_END 0x031005
1022
21c84b71
TT
1023/*
1024 * Pass 4 errors
1025 */
1026
1b6bf175 1027/* Pass 4: Checking reference counts */
ae33f578 1028#define PR_4_PASS_HEADER 0x040000
1b6bf175 1029
21c84b71 1030/* Unattached zero-length inode */
ae33f578 1031#define PR_4_ZERO_LEN_INODE 0x040001
21c84b71
TT
1032
1033/* Unattached inode */
ae33f578 1034#define PR_4_UNATTACHED_INODE 0x040002
21c84b71
TT
1035
1036/* Inode ref count wrong */
ae33f578 1037#define PR_4_BAD_REF_COUNT 0x040003
21c84b71 1038
1b6bf175 1039/* Inconsistent inode count information cached */
ae33f578 1040#define PR_4_INCONSISTENT_COUNT 0x040004
1b6bf175 1041
21c84b71
TT
1042/*
1043 * Pass 5 errors
1044 */
1045
1b6bf175
TT
1046/* Pass 5: Checking group summary information */
1047#define PR_5_PASS_HEADER 0x050000
db0691b5 1048
1b6bf175
TT
1049/* Padding at end of inode bitmap is not set. */
1050#define PR_5_INODE_BMAP_PADDING 0x050001
1051
1052/* Padding at end of block bitmap is not set. */
1053#define PR_5_BLOCK_BMAP_PADDING 0x050002
1054
1055/* Block bitmap differences header */
ae33f578 1056#define PR_5_BLOCK_BITMAP_HEADER 0x050003
1b6bf175
TT
1057
1058/* Block not used, but marked in bitmap */
f122632e 1059#define PR_5_BLOCK_UNUSED 0x050004
db0691b5 1060
1b6bf175
TT
1061/* Block used, but not marked used in bitmap */
1062#define PR_5_BLOCK_USED 0x050005
1063
db0691b5 1064/* Block bitmap differences end */
1b6bf175
TT
1065#define PR_5_BLOCK_BITMAP_END 0x050006
1066
1067/* Inode bitmap differences header */
1068#define PR_5_INODE_BITMAP_HEADER 0x050007
1069
1070/* Inode not used, but marked in bitmap */
f122632e 1071#define PR_5_INODE_UNUSED 0x050008
db0691b5 1072
1b6bf175
TT
1073/* Inode used, but not marked used in bitmap */
1074#define PR_5_INODE_USED 0x050009
1075
db0691b5 1076/* Inode bitmap differences end */
1b6bf175
TT
1077#define PR_5_INODE_BITMAP_END 0x05000A
1078
1079/* Free inodes count for group wrong */
1080#define PR_5_FREE_INODE_COUNT_GROUP 0x05000B
1081
1082/* Directories count for group wrong */
1083#define PR_5_FREE_DIR_COUNT_GROUP 0x05000C
1084
1085/* Free inodes count wrong */
ae33f578 1086#define PR_5_FREE_INODE_COUNT 0x05000D
1b6bf175
TT
1087
1088/* Free blocks count for group wrong */
1089#define PR_5_FREE_BLOCK_COUNT_GROUP 0x05000E
1090
1091/* Free blocks count wrong */
1092#define PR_5_FREE_BLOCK_COUNT 0x05000F
1093
1094/* Programming error: bitmap endpoints don't match */
1095#define PR_5_BMAP_ENDPOINTS 0x050010
bbd47d76 1096
1b6bf175
TT
1097/* Internal error: fudging end of bitmap */
1098#define PR_5_FUDGE_BITMAP_ERROR 0x050011
bbd47d76
TT
1099
1100/* Error copying in replacement inode bitmap */
1101#define PR_5_COPY_IBITMAP_ERROR 0x050012
1102
1103/* Error copying in replacement block bitmap */
1104#define PR_5_COPY_BBITMAP_ERROR 0x050013
1105
f122632e
TT
1106/* Block range not used, but marked in bitmap */
1107#define PR_5_BLOCK_RANGE_UNUSED 0x050014
db0691b5 1108
f122632e
TT
1109/* Block range used, but not marked used in bitmap */
1110#define PR_5_BLOCK_RANGE_USED 0x050015
1111
1112/* Inode range not used, but marked in bitmap */
1113#define PR_5_INODE_RANGE_UNUSED 0x050016
49a7360b 1114
f122632e
TT
1115/* Inode rangeused, but not marked used in bitmap */
1116#define PR_5_INODE_RANGE_USED 0x050017
1117
49a7360b
JS
1118/* Block in use but group is marked BLOCK_UNINIT */
1119#define PR_5_BLOCK_UNINIT 0x050018
1120
1121/* Inode in use but group is marked INODE_UNINIT */
1122#define PR_5_INODE_UNINIT 0x050019
1123
11ac780e
DW
1124/* Inode bitmap checksum does not match */
1125#define PR_5_INODE_BITMAP_CSUM_INVALID 0x05001A
1126
da670fe0
DW
1127/* Block bitmap checksum does not match */
1128#define PR_5_BLOCK_BITMAP_CSUM_INVALID 0x05001B
1129
5107d0d1
KS
1130/*
1131 * Post-Pass 5 errors
1132 */
1133
1134/* Recreate the journal if E2F_FLAG_JOURNAL_INODE flag is set */
1135#define PR_6_RECREATE_JOURNAL 0x060001
1136
7943ccf5
AK
1137/* Update quota information if it is inconsistent */
1138#define PR_6_UPDATE_QUOTAS 0x060002
1139
115d4b4b
TT
1140/* Error setting block group checksum info */
1141#define PR_6_SET_BG_CHECKSUM 0x060003
1142
1143/* Error writing file system info */
1144#define PR_6_FLUSH_FILESYSTEM 0x060004
1145
1146/* Error flushing writes to storage device */
1147#define PR_6_IO_FLUSH 0x060005
1148
21c84b71
TT
1149/*
1150 * Function declarations
1151 */
1b6bf175
TT
1152int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx);
1153int end_problem_latch(e2fsck_t ctx, int mask);
1154int set_latch_flags(int mask, int setflags, int clearflags);
1155int get_latch_flags(int mask, int *value);
ae33f578 1156void clear_problem_context(struct problem_context *pctx);
21c84b71
TT
1157
1158/* message.c */
b0e91c89 1159void print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg,
db0691b5 1160 struct problem_context *pctx, int first,
1a191d66 1161 int recurse);
21c84b71 1162