diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2020-04-21 12:37:39 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-04-21 09:57:56 -0500 |
commit | fada37f6f62995cc449b36ebba1220594bfe55fe (patch) | |
tree | 6fac556247de3c9ed0dd6bba0a609b3f401aabc4 /fs/cifs | |
parent | ae83d0b416db002fe95601e7f97f64b59514d936 (diff) | |
download | linux-fada37f6f62995cc449b36ebba1220594bfe55fe.tar.bz2 |
cifs: protect updating server->dstaddr with a spinlock
We use a spinlock while we are reading and accessing the destination address for a server.
We need to also use this spinlock to protect when we are modifying this address from
reconn_set_ipaddr().
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/connect.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 95b3ab0ca8c0..63830f228b4a 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -375,8 +375,10 @@ static int reconn_set_ipaddr(struct TCP_Server_Info *server) return rc; } + spin_lock(&cifs_tcp_ses_lock); rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr, strlen(ipaddr)); + spin_unlock(&cifs_tcp_ses_lock); kfree(ipaddr); return !rc ? -1 : 0; |