mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
NFSv41: Fix nfs4_proc_create_session
We should not assume that nfs41_init_clientid() will always want to initialise the session. If it is being called due to a server reboot, then we just want to reset the session after re-establishing the clientid. Fix this by getting rid of the 'reset' parameter in nfs4_proc_create_session(), and instead relying on whether or not the session slot table pointer is non-NULL. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
da6ebfe34a
commit
f26468fb93
3 changed files with 27 additions and 39 deletions
|
@ -123,7 +123,7 @@ int nfs41_init_clientid(struct nfs_client *clp, struct rpc_cred *cred)
|
|||
status = nfs4_proc_exchange_id(clp, cred);
|
||||
if (status == 0)
|
||||
/* create session schedules state renewal upon success */
|
||||
status = nfs4_proc_create_session(clp, 0);
|
||||
status = nfs4_proc_create_session(clp);
|
||||
if (status == 0)
|
||||
nfs_mark_client_ready(clp, NFS_CS_READY);
|
||||
return status;
|
||||
|
@ -1240,7 +1240,7 @@ static int nfs4_reset_session(struct nfs_client *clp)
|
|||
}
|
||||
|
||||
memset(clp->cl_session->sess_id.data, 0, NFS4_MAX_SESSIONID_LEN);
|
||||
status = nfs4_proc_create_session(clp, 1);
|
||||
status = nfs4_proc_create_session(clp);
|
||||
if (status)
|
||||
nfs4_session_recovery_handle_error(clp, status);
|
||||
/* fall through*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue