aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r--fs/ext4/inode.c45
1 files changed, 24 insertions, 21 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index a27129065144..ffc95ba48859 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -1044,18 +1044,6 @@ static void ext4_da_update_reserve_space(struct inode *inode, int used)
1044 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); 1044 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1045} 1045}
1046 1046
1047/* Maximum number of blocks we map for direct IO at once. */
1048#define DIO_MAX_BLOCKS 4096
1049/*
1050 * Number of credits we need for writing DIO_MAX_BLOCKS:
1051 * We need sb + group descriptor + bitmap + inode -> 4
1052 * For B blocks with A block pointers per block we need:
1053 * 1 (triple ind.) + (B/A/A + 2) (doubly ind.) + (B/A + 2) (indirect).
1054 * If we plug in 4096 for B and 256 for A (for 1KB block size), we get 25.
1055 */
1056#define DIO_CREDITS 25
1057
1058
1059/* 1047/*
1060 * The ext4_get_blocks_wrap() function try to look up the requested blocks, 1048 * The ext4_get_blocks_wrap() function try to look up the requested blocks,
1061 * and returns if the blocks are already mapped. 1049 * and returns if the blocks are already mapped.
@@ -1167,19 +1155,23 @@ int ext4_get_blocks_wrap(handle_t *handle, struct inode *inode, sector_t block,
1167 return retval; 1155 return retval;
1168} 1156}
1169 1157
1158/* Maximum number of blocks we map for direct IO at once. */
1159#define DIO_MAX_BLOCKS 4096
1160
1170static int ext4_get_block(struct inode *inode, sector_t iblock, 1161static int ext4_get_block(struct inode *inode, sector_t iblock,
1171 struct buffer_head *bh_result, int create) 1162 struct buffer_head *bh_result, int create)
1172{ 1163{
1173 handle_t *handle = ext4_journal_current_handle(); 1164 handle_t *handle = ext4_journal_current_handle();
1174 int ret = 0, started = 0; 1165 int ret = 0, started = 0;
1175 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits; 1166 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
1167 int dio_credits;
1176 1168
1177 if (create && !handle) { 1169 if (create && !handle) {
1178 /* Direct IO write... */ 1170 /* Direct IO write... */
1179 if (max_blocks > DIO_MAX_BLOCKS) 1171 if (max_blocks > DIO_MAX_BLOCKS)
1180 max_blocks = DIO_MAX_BLOCKS; 1172 max_blocks = DIO_MAX_BLOCKS;
1181 handle = ext4_journal_start(inode, DIO_CREDITS + 1173 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
1182 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb)); 1174 handle = ext4_journal_start(inode, dio_credits);
1183 if (IS_ERR(handle)) { 1175 if (IS_ERR(handle)) {
1184 ret = PTR_ERR(handle); 1176 ret = PTR_ERR(handle);
1185 goto out; 1177 goto out;
@@ -2243,7 +2235,7 @@ static int ext4_da_writepage(struct page *page,
2243 * for DIO, writepages, and truncate 2235 * for DIO, writepages, and truncate
2244 */ 2236 */
2245#define EXT4_MAX_WRITEBACK_PAGES DIO_MAX_BLOCKS 2237#define EXT4_MAX_WRITEBACK_PAGES DIO_MAX_BLOCKS
2246#define EXT4_MAX_WRITEBACK_CREDITS DIO_CREDITS 2238#define EXT4_MAX_WRITEBACK_CREDITS 25
2247 2239
2248static int ext4_da_writepages(struct address_space *mapping, 2240static int ext4_da_writepages(struct address_space *mapping,
2249 struct writeback_control *wbc) 2241 struct writeback_control *wbc)
@@ -4441,7 +4433,8 @@ int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
4441 4433
4442/* 4434/*
4443 * Calulate the total number of credits to reserve to fit 4435 * Calulate the total number of credits to reserve to fit
4444 * the modification of a single pages into a single transaction 4436 * the modification of a single pages into a single transaction,
4437 * which may include multiple chunks of block allocations.
4445 * 4438 *
4446 * This could be called via ext4_write_begin() or later 4439 * This could be called via ext4_write_begin() or later
4447 * ext4_da_writepages() in delalyed allocation case. 4440 * ext4_da_writepages() in delalyed allocation case.
@@ -4449,11 +4442,6 @@ int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
4449 * In both case it's possible that we could allocating multiple 4442 * In both case it's possible that we could allocating multiple
4450 * chunks of blocks. We need to consider the worse case, when 4443 * chunks of blocks. We need to consider the worse case, when
4451 * one new block per extent. 4444 * one new block per extent.
4452 *
4453 * For Direct IO and fallocate, the journal credits reservation
4454 * is based on one single extent allocation, so they could use
4455 * EXT4_DATA_TRANS_BLOCKS to get the needed credit to log a single
4456 * chunk of allocation needs.
4457 */ 4445 */
4458int ext4_writepage_trans_blocks(struct inode *inode) 4446int ext4_writepage_trans_blocks(struct inode *inode)
4459{ 4447{
@@ -4467,6 +4455,21 @@ int ext4_writepage_trans_blocks(struct inode *inode)
4467 ret += bpp; 4455 ret += bpp;
4468 return ret; 4456 return ret;
4469} 4457}
4458
4459/*
4460 * Calculate the journal credits for a chunk of data modification.
4461 *
4462 * This is called from DIO, fallocate or whoever calling
4463 * ext4_get_blocks_wrap() to map/allocate a chunk of contigous disk blocks.
4464 *
4465 * journal buffers for data blocks are not included here, as DIO
4466 * and fallocate do no need to journal data buffers.
4467 */
4468int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4469{
4470 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4471}
4472
4470/* 4473/*
4471 * The caller must have previously called ext4_reserve_inode_write(). 4474 * The caller must have previously called ext4_reserve_inode_write().
4472 * Give this, we know that the caller already has write access to iloc->bh. 4475 * Give this, we know that the caller already has write access to iloc->bh.