aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
authorDeepa Dinamani <deepa.kernel@gmail.com>2016-09-14 10:48:06 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-09-27 21:06:22 -0400
commitc2050a454c7f123d7a57fa1d76ff61bd43643abb (patch)
tree6f45ffffaf10f2534a38bfa28efb70ec24026a8d /fs/inode.c
parent02027d42c3f747945f19111d3da2092ed2148ac8 (diff)
fs: Replace current_fs_time() with current_time()
current_fs_time() uses struct super_block* as an argument. As per Linus's suggestion, this is changed to take struct inode* as a parameter instead. This is because the function is primarily meant for vfs inode timestamps. Also the function was renamed as per Arnd's suggestion. Change all calls to current_fs_time() to use the new current_time() function instead. current_fs_time() will be deleted. Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/inode.c b/fs/inode.c
index 2172d0f77011..cadf75fb579e 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1636,7 +1636,7 @@ bool atime_needs_update(const struct path *path, struct inode *inode)
1636 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)) 1636 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
1637 return false; 1637 return false;
1638 1638
1639 now = current_fs_time(inode->i_sb); 1639 now = current_time(inode);
1640 1640
1641 if (!relatime_need_update(mnt, inode, now)) 1641 if (!relatime_need_update(mnt, inode, now))
1642 return false; 1642 return false;
@@ -1670,7 +1670,7 @@ void touch_atime(const struct path *path)
1670 * We may also fail on filesystems that have the ability to make parts 1670 * We may also fail on filesystems that have the ability to make parts
1671 * of the fs read only, e.g. subvolumes in Btrfs. 1671 * of the fs read only, e.g. subvolumes in Btrfs.
1672 */ 1672 */
1673 now = current_fs_time(inode->i_sb); 1673 now = current_time(inode);
1674 update_time(inode, &now, S_ATIME); 1674 update_time(inode, &now, S_ATIME);
1675 __mnt_drop_write(mnt); 1675 __mnt_drop_write(mnt);
1676skip_update: 1676skip_update:
@@ -1793,7 +1793,7 @@ int file_update_time(struct file *file)
1793 if (IS_NOCMTIME(inode)) 1793 if (IS_NOCMTIME(inode))
1794 return 0; 1794 return 0;
1795 1795
1796 now = current_fs_time(inode->i_sb); 1796 now = current_time(inode);
1797 if (!timespec_equal(&inode->i_mtime, &now)) 1797 if (!timespec_equal(&inode->i_mtime, &now))
1798 sync_it = S_MTIME; 1798 sync_it = S_MTIME;
1799 1799