* [PATCH] befs: Removed incorrect check
@ 2019-02-01 13:48 Axel Dörfler
0 siblings, 0 replies; only message in thread
From: Axel Dörfler @ 2019-02-01 13:48 UTC (permalink / raw)
To: Luis de Bethencourt, Salah Triki, linux-kernel; +Cc: Axel Dörfler
The relation between ag_shift and blocks_per_ag is a bit more complex,
and also depends on the fs block size.
Since blocks_per_ag is not even being used, simply omit the check.
Signed-off-by: Axel Dörfler <axeld@pinc-software.de>
---
fs/befs/super.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/fs/befs/super.c b/fs/befs/super.c
index 7c50025c9..29fa37557 100644
--- a/fs/befs/super.c
+++ b/fs/befs/super.c
@@ -99,13 +99,6 @@ befs_check_sb(struct super_block *sb)
return BEFS_ERR;
}
-
- /* ag_shift also encodes the same information as blocks_per_ag in a
- * different way, non-fatal consistency check
- */
- if ((1 << befs_sb->ag_shift) != befs_sb->blocks_per_ag)
- befs_error(sb, "ag_shift disagrees with blocks_per_ag.");
-
if (befs_sb->log_start != befs_sb->log_end ||
befs_sb->flags == BEFS_DIRTY) {
befs_error(sb, "Filesystem not clean! There are blocks in the "
--
2.17.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-02-01 13:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-01 13:48 [PATCH] befs: Removed incorrect check Axel Dörfler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome