From: Olga Kornievskaia Date: Wed, 24 Sep 2014 22:11:28 +0000 (-0400) Subject: Fixing lease renewal X-Git-Tag: submit/tizen/20160422.055611~1^2~99^2~18^2~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e95348cdac055cf0ba87af0212bab78ab5964bb;p=sdk%2Femulator%2Femulator-kernel.git Fixing lease renewal commit 8faaa6d5d48b201527e0451296d9e71d23afb362 upstream. Commit c9fdeb28 removed a 'continue' after checking if the lease needs to be renewed. However, if client hasn't moved, the code falls down to starting reboot recovery erroneously (ie., sends open reclaim and gets back stale_clientid error) before recovering from getting stale_clientid on the renew operation. Signed-off-by: Olga Kornievskaia Fixes: c9fdeb280b8c (NFS: Add basic migration support to state manager thread) Signed-off-by: Trond Myklebust Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 27f5f858502b..c5bf96d7f70d 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -2370,6 +2370,7 @@ static void nfs4_state_manager(struct nfs_client *clp) status = nfs4_check_lease(clp); if (status < 0) goto out_error; + continue; } if (test_and_clear_bit(NFS4CLNT_MOVED, &clp->cl_state)) {