cifs: reschedule periodic query for server interfaces
authorShyam Prasad N <sprasad@microsoft.com>
Wed, 3 Jan 2024 08:36:22 +0000 (08:36 +0000)
committerSteve French <stfrench@microsoft.com>
Fri, 19 Jan 2024 16:31:54 +0000 (10:31 -0600)
Today, we schedule periodic query for server interfaces
once every 10 minutes once a tree connection has been
established. Recent change to handle disabling of
multichannel disabled this delayed work.

This change reenables it following a reconnect, and
the server advertises multichannel.

Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/smb2pdu.c

index ec39dfbc315417fafd189d8dc3fc5c44e3d6a993..88c60187593f9381b7dd989174008ea0ec70c362 100644 (file)
@@ -405,6 +405,8 @@ skip_sess_setup:
                                cifs_server_dbg(VFS, "supports multichannel now\n");
 
                        cifs_try_adding_channels(ses);
+                       queue_delayed_work(cifsiod_wq, &tcon->query_interfaces,
+                                          (SMB_INTERFACE_POLL_INTERVAL * HZ));
                }
        } else {
                mutex_unlock(&ses->session_mutex);