On Mon, Jul 12, 2021 at 05:43:12PM +0200, Jan Kara wrote: > diff --git a/e2fsck/problem.h b/e2fsck/problem.h > index 24cdcf9b90f7..0611d71f9e03 100644 > --- a/e2fsck/problem.h > +++ b/e2fsck/problem.h > @@ -717,6 +729,15 @@ struct problem_context { > #define PR_1_HTREE_CANNOT_SIPHASH 0x01008E > > > +/* Orphan file inode is not a regular file */ > +#define PR_1_ORPHAN_FILE_BAD_MODE 0x01007F > + > +/* Orphan file inode is not in use, but contains data */ > +#define PR_1_ORPHAN_FILE_NOT_CLEAR 0x010080 > + > +/* Orphan file inode is not clear */ > +#define PR_1_ORPHAN_INODE_NOT_CLEAR 0x01007F > + The problem codes for PR_1_ORPHAN_FILE_BAD_MODE, PR_1_ORPHAN_FILE_NOT_CLEAR, and PR_1_ORPHAN_INODE_NOT_CLEAR overlap with pre-existing problem codes. This was picked up by running "make check", either at the top-level or in the e2fsck subdirectory. I've fixed this up in my repo. I've pushed out the slightly massaged e2fsprogs parallel orphan list patches on the "pu" (proposed updates, a terminology that Junio uses for the git repo) branch, for folks who want to experiment with the parallel orphan list patches. - Ted