diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-09 08:06:57 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:52:40 -0500 |
commit | 2a79f17e4a641a2f463cb512cb0ec349844a147b (patch) | |
tree | 8801127310d0a3492941bb284e83393844a19685 /fs/inode.c | |
parent | 8c9379e972e984d11c2b99121847ba9fa7a0c56c (diff) |
vfs: mnt_drop_write_file()
new helper (wrapper around mnt_drop_write()) to be used in pair with
mnt_want_write_file().
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/inode.c')
-rw-r--r-- | fs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c index ee4e66b998f4..4fda5ee85518 100644 --- a/fs/inode.c +++ b/fs/inode.c | |||
@@ -1508,7 +1508,7 @@ void file_update_time(struct file *file) | |||
1508 | if (sync_it & S_MTIME) | 1508 | if (sync_it & S_MTIME) |
1509 | inode->i_mtime = now; | 1509 | inode->i_mtime = now; |
1510 | mark_inode_dirty_sync(inode); | 1510 | mark_inode_dirty_sync(inode); |
1511 | mnt_drop_write(file->f_path.mnt); | 1511 | mnt_drop_write_file(file); |
1512 | } | 1512 | } |
1513 | EXPORT_SYMBOL(file_update_time); | 1513 | EXPORT_SYMBOL(file_update_time); |
1514 | 1514 | ||