Commit da9bfeb4 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] direct-to-BIO writeback for writeback-mode ext3

Turn on direct-to-BIO writeback for ext3 in data=writeback mode.
parent 5a302308
...@@ -1389,6 +1389,34 @@ struct address_space_operations ext3_aops = { ...@@ -1389,6 +1389,34 @@ struct address_space_operations ext3_aops = {
releasepage: ext3_releasepage, /* BKL not held. Don't need */ releasepage: ext3_releasepage, /* BKL not held. Don't need */
}; };
/* For writeback mode, we can use mpage_writepages() */
static int
ext3_writepages(struct address_space *mapping, int *nr_to_write)
{
int ret;
int err;
ret = write_mapping_buffers(mapping);
err = mpage_writepages(mapping, nr_to_write, ext3_get_block);
if (!ret)
ret = err;
return ret;
}
struct address_space_operations ext3_writeback_aops = {
readpage: ext3_readpage, /* BKL not held. Don't need */
readpages: ext3_readpages, /* BKL not held. Don't need */
writepage: ext3_writepage, /* BKL not held. We take it */
writepages: ext3_writepages, /* BKL not held. Don't need */
sync_page: block_sync_page,
prepare_write: ext3_prepare_write, /* BKL not held. We take it */
commit_write: ext3_commit_write, /* BKL not held. We take it */
bmap: ext3_bmap, /* BKL held */
flushpage: ext3_flushpage, /* BKL not held. Don't need */
releasepage: ext3_releasepage, /* BKL not held. Don't need */
};
/* /*
* ext3_block_truncate_page() zeroes out a mapping from file offset `from' * ext3_block_truncate_page() zeroes out a mapping from file offset `from'
* up to the end of the block which corresponds to `from'. * up to the end of the block which corresponds to `from'.
...@@ -2159,7 +2187,10 @@ void ext3_read_inode(struct inode * inode) ...@@ -2159,7 +2187,10 @@ void ext3_read_inode(struct inode * inode)
else if (S_ISREG(inode->i_mode)) { else if (S_ISREG(inode->i_mode)) {
inode->i_op = &ext3_file_inode_operations; inode->i_op = &ext3_file_inode_operations;
inode->i_fop = &ext3_file_operations; inode->i_fop = &ext3_file_operations;
inode->i_mapping->a_ops = &ext3_aops; if (ext3_should_writeback_data(inode))
inode->i_mapping->a_ops = &ext3_writeback_aops;
else
inode->i_mapping->a_ops = &ext3_aops;
} else if (S_ISDIR(inode->i_mode)) { } else if (S_ISDIR(inode->i_mode)) {
inode->i_op = &ext3_dir_inode_operations; inode->i_op = &ext3_dir_inode_operations;
inode->i_fop = &ext3_dir_operations; inode->i_fop = &ext3_dir_operations;
...@@ -2168,7 +2199,10 @@ void ext3_read_inode(struct inode * inode) ...@@ -2168,7 +2199,10 @@ void ext3_read_inode(struct inode * inode)
inode->i_op = &ext3_fast_symlink_inode_operations; inode->i_op = &ext3_fast_symlink_inode_operations;
else { else {
inode->i_op = &page_symlink_inode_operations; inode->i_op = &page_symlink_inode_operations;
inode->i_mapping->a_ops = &ext3_aops; if (ext3_should_writeback_data(inode))
inode->i_mapping->a_ops = &ext3_writeback_aops;
else
inode->i_mapping->a_ops = &ext3_aops;
} }
} else } else
init_special_inode(inode, inode->i_mode, init_special_inode(inode, inode->i_mode,
......
...@@ -510,7 +510,10 @@ static int ext3_create (struct inode * dir, struct dentry * dentry, int mode) ...@@ -510,7 +510,10 @@ static int ext3_create (struct inode * dir, struct dentry * dentry, int mode)
if (!IS_ERR(inode)) { if (!IS_ERR(inode)) {
inode->i_op = &ext3_file_inode_operations; inode->i_op = &ext3_file_inode_operations;
inode->i_fop = &ext3_file_operations; inode->i_fop = &ext3_file_operations;
inode->i_mapping->a_ops = &ext3_aops; if (ext3_should_writeback_data(inode))
inode->i_mapping->a_ops = &ext3_writeback_aops;
else
inode->i_mapping->a_ops = &ext3_aops;
ext3_mark_inode_dirty(handle, inode); ext3_mark_inode_dirty(handle, inode);
err = ext3_add_nondir(handle, dentry, inode); err = ext3_add_nondir(handle, dentry, inode);
} }
...@@ -985,7 +988,10 @@ static int ext3_symlink (struct inode * dir, ...@@ -985,7 +988,10 @@ static int ext3_symlink (struct inode * dir,
if (l > sizeof (EXT3_I(inode)->i_data)) { if (l > sizeof (EXT3_I(inode)->i_data)) {
inode->i_op = &page_symlink_inode_operations; inode->i_op = &page_symlink_inode_operations;
inode->i_mapping->a_ops = &ext3_aops; if (ext3_should_writeback_data(inode))
inode->i_mapping->a_ops = &ext3_writeback_aops;
else
inode->i_mapping->a_ops = &ext3_aops;
/* /*
* page_symlink() calls into ext3_prepare/commit_write. * page_symlink() calls into ext3_prepare/commit_write.
* We have a transaction open. All is sweetness. It also sets * We have a transaction open. All is sweetness. It also sets
......
...@@ -695,6 +695,7 @@ extern struct file_operations ext3_file_operations; ...@@ -695,6 +695,7 @@ extern struct file_operations ext3_file_operations;
/* inode.c */ /* inode.c */
extern struct address_space_operations ext3_aops; extern struct address_space_operations ext3_aops;
extern struct address_space_operations ext3_writeback_aops;
/* namei.c */ /* namei.c */
extern struct inode_operations ext3_dir_inode_operations; extern struct inode_operations ext3_dir_inode_operations;
......
...@@ -299,5 +299,10 @@ static inline int ext3_should_order_data(struct inode *inode) ...@@ -299,5 +299,10 @@ static inline int ext3_should_order_data(struct inode *inode)
return (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA); return (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA);
} }
static inline int ext3_should_writeback_data(struct inode *inode)
{
return !ext3_should_journal_data(inode) &&
!ext3_should_order_data(inode);
}
#endif /* _LINUX_EXT3_JBD_H */ #endif /* _LINUX_EXT3_JBD_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment