summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAl Viro2013-07-16 16:15:46 +0200
committerAl Viro2013-09-04 04:52:45 +0200
commitbadcf2b7b816130a60152d9f5a06705176596925 (patch)
treec24fb50b663a0cd46b2da6fb0dc15ca0f03242d3 /fs
parentvfs: allow umount to handle mountpoints without revalidating them (diff)
downloadkernel-qcow2-linux-badcf2b7b816130a60152d9f5a06705176596925.tar.gz
kernel-qcow2-linux-badcf2b7b816130a60152d9f5a06705176596925.tar.xz
kernel-qcow2-linux-badcf2b7b816130a60152d9f5a06705176596925.zip
constify touch_atime()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c
index d6dfb09c8280..93a0625b46e4 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1525,7 +1525,7 @@ static int update_time(struct inode *inode, struct timespec *time, int flags)
* This function automatically handles read only file systems and media,
* as well as the "noatime" flag and inode specific "noatime" markers.
*/
-void touch_atime(struct path *path)
+void touch_atime(const struct path *path)
{
struct vfsmount *mnt = path->mnt;
struct inode *inode = path->dentry->d_inode;