diff options
-rw-r--r-- | fs/omfs/inode.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/omfs/inode.c b/fs/omfs/inode.c index bd4bf753a63b..0af5d0af9f32 100644 --- a/fs/omfs/inode.c +++ b/fs/omfs/inode.c | |||
@@ -509,6 +509,15 @@ static int omfs_fill_super(struct super_block *sb, void *data, int silent) | |||
509 | goto out_brelse_bh2; | 509 | goto out_brelse_bh2; |
510 | } | 510 | } |
511 | 511 | ||
512 | if (sbi->s_bitmap_ino != ~0ULL && | ||
513 | sbi->s_bitmap_ino > sbi->s_num_blocks) { | ||
514 | printk(KERN_ERR "omfs: free space bitmap location is corrupt " | ||
515 | "(%llx, total blocks %llx)\n", | ||
516 | (unsigned long long) sbi->s_bitmap_ino, | ||
517 | (unsigned long long) sbi->s_num_blocks); | ||
518 | goto out_brelse_bh2; | ||
519 | } | ||
520 | |||
512 | ret = omfs_get_imap(sb); | 521 | ret = omfs_get_imap(sb); |
513 | if (ret) | 522 | if (ret) |
514 | goto out_brelse_bh2; | 523 | goto out_brelse_bh2; |