aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/xfs/linux-2.6/xfs_aops.c2
-rw-r--r--fs/xfs/linux-2.6/xfs_iops.c2
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c
index a44d68eb50b5..8fbc97df3609 100644
--- a/fs/xfs/linux-2.6/xfs_aops.c
+++ b/fs/xfs/linux-2.6/xfs_aops.c
@@ -191,7 +191,7 @@ xfs_setfilesize(
191 ip->i_d.di_size = isize; 191 ip->i_d.di_size = isize;
192 ip->i_update_core = 1; 192 ip->i_update_core = 1;
193 ip->i_update_size = 1; 193 ip->i_update_size = 1;
194 mark_inode_dirty_sync(ioend->io_inode); 194 xfs_mark_inode_dirty_sync(ip);
195 } 195 }
196 196
197 xfs_iunlock(ip, XFS_ILOCK_EXCL); 197 xfs_iunlock(ip, XFS_ILOCK_EXCL);
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c
index 095d271f3434..3bfb3c0f8e29 100644
--- a/fs/xfs/linux-2.6/xfs_iops.c
+++ b/fs/xfs/linux-2.6/xfs_iops.c
@@ -128,7 +128,7 @@ xfs_ichgtime(
128 if (sync_it) { 128 if (sync_it) {
129 SYNCHRONIZE(); 129 SYNCHRONIZE();
130 ip->i_update_core = 1; 130 ip->i_update_core = 1;
131 mark_inode_dirty_sync(inode); 131 xfs_mark_inode_dirty_sync(ip);
132 } 132 }
133} 133}
134 134
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index 15fb262ef868..b87e45577a58 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -948,7 +948,7 @@ xfs_fs_write_inode(
948 * it dirty again so we'll try again later. 948 * it dirty again so we'll try again later.
949 */ 949 */
950 if (error) 950 if (error)
951 mark_inode_dirty_sync(inode); 951 xfs_mark_inode_dirty_sync(XFS_I(inode));
952 952
953 return -error; 953 return -error;
954} 954}