aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/inode.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c
index 6f6250c08ce6..27ee1af50d02 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -1250,10 +1250,13 @@ void file_update_time(struct file *file)
1250 struct inode *inode = file->f_path.dentry->d_inode; 1250 struct inode *inode = file->f_path.dentry->d_inode;
1251 struct timespec now; 1251 struct timespec now;
1252 int sync_it = 0; 1252 int sync_it = 0;
1253 int err;
1253 1254
1254 if (IS_NOCMTIME(inode)) 1255 if (IS_NOCMTIME(inode))
1255 return; 1256 return;
1256 if (IS_RDONLY(inode)) 1257
1258 err = mnt_want_write(file->f_path.mnt);
1259 if (err)
1257 return; 1260 return;
1258 1261
1259 now = current_fs_time(inode->i_sb); 1262 now = current_fs_time(inode->i_sb);
@@ -1274,6 +1277,7 @@ void file_update_time(struct file *file)
1274 1277
1275 if (sync_it) 1278 if (sync_it)
1276 mark_inode_dirty_sync(inode); 1279 mark_inode_dirty_sync(inode);
1280 mnt_drop_write(file->f_path.mnt);
1277} 1281}
1278 1282
1279EXPORT_SYMBOL(file_update_time); 1283EXPORT_SYMBOL(file_update_time);