diff options
author | Aurelien Aptel <aaptel@suse.com> | 2019-09-20 06:22:14 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2019-11-25 08:16:30 +0100 |
commit | f6a6bf7c4d53837767125e635e7d7d0dc48ee59e (patch) | |
tree | de39238ea6e7e483515f744a97c05e70decb7b9c /fs/cifs/cifs_spnego.c | |
parent | cifs: add server param (diff) | |
download | linux-f6a6bf7c4d53837767125e635e7d7d0dc48ee59e.tar.xz linux-f6a6bf7c4d53837767125e635e7d7d0dc48ee59e.zip |
cifs: switch servers depending on binding state
Currently a lot of the code to initialize a connection & session uses
the cifs_ses as input. But depending on if we are opening a new session
or a new channel we need to use different server pointers.
Add a "binding" flag in cifs_ses and a helper function that returns
the server ptr a session should use (only in the sess establishment
code path).
Signed-off-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/cifs_spnego.c')
-rw-r--r-- | fs/cifs/cifs_spnego.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifs_spnego.c b/fs/cifs/cifs_spnego.c index 7f01c6e60791..7b9b876b513b 100644 --- a/fs/cifs/cifs_spnego.c +++ b/fs/cifs/cifs_spnego.c @@ -98,7 +98,7 @@ struct key_type cifs_spnego_key_type = { struct key * cifs_get_spnego_key(struct cifs_ses *sesInfo) { - struct TCP_Server_Info *server = sesInfo->server; + struct TCP_Server_Info *server = cifs_ses_server(sesInfo); struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr; struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr; char *description, *dp; |