diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-16 18:15:46 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-03 22:52:45 -0400 |
commit | badcf2b7b816130a60152d9f5a06705176596925 (patch) | |
tree | c24fb50b663a0cd46b2da6fb0dc15ca0f03242d3 | |
parent | 8033426e6bdb2690d302872ac1e1fadaec1a5581 (diff) |
constify touch_atime()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/inode.c | 2 | ||||
-rw-r--r-- | include/linux/fs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/inode.c b/fs/inode.c index d6dfb09c828..93a0625b46e 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; diff --git a/include/linux/fs.h b/include/linux/fs.h index 981874773e8..65c9929cd34 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1804,7 +1804,7 @@ enum file_time_flags { S_VERSION = 8, }; -extern void touch_atime(struct path *); +extern void touch_atime(const struct path *); static inline void file_accessed(struct file *file) { if (!(file->f_flags & O_NOATIME)) |