]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
cifs: make cifs_chan_update_iface() a void function
authorDan Carpenter <dan.carpenter@linaro.org>
Mon, 8 Jan 2024 09:08:29 +0000 (12:08 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Apr 2024 13:28:34 +0000 (15:28 +0200)
[ Upstream commit 8d606c311b75e81063b4ea650b301cbe0c4ed5e1 ]

The return values for cifs_chan_update_iface() didn't match what the
documentation said and nothing was checking them anyway.  Just make it
a void function.

Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Stable-dep-of: 16a57d768111 ("cifs: reduce warning log level for server not advertising interfaces")
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/smb/client/cifsproto.h
fs/smb/client/sess.c

index 0cff4f5af179317f088ef9a0f4484cb68fdb5582..ed257612bf0bc1314f4aa11a3ad349f06c0ff0a9 100644 (file)
@@ -654,7 +654,7 @@ cifs_chan_is_iface_active(struct cifs_ses *ses,
                          struct TCP_Server_Info *server);
 void
 cifs_disable_secondary_channels(struct cifs_ses *ses);
-int
+void
 cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server);
 int
 SMB3_request_interfaces(const unsigned int xid, struct cifs_tcon *tcon, bool in_mount);
index 8dadb21292d16e7c7eacafc9f1918479ee86b6e6..16554216f2f95673d0f061eedf791aa018f9683e 100644 (file)
@@ -355,10 +355,9 @@ done:
 
 /*
  * update the iface for the channel if necessary.
- * will return 0 when iface is updated, 1 if removed, 2 otherwise
  * Must be called with chan_lock held.
  */
-int
+void
 cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
 {
        unsigned int chan_index;
@@ -367,20 +366,19 @@ cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
        struct cifs_server_iface *old_iface = NULL;
        struct cifs_server_iface *last_iface = NULL;
        struct sockaddr_storage ss;
-       int rc = 0;
 
        spin_lock(&ses->chan_lock);
        chan_index = cifs_ses_get_chan_index(ses, server);
        if (chan_index == CIFS_INVAL_CHAN_INDEX) {
                spin_unlock(&ses->chan_lock);
-               return 0;
+               return;
        }
 
        if (ses->chans[chan_index].iface) {
                old_iface = ses->chans[chan_index].iface;
                if (old_iface->is_active) {
                        spin_unlock(&ses->chan_lock);
-                       return 1;
+                       return;
                }
        }
        spin_unlock(&ses->chan_lock);
@@ -393,7 +391,7 @@ cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
        if (!ses->iface_count) {
                spin_unlock(&ses->iface_lock);
                cifs_dbg(VFS, "server %s does not advertise interfaces\n", ses->server->hostname);
-               return 0;
+               return;
        }
 
        last_iface = list_last_entry(&ses->iface_list, struct cifs_server_iface,
@@ -433,7 +431,6 @@ cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
        }
 
        if (list_entry_is_head(iface, &ses->iface_list, iface_head)) {
-               rc = 1;
                iface = NULL;
                cifs_dbg(FYI, "unable to find a suitable iface\n");
        }
@@ -442,7 +439,7 @@ cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
                cifs_dbg(FYI, "unable to get the interface matching: %pIS\n",
                         &ss);
                spin_unlock(&ses->iface_lock);
-               return 0;
+               return;
        }
 
        /* now drop the ref to the current iface */
@@ -475,13 +472,13 @@ cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
        chan_index = cifs_ses_get_chan_index(ses, server);
        if (chan_index == CIFS_INVAL_CHAN_INDEX) {
                spin_unlock(&ses->chan_lock);
-               return 0;
+               return;
        }
 
        ses->chans[chan_index].iface = iface;
        spin_unlock(&ses->chan_lock);
 
-       return rc;
+       return;
 }
 
 /*