diff options
author | Eric Sandeen <sandeen@redhat.com> | 2008-08-02 21:21:08 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-08-02 21:21:08 -0400 |
commit | b5f10eed8125702929e57cca7e5956b1b9b6d015 (patch) | |
tree | e5b38a6f654baea3658bf100320a4d66387988a3 /fs/ext4/ialloc.c | |
parent | e29d1cde63be0b5f1739416b5574a83c34bf8eeb (diff) |
ext4: lock block groups when initializing
I noticed when filling a 1T filesystem with 4 threads using the
fs_mark benchmark:
fs_mark -d /mnt/test -D 256 -n 100000 -t 4 -s 20480 -F -S 0
that I occasionally got checksum mismatch errors:
EXT4-fs error (device sdb): ext4_init_inode_bitmap: Checksum bad for group 6935
etc. I'd reliably get 4-5 of them during the run.
It appears that the problem is likely a race to init the bg's
when the uninit_bg feature is enabled.
With the patch below, which adds sb_bgl_locking around initialization,
I was able to complete several runs with no errors or warnings.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ialloc.c')
-rw-r--r-- | fs/ext4/ialloc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index 09cdcd5914d0..655e760212b8 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c | |||
@@ -118,12 +118,15 @@ ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group) | |||
118 | if (bh_uptodate_or_lock(bh)) | 118 | if (bh_uptodate_or_lock(bh)) |
119 | return bh; | 119 | return bh; |
120 | 120 | ||
121 | spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group)); | ||
121 | if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) { | 122 | if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) { |
122 | ext4_init_inode_bitmap(sb, bh, block_group, desc); | 123 | ext4_init_inode_bitmap(sb, bh, block_group, desc); |
123 | set_buffer_uptodate(bh); | 124 | set_buffer_uptodate(bh); |
124 | unlock_buffer(bh); | 125 | unlock_buffer(bh); |
126 | spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group)); | ||
125 | return bh; | 127 | return bh; |
126 | } | 128 | } |
129 | spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group)); | ||
127 | if (bh_submit_read(bh) < 0) { | 130 | if (bh_submit_read(bh) < 0) { |
128 | put_bh(bh); | 131 | put_bh(bh); |
129 | ext4_error(sb, __func__, | 132 | ext4_error(sb, __func__, |
@@ -735,7 +738,7 @@ got: | |||
735 | 738 | ||
736 | /* When marking the block group with | 739 | /* When marking the block group with |
737 | * ~EXT4_BG_INODE_UNINIT we don't want to depend | 740 | * ~EXT4_BG_INODE_UNINIT we don't want to depend |
738 | * on the value of bg_itable_unsed even though | 741 | * on the value of bg_itable_unused even though |
739 | * mke2fs could have initialized the same for us. | 742 | * mke2fs could have initialized the same for us. |
740 | * Instead we calculated the value below | 743 | * Instead we calculated the value below |
741 | */ | 744 | */ |