diff options
author | Lachlan McIlroy <lachlan@sgi.com> | 2007-09-14 05:22:50 (GMT) |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-09-18 10:12:51 (GMT) |
commit | 776a75fa5cfb8f3602d3ca9d221dc34497133f4b (patch) | |
tree | 760e34fa2e426e740cd50deab16ca80f9a3e483b /fs/xfs/linux-2.6/xfs_aops.c | |
parent | 65de5567564e70edd01b6d4e95e548d7ba284872 (diff) | |
download | linux-776a75fa5cfb8f3602d3ca9d221dc34497133f4b.tar.xz |
[XFS] Ensure file size updates have been completed before writing inode to disk.
SGI-PV: 968767
SGI-Modid: xfs-linux-melb:xfs-kern:29675a
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_aops.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_aops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c index d9c40fe..5f152f6 100644 --- a/fs/xfs/linux-2.6/xfs_aops.c +++ b/fs/xfs/linux-2.6/xfs_aops.c @@ -181,6 +181,7 @@ xfs_setfilesize( ip->i_d.di_size = isize; ip->i_update_core = 1; ip->i_update_size = 1; + mark_inode_dirty_sync(vn_to_inode(ioend->io_vnode)); } xfs_iunlock(ip, XFS_ILOCK_EXCL); |