aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-03-15 08:21:57 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-03-20 21:29:41 -0400
commit68ac1234fb949b66941d94dce4157742799fc581 (patch)
tree04059b7dbaed92d672b8ceef1fcf25c6185e06f8 /fs/inode.c
parent40ffe67d2e89c7a475421d007becc11a2f88ea3d (diff)
switch touch_atime to struct path
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/inode.c b/fs/inode.c
index 92de04b0baa2..8b612813a6a7 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1499,9 +1499,10 @@ static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1499 * This function automatically handles read only file systems and media, 1499 * This function automatically handles read only file systems and media,
1500 * as well as the "noatime" flag and inode specific "noatime" markers. 1500 * as well as the "noatime" flag and inode specific "noatime" markers.
1501 */ 1501 */
1502void touch_atime(struct vfsmount *mnt, struct dentry *dentry) 1502void touch_atime(struct path *path)
1503{ 1503{
1504 struct inode *inode = dentry->d_inode; 1504 struct vfsmount *mnt = path->mnt;
1505 struct inode *inode = path->dentry->d_inode;
1505 struct timespec now; 1506 struct timespec now;
1506 1507
1507 if (inode->i_flags & S_NOATIME) 1508 if (inode->i_flags & S_NOATIME)