mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
Add missing recording of back channel attrs in nfsd4_session
commit 5b6feee960
forgot
recording the back channel attrs in nfsd4_session.
nfsd just check the back channel attars by check_backchannel_attrs,
but do not record it in nfsd4_session in the latest kernel.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
dfeecc829e
commit
2ce02b6b6c
@ -999,6 +999,8 @@ static void init_session(struct svc_rqst *rqstp, struct nfsd4_session *new, stru
|
||||
spin_unlock(&nn->client_lock);
|
||||
memcpy(&new->se_fchannel, &cses->fore_channel,
|
||||
sizeof(struct nfsd4_channel_attrs));
|
||||
memcpy(&new->se_bchannel, &cses->back_channel,
|
||||
sizeof(struct nfsd4_channel_attrs));
|
||||
if (cses->flags & SESSION4_BACK_CHAN) {
|
||||
struct sockaddr *sa = svc_addr(rqstp);
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user