aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/balloc.c2
-rw-r--r--fs/ext4/super.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c
index 0b2b7549ac63..6dcbec9b2562 100644
--- a/fs/ext4/balloc.c
+++ b/fs/ext4/balloc.c
@@ -47,7 +47,7 @@ static int ext4_block_in_group(struct super_block *sb, ext4_fsblk_t block,
47 ext4_group_t block_group) 47 ext4_group_t block_group)
48{ 48{
49 ext4_group_t actual_group; 49 ext4_group_t actual_group;
50 ext4_get_group_no_and_offset(sb, block, &actual_group, 0); 50 ext4_get_group_no_and_offset(sb, block, &actual_group, NULL);
51 if (actual_group == block_group) 51 if (actual_group == block_group)
52 return 1; 52 return 1;
53 return 0; 53 return 0;
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 6c80f37433ef..80f06159ee99 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1858,8 +1858,8 @@ static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1858} 1858}
1859 1859
1860static int ext4_fill_super (struct super_block *sb, void *data, int silent) 1860static int ext4_fill_super (struct super_block *sb, void *data, int silent)
1861 __releases(kernel_sem) 1861 __releases(kernel_lock)
1862 __acquires(kernel_sem) 1862 __acquires(kernel_lock)
1863 1863
1864{ 1864{
1865 struct buffer_head * bh; 1865 struct buffer_head * bh;