diff options
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index e13b9deee866..3e47b99a763c 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
@@ -1218,6 +1218,17 @@ do { \ | |||
1218 | #define EXT4_FREEBLOCKS_WATERMARK 0 | 1218 | #define EXT4_FREEBLOCKS_WATERMARK 0 |
1219 | #endif | 1219 | #endif |
1220 | 1220 | ||
1221 | static inline void ext4_update_i_disksize(struct inode *inode, loff_t newsize) | ||
1222 | { | ||
1223 | /* | ||
1224 | * XXX: replace with spinlock if seen contended -bzzz | ||
1225 | */ | ||
1226 | down_write(&EXT4_I(inode)->i_data_sem); | ||
1227 | if (newsize > EXT4_I(inode)->i_disksize) | ||
1228 | EXT4_I(inode)->i_disksize = newsize; | ||
1229 | up_write(&EXT4_I(inode)->i_data_sem); | ||
1230 | return ; | ||
1231 | } | ||
1221 | 1232 | ||
1222 | /* | 1233 | /* |
1223 | * Inodes and files operations | 1234 | * Inodes and files operations |