aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/9p/vfs_super.c')
-rw-r--r--fs/9p/vfs_super.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/fs/9p/vfs_super.c b/fs/9p/vfs_super.c
index f84d625b8790..3fdaeb3c6eda 100644
--- a/fs/9p/vfs_super.c
+++ b/fs/9p/vfs_super.c
@@ -293,6 +293,20 @@ static int v9fs_sync_fs(struct super_block *sb, int wait)
293 return p9_client_sync_fs(v9ses->root_fid); 293 return p9_client_sync_fs(v9ses->root_fid);
294} 294}
295 295
296static int v9fs_drop_inode(struct inode *inode)
297{
298 struct v9fs_session_info *v9ses;
299 v9ses = v9fs_inode2v9ses(inode);
300 if (v9ses->cache)
301 return generic_drop_inode(inode);
302 /*
303 * in case of non cached mode always drop the
304 * the inode because we want the inode attribute
305 * to always match that on the server.
306 */
307 return 1;
308}
309
296static const struct super_operations v9fs_super_ops = { 310static const struct super_operations v9fs_super_ops = {
297 .alloc_inode = v9fs_alloc_inode, 311 .alloc_inode = v9fs_alloc_inode,
298 .destroy_inode = v9fs_destroy_inode, 312 .destroy_inode = v9fs_destroy_inode,
@@ -307,6 +321,7 @@ static const struct super_operations v9fs_super_ops_dotl = {
307 .destroy_inode = v9fs_destroy_inode, 321 .destroy_inode = v9fs_destroy_inode,
308 .sync_fs = v9fs_sync_fs, 322 .sync_fs = v9fs_sync_fs,
309 .statfs = v9fs_statfs, 323 .statfs = v9fs_statfs,
324 .drop_inode = v9fs_drop_inode,
310 .evict_inode = v9fs_evict_inode, 325 .evict_inode = v9fs_evict_inode,
311 .show_options = generic_show_options, 326 .show_options = generic_show_options,
312 .umount_begin = v9fs_umount_begin, 327 .umount_begin = v9fs_umount_begin,