pass writeback_control to ->write_inode
This gives the filesystem more information about the writeback that is happening. Trond requested this for the NFS unstable write handling, and other filesystems might benefit from this too by beeing able to distinguish between the different callers in more detail. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
committed by
Al Viro
parent
26821ed40b
commit
a9185b41a4
@ -381,10 +381,10 @@ static void queue_io(struct bdi_writeback *wb, unsigned long *older_than_this)
|
||||
move_expired_inodes(&wb->b_dirty, &wb->b_io, older_than_this);
|
||||
}
|
||||
|
||||
static int write_inode(struct inode *inode, int sync)
|
||||
static int write_inode(struct inode *inode, struct writeback_control *wbc)
|
||||
{
|
||||
if (inode->i_sb->s_op->write_inode && !is_bad_inode(inode))
|
||||
return inode->i_sb->s_op->write_inode(inode, sync);
|
||||
return inode->i_sb->s_op->write_inode(inode, wbc);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -421,7 +421,6 @@ static int
|
||||
writeback_single_inode(struct inode *inode, struct writeback_control *wbc)
|
||||
{
|
||||
struct address_space *mapping = inode->i_mapping;
|
||||
int wait = wbc->sync_mode == WB_SYNC_ALL;
|
||||
unsigned dirty;
|
||||
int ret;
|
||||
|
||||
@ -439,7 +438,7 @@ writeback_single_inode(struct inode *inode, struct writeback_control *wbc)
|
||||
* We'll have another go at writing back this inode when we
|
||||
* completed a full scan of b_io.
|
||||
*/
|
||||
if (!wait) {
|
||||
if (wbc->sync_mode != WB_SYNC_ALL) {
|
||||
requeue_io(inode);
|
||||
return 0;
|
||||
}
|
||||
@ -466,7 +465,7 @@ writeback_single_inode(struct inode *inode, struct writeback_control *wbc)
|
||||
* This is important for filesystems that modify metadata on data
|
||||
* I/O completion.
|
||||
*/
|
||||
if (wait) {
|
||||
if (wbc->sync_mode == WB_SYNC_ALL) {
|
||||
int err = filemap_fdatawait(mapping);
|
||||
if (ret == 0)
|
||||
ret = err;
|
||||
@ -474,7 +473,7 @@ writeback_single_inode(struct inode *inode, struct writeback_control *wbc)
|
||||
|
||||
/* Don't write the inode if only I_DIRTY_PAGES was set */
|
||||
if (dirty & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
|
||||
int err = write_inode(inode, wait);
|
||||
int err = write_inode(inode, wbc);
|
||||
if (ret == 0)
|
||||
ret = err;
|
||||
}
|
||||
|
Reference in New Issue
Block a user