diff options
Diffstat (limited to 'fs/9p/vfs_inode.c')
-rw-r--r-- | fs/9p/vfs_inode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index 2555776920ad..8a2c232f708a 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c | |||
@@ -999,6 +999,10 @@ static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr) | |||
999 | if (retval) | 999 | if (retval) |
1000 | return retval; | 1000 | return retval; |
1001 | } | 1001 | } |
1002 | /* Write all dirty data */ | ||
1003 | if (S_ISREG(dentry->d_inode->i_mode)) | ||
1004 | filemap_write_and_wait(dentry->d_inode->i_mapping); | ||
1005 | |||
1002 | retval = p9_client_wstat(fid, &wstat); | 1006 | retval = p9_client_wstat(fid, &wstat); |
1003 | if (retval < 0) | 1007 | if (retval < 0) |
1004 | return retval; | 1008 | return retval; |