aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_super.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2010-04-20 17:00:59 +1000
committerAlex Elder <aelder@sgi.com>2010-05-19 09:58:14 -0500
commit37bc5743fdc29f60fb104cd9031babbabddff25a (patch)
treeabbcde46a9741a40a0ced8d1f289f6af65725d15 /fs/xfs/linux-2.6/xfs_super.c
parentfce1cad651e3cf2779ed8f9e6608daf50d29daaf (diff)
downloadkernel_samsung_tuna-37bc5743fdc29f60fb104cd9031babbabddff25a.zip
kernel_samsung_tuna-37bc5743fdc29f60fb104cd9031babbabddff25a.tar.gz
kernel_samsung_tuna-37bc5743fdc29f60fb104cd9031babbabddff25a.tar.bz2
xfs: wait for direct I/O to complete in fsync and write_inode
We need to wait for all pending direct I/O requests before taking care of metadata in fsync and write_inode. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index e8ad6dd..e900251 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -1093,6 +1093,7 @@ xfs_fs_write_inode(
* the code will only flush the inode if it isn't already
* being flushed.
*/
+ xfs_ioend_wait(ip);
xfs_ilock(ip, XFS_ILOCK_SHARED);
if (ip->i_update_core) {
error = xfs_log_inode(ip);