diff options
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 80ed6dc9c9d2..7dcac9d7e491 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -1067,9 +1067,16 @@ static void ext4_da_update_reserve_space(struct inode *inode, int used) | |||
1067 | /* | 1067 | /* |
1068 | * free those over-booking quota for metadata blocks | 1068 | * free those over-booking quota for metadata blocks |
1069 | */ | 1069 | */ |
1070 | |||
1071 | if (mdb_free) | 1070 | if (mdb_free) |
1072 | vfs_dq_release_reservation_block(inode, mdb_free); | 1071 | vfs_dq_release_reservation_block(inode, mdb_free); |
1072 | |||
1073 | /* | ||
1074 | * If we have done all the pending block allocations and if | ||
1075 | * there aren't any writers on the inode, we can discard the | ||
1076 | * inode's preallocations. | ||
1077 | */ | ||
1078 | if (!total && (atomic_read(&inode->i_writecount) == 0)) | ||
1079 | ext4_discard_preallocations(inode); | ||
1073 | } | 1080 | } |
1074 | 1081 | ||
1075 | /* | 1082 | /* |