diff options
author | Theodore Ts'o <tytso@mit.edu> | 2014-08-09 12:31:04 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2014-08-10 16:21:08 -0400 |
commit | 7a4352dccd18928ffddd188cc927f4983ba80f72 (patch) | |
tree | 25157addd8611e0e52b021ea3b772648a4eb1d7b /e2fsck/problem.h | |
parent | f66e6ce4446738c2c7f43d41988a3eb73347e2f5 (diff) | |
download | e2fsprogs-7a4352dccd18928ffddd188cc927f4983ba80f72.tar.gz |
e2fsck: fix file systems with an overly large s_first_meta_bg
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'e2fsck/problem.h')
-rw-r--r-- | e2fsck/problem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/e2fsck/problem.h b/e2fsck/problem.h index d673a4ea..3426a22a 100644 --- a/e2fsck/problem.h +++ b/e2fsck/problem.h @@ -252,6 +252,9 @@ struct problem_context { /* 64bit is set but extents are not set. */ #define PR_0_64BIT_WITHOUT_EXTENTS 0x000048 +/* The first_meta_bg is too big */ +#define PR_0_FIRST_META_BG_TOO_BIG 0x000049 + /* * Pass 1 errors */ |