aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4renewd.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/nfs4renewd.c')
-rw-r--r--fs/nfs/nfs4renewd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/fs/nfs/nfs4renewd.c b/fs/nfs/nfs4renewd.c
index f62c2f7a4ffb..5d764d8e6d8a 100644
--- a/fs/nfs/nfs4renewd.c
+++ b/fs/nfs/nfs4renewd.c
@@ -62,6 +62,7 @@ void
62nfs4_renew_state(void *data) 62nfs4_renew_state(void *data)
63{ 63{
64 struct nfs4_client *clp = (struct nfs4_client *)data; 64 struct nfs4_client *clp = (struct nfs4_client *)data;
65 struct rpc_cred *cred;
65 long lease, timeout; 66 long lease, timeout;
66 unsigned long last, now; 67 unsigned long last, now;
67 68
@@ -77,7 +78,8 @@ nfs4_renew_state(void *data)
77 timeout = (2 * lease) / 3 + (long)last - (long)now; 78 timeout = (2 * lease) / 3 + (long)last - (long)now;
78 /* Are we close to a lease timeout? */ 79 /* Are we close to a lease timeout? */
79 if (time_after(now, last + lease/3)) { 80 if (time_after(now, last + lease/3)) {
80 if (list_empty(&clp->cl_state_owners)) { 81 cred = nfs4_get_renew_cred(clp);
82 if (cred == NULL) {
81 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state); 83 set_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
82 spin_unlock(&clp->cl_lock); 84 spin_unlock(&clp->cl_lock);
83 nfs_expire_all_delegations(clp); 85 nfs_expire_all_delegations(clp);
@@ -85,7 +87,8 @@ nfs4_renew_state(void *data)
85 } 87 }
86 spin_unlock(&clp->cl_lock); 88 spin_unlock(&clp->cl_lock);
87 /* Queue an asynchronous RENEW. */ 89 /* Queue an asynchronous RENEW. */
88 nfs4_proc_async_renew(clp); 90 nfs4_proc_async_renew(clp, cred);
91 put_rpccred(cred);
89 timeout = (2 * lease) / 3; 92 timeout = (2 * lease) / 3;
90 spin_lock(&clp->cl_lock); 93 spin_lock(&clp->cl_lock);
91 } else 94 } else