aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-02-07 20:27:44 +1100
committerNathan Scott <nathans@sgi.com>2006-02-07 20:27:44 +1100
commit9bd6f13dfd1dfb2e8f20df50581ebe7344ba97bd (patch)
tree9c726f8831ade876012136a626e2e7e9ad052de4 /fs
parent[XFS] Account for the page we just wrote when we detect congestion during (diff)
downloadlinux-dev-9bd6f13dfd1dfb2e8f20df50581ebe7344ba97bd.tar.xz
linux-dev-9bd6f13dfd1dfb2e8f20df50581ebe7344ba97bd.zip
[XFS] Fix missing inode atime update from the utime syscall.
SGI-PV: 949214 SGI-Modid: xfs-linux-melb:xfs-kern:25136a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/linux-2.6/xfs_iops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c
index eda7919b70a1..d7f6f2d8ac8e 100644
--- a/fs/xfs/linux-2.6/xfs_iops.c
+++ b/fs/xfs/linux-2.6/xfs_iops.c
@@ -673,6 +673,8 @@ linvfs_setattr(
if (ia_valid & ATTR_ATIME) {
vattr.va_mask |= XFS_AT_ATIME;
vattr.va_atime = attr->ia_atime;
+ if (ia_valid & ATTR_ATIME_SET)
+ inode->i_atime = attr->ia_atime;
}
if (ia_valid & ATTR_MTIME) {
vattr.va_mask |= XFS_AT_MTIME;