From 7f4ea6d56ba8d08f81c420a19bfd5776f733fc48 Mon Sep 17 00:00:00 2001 From: Eric Sesterhenn Date: Fri, 17 Oct 2008 09:16:19 -0400 Subject: [PATCH] --- yaml --- r: 115586 b: refs/heads/master c: 5128273a326679970b9196a27ff812670927c1c4 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/ext4/super.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 0e76c5972c5a..f40e1e879dd5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 22208dedbd7626e5fc4339c417f8d24cc21f79d7 +refs/heads/master: 5128273a326679970b9196a27ff812670927c1c4 diff --git a/trunk/fs/ext4/super.c b/trunk/fs/ext4/super.c index 4f41107021cf..a97e9ebe3b60 100644 --- a/trunk/fs/ext4/super.c +++ b/trunk/fs/ext4/super.c @@ -1618,14 +1618,14 @@ static int ext4_check_descriptors(struct super_block *sb) if (block_bitmap < first_block || block_bitmap > last_block) { printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: " "Block bitmap for group %lu not in group " - "(block %llu)!", i, block_bitmap); + "(block %llu)!\n", i, block_bitmap); return 0; } inode_bitmap = ext4_inode_bitmap(sb, gdp); if (inode_bitmap < first_block || inode_bitmap > last_block) { printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: " "Inode bitmap for group %lu not in group " - "(block %llu)!", i, inode_bitmap); + "(block %llu)!\n", i, inode_bitmap); return 0; } inode_table = ext4_inode_table(sb, gdp); @@ -1633,7 +1633,7 @@ static int ext4_check_descriptors(struct super_block *sb) inode_table + sbi->s_itb_per_group - 1 > last_block) { printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: " "Inode table for group %lu not in group " - "(block %llu)!", i, inode_table); + "(block %llu)!\n", i, inode_table); return 0; } spin_lock(sb_bgl_lock(sbi, i));