summaryrefslogtreecommitdiffstats
path: root/fs/nfs/delegation.c
diff options
context:
space:
mode:
authorTrond Myklebust2015-04-23 21:16:27 +0200
committerTrond Myklebust2015-04-23 21:16:27 +0200
commit21330b667070fd64b2340d8d31c1b0800df78ec8 (patch)
tree9f13170097e7041603881d18b4a6000535a8c6fc /fs/nfs/delegation.c
parentfs/nfs: fix new compiler warning about boolean in switch (diff)
parentNFSv4: Return delegations synchronously in evict_inode (diff)
downloadkernel-qcow2-linux-21330b667070fd64b2340d8d31c1b0800df78ec8.tar.gz
kernel-qcow2-linux-21330b667070fd64b2340d8d31c1b0800df78ec8.tar.xz
kernel-qcow2-linux-21330b667070fd64b2340d8d31c1b0800df78ec8.zip
Merge branch 'bugfixes'
* bugfixes: NFSv4: Return delegations synchronously in evict_inode SUNRPC: Fix a regression when reconnecting NFS: remount with security change should return EINVAL nfs: do not export discarded symbols NFSv4.1: don't export static symbol
Diffstat (limited to 'fs/nfs/delegation.c')
-rw-r--r--fs/nfs/delegation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c
index 540ee260318c..029d688a969f 100644
--- a/fs/nfs/delegation.c
+++ b/fs/nfs/delegation.c
@@ -514,7 +514,7 @@ void nfs_inode_return_delegation_noreclaim(struct inode *inode)
delegation = nfs_inode_detach_delegation(inode);
if (delegation != NULL)
- nfs_do_return_delegation(inode, delegation, 0);
+ nfs_do_return_delegation(inode, delegation, 1);
}
/**