aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/ext4/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 20e2d704dc2e..219067ce09d9 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -1854,11 +1854,11 @@ repeat:
1854 1854
1855 if (ext4_claim_free_blocks(sbi, total)) { 1855 if (ext4_claim_free_blocks(sbi, total)) {
1856 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 1856 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1857 vfs_dq_release_reservation_block(inode, total);
1857 if (ext4_should_retry_alloc(inode->i_sb, &retries)) { 1858 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1858 yield(); 1859 yield();
1859 goto repeat; 1860 goto repeat;
1860 } 1861 }
1861 vfs_dq_release_reservation_block(inode, total);
1862 return -ENOSPC; 1862 return -ENOSPC;
1863 } 1863 }
1864 EXT4_I(inode)->i_reserved_data_blocks += nrblocks; 1864 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;