diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/inode.c | 2 | ||||
-rw-r--r-- | fs/ext4/mballoc.c | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 117a9e7aa4a0..48fc023ab0a2 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -1352,7 +1352,7 @@ repeat: | |||
1352 | ei->i_da_metadata_calc_last_lblock = save_last_lblock; | 1352 | ei->i_da_metadata_calc_last_lblock = save_last_lblock; |
1353 | spin_unlock(&ei->i_block_reservation_lock); | 1353 | spin_unlock(&ei->i_block_reservation_lock); |
1354 | if (ext4_should_retry_alloc(inode->i_sb, &retries)) { | 1354 | if (ext4_should_retry_alloc(inode->i_sb, &retries)) { |
1355 | yield(); | 1355 | cond_resched(); |
1356 | goto repeat; | 1356 | goto repeat; |
1357 | } | 1357 | } |
1358 | dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); | 1358 | dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1)); |
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 75e05f3a730f..8b2ea9f75004 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -3692,11 +3692,7 @@ repeat: | |||
3692 | if (free < needed && busy) { | 3692 | if (free < needed && busy) { |
3693 | busy = 0; | 3693 | busy = 0; |
3694 | ext4_unlock_group(sb, group); | 3694 | ext4_unlock_group(sb, group); |
3695 | /* | 3695 | cond_resched(); |
3696 | * Yield the CPU here so that we don't get soft lockup | ||
3697 | * in non preempt case. | ||
3698 | */ | ||
3699 | yield(); | ||
3700 | goto repeat; | 3696 | goto repeat; |
3701 | } | 3697 | } |
3702 | 3698 | ||
@@ -4246,7 +4242,7 @@ ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle, | |||
4246 | ext4_claim_free_clusters(sbi, ar->len, ar->flags)) { | 4242 | ext4_claim_free_clusters(sbi, ar->len, ar->flags)) { |
4247 | 4243 | ||
4248 | /* let others to free the space */ | 4244 | /* let others to free the space */ |
4249 | yield(); | 4245 | cond_resched(); |
4250 | ar->len = ar->len >> 1; | 4246 | ar->len = ar->len >> 1; |
4251 | } | 4247 | } |
4252 | if (!ar->len) { | 4248 | if (!ar->len) { |