aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/inode.c b/fs/inode.c
index 775cbabd4fa5..006c85ca06eb 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1660,11 +1660,11 @@ int file_update_time(struct file *file)
1660 return 0; 1660 return 0;
1661 1661
1662 /* Finally allowed to write? Takes lock. */ 1662 /* Finally allowed to write? Takes lock. */
1663 if (mnt_want_write_file(file)) 1663 if (__mnt_want_write_file(file))
1664 return 0; 1664 return 0;
1665 1665
1666 ret = update_time(inode, &now, sync_it); 1666 ret = update_time(inode, &now, sync_it);
1667 mnt_drop_write_file(file); 1667 __mnt_drop_write_file(file);
1668 1668
1669 return ret; 1669 return ret;
1670} 1670}