connect.c (3fea12f3c67de30fd2e6a3f5da2b5354aa22348e) connect.c (946ad1b8b18dd91804e2dbfd9a9cefb6a8196bc0)
1// SPDX-License-Identifier: LGPL-2.1
2/*
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2011
5 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 */
8#include <linux/fs.h>

--- 897 unchanged lines hidden (view full) ---

906 }
907
908 if (cifs_rdma_enabled(server) && server->sign)
909 cifs_dbg(VFS, "Signing is enabled, and RDMA read/write will be disabled\n");
910
911 return 0;
912}
913
1// SPDX-License-Identifier: LGPL-2.1
2/*
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2011
5 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 */
8#include <linux/fs.h>

--- 897 unchanged lines hidden (view full) ---

906 }
907
908 if (cifs_rdma_enabled(server) && server->sign)
909 cifs_dbg(VFS, "Signing is enabled, and RDMA read/write will be disabled\n");
910
911 return 0;
912}
913
914
915static void clean_demultiplex_info(struct TCP_Server_Info *server)
914static noinline_for_stack void
915clean_demultiplex_info(struct TCP_Server_Info *server)
916{
917 int length;
918
919 /* take it off the list, if it's not already */
920 spin_lock(&server->srv_lock);
921 list_del_init(&server->tcp_ses_list);
922 spin_unlock(&server->srv_lock);
923

--- 3280 unchanged lines hidden ---
916{
917 int length;
918
919 /* take it off the list, if it's not already */
920 spin_lock(&server->srv_lock);
921 list_del_init(&server->tcp_ses_list);
922 spin_unlock(&server->srv_lock);
923

--- 3280 unchanged lines hidden ---