diff options
Diffstat (limited to 'fs/ext3/ialloc.c')
| -rw-r--r-- | fs/ext3/ialloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext3/ialloc.c b/fs/ext3/ialloc.c index 9e4a24376210..69078079b19c 100644 --- a/fs/ext3/ialloc.c +++ b/fs/ext3/ialloc.c | |||
| @@ -651,7 +651,7 @@ struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino) | |||
| 651 | /* Error cases - e2fsck has already cleaned up for us */ | 651 | /* Error cases - e2fsck has already cleaned up for us */ |
| 652 | if (ino > max_ino) { | 652 | if (ino > max_ino) { |
| 653 | ext3_warning(sb, __FUNCTION__, | 653 | ext3_warning(sb, __FUNCTION__, |
| 654 | "bad orphan ino %lu! e2fsck was run?\n", ino); | 654 | "bad orphan ino %lu! e2fsck was run?", ino); |
| 655 | goto out; | 655 | goto out; |
| 656 | } | 656 | } |
| 657 | 657 | ||
| @@ -660,7 +660,7 @@ struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino) | |||
| 660 | bitmap_bh = read_inode_bitmap(sb, block_group); | 660 | bitmap_bh = read_inode_bitmap(sb, block_group); |
| 661 | if (!bitmap_bh) { | 661 | if (!bitmap_bh) { |
| 662 | ext3_warning(sb, __FUNCTION__, | 662 | ext3_warning(sb, __FUNCTION__, |
| 663 | "inode bitmap error for orphan %lu\n", ino); | 663 | "inode bitmap error for orphan %lu", ino); |
| 664 | goto out; | 664 | goto out; |
| 665 | } | 665 | } |
| 666 | 666 | ||
| @@ -672,7 +672,7 @@ struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino) | |||
| 672 | !(inode = iget(sb, ino)) || is_bad_inode(inode) || | 672 | !(inode = iget(sb, ino)) || is_bad_inode(inode) || |
| 673 | NEXT_ORPHAN(inode) > max_ino) { | 673 | NEXT_ORPHAN(inode) > max_ino) { |
| 674 | ext3_warning(sb, __FUNCTION__, | 674 | ext3_warning(sb, __FUNCTION__, |
| 675 | "bad orphan inode %lu! e2fsck was run?\n", ino); | 675 | "bad orphan inode %lu! e2fsck was run?", ino); |
| 676 | printk(KERN_NOTICE "ext3_test_bit(bit=%d, block=%llu) = %d\n", | 676 | printk(KERN_NOTICE "ext3_test_bit(bit=%d, block=%llu) = %d\n", |
| 677 | bit, (unsigned long long)bitmap_bh->b_blocknr, | 677 | bit, (unsigned long long)bitmap_bh->b_blocknr, |
| 678 | ext3_test_bit(bit, bitmap_bh->b_data)); | 678 | ext3_test_bit(bit, bitmap_bh->b_data)); |
