]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
NFSv4: Return the delegation before returning the layout in evict_inode()
authorTrond Myklebust <trond.myklebust@primarydata.com>
Wed, 25 Mar 2015 17:26:18 +0000 (13:26 -0400)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Fri, 27 Mar 2015 16:39:35 +0000 (12:39 -0400)
Minor optimisation for the case where the layout has return-on-close
enabled.

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
fs/nfs/nfs4super.c

index 75090feeafade9c790bb4bf0d84c8546a46819a0..d91898193b2f683a12d4cd0efcd6303652aec2fd 100644 (file)
@@ -91,10 +91,11 @@ static void nfs4_evict_inode(struct inode *inode)
 {
        truncate_inode_pages_final(&inode->i_data);
        clear_inode(inode);
-       pnfs_return_layout(inode);
-       pnfs_destroy_layout(NFS_I(inode));
        /* If we are holding a delegation, return it! */
        nfs_inode_return_delegation_noreclaim(inode);
+       /* Note that above delegreturn would trigger pnfs return-on-close */
+       pnfs_return_layout(inode);
+       pnfs_destroy_layout(NFS_I(inode));
        /* First call standard NFS clear_inode() code */
        nfs_clear_inode(inode);
 }