aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_inode.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-11-13 01:34:18 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-13 01:34:18 -0500
commit9bc9ccd7db1c9f043f75380b5a5b94912046a60e (patch)
treedd0a1b3396ae9414f668b0110cc39d11268ad3ed /fs/9p/vfs_inode.c
parentf0230294271f511b41797305b685365a9e569a09 (diff)
parentbdd3536618443809d18868563eeafa63b9d29603 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull vfs updates from Al Viro: "All kinds of stuff this time around; some more notable parts: - RCU'd vfsmounts handling - new primitives for coredump handling - files_lock is gone - Bruce's delegations handling series - exportfs fixes plus misc stuff all over the place" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (101 commits) ecryptfs: ->f_op is never NULL locks: break delegations on any attribute modification locks: break delegations on link locks: break delegations on rename locks: helper functions for delegation breaking locks: break delegations on unlink namei: minor vfs_unlink cleanup locks: implement delegations locks: introduce new FL_DELEG lock flag vfs: take i_mutex on renamed file vfs: rename I_MUTEX_QUOTA now that it's not used for quotas vfs: don't use PARENT/CHILD lock classes for non-directories vfs: pull ext4's double-i_mutex-locking into common code exportfs: fix quadratic behavior in filehandle lookup exportfs: better variable name exportfs: move most of reconnect_path to helper function exportfs: eliminate unused "noprogress" counter exportfs: stop retrying once we race with rename/remove exportfs: clear DISCONNECTED on all parents sooner exportfs: more detailed comment for path_reconnect ...
Diffstat (limited to 'fs/9p/vfs_inode.c')
-rw-r--r--fs/9p/vfs_inode.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
index 94de6d1482e2..4e65aa903345 100644
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -448,9 +448,7 @@ void v9fs_evict_inode(struct inode *inode)
448 clear_inode(inode); 448 clear_inode(inode);
449 filemap_fdatawrite(inode->i_mapping); 449 filemap_fdatawrite(inode->i_mapping);
450 450
451#ifdef CONFIG_9P_FSCACHE
452 v9fs_cache_inode_put_cookie(inode); 451 v9fs_cache_inode_put_cookie(inode);
453#endif
454 /* clunk the fid stashed in writeback_fid */ 452 /* clunk the fid stashed in writeback_fid */
455 if (v9inode->writeback_fid) { 453 if (v9inode->writeback_fid) {
456 p9_client_clunk(v9inode->writeback_fid); 454 p9_client_clunk(v9inode->writeback_fid);
@@ -531,9 +529,7 @@ static struct inode *v9fs_qid_iget(struct super_block *sb,
531 goto error; 529 goto error;
532 530
533 v9fs_stat2inode(st, inode, sb); 531 v9fs_stat2inode(st, inode, sb);
534#ifdef CONFIG_9P_FSCACHE
535 v9fs_cache_inode_get_cookie(inode); 532 v9fs_cache_inode_get_cookie(inode);
536#endif
537 unlock_new_inode(inode); 533 unlock_new_inode(inode);
538 return inode; 534 return inode;
539error: 535error:
@@ -905,10 +901,8 @@ v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
905 goto error; 901 goto error;
906 902
907 file->private_data = fid; 903 file->private_data = fid;
908#ifdef CONFIG_9P_FSCACHE
909 if (v9ses->cache) 904 if (v9ses->cache)
910 v9fs_cache_inode_set_cookie(dentry->d_inode, file); 905 v9fs_cache_inode_set_cookie(dentry->d_inode, file);
911#endif
912 906
913 *opened |= FILE_CREATED; 907 *opened |= FILE_CREATED;
914out: 908out: