[PATCH] smb: client: let smbd_destroy() wait for SMBDIRECT_SOCKET_DISCONNECTED
Steve French
smfrench at gmail.com
Wed Oct 15 16:24:23 UTC 2025
merged into cifs-2.6.git for-next pending more review and testing
On Wed, Oct 15, 2025 at 10:05 AM Stefan Metzmacher <metze at samba.org> wrote:
>
> We should wait for the rdma_cm to become SMBDIRECT_SOCKET_DISCONNECTED,
> it turns out that (at least running some xfstests e.g. cifs/001)
> often triggers the case where wait_event_interruptible() returns
> with -ERESTARTSYS instead of waiting for SMBDIRECT_SOCKET_DISCONNECTED
> to be reached.
>
> Or we are already in SMBDIRECT_SOCKET_DISCONNECTING and never wait
> for SMBDIRECT_SOCKET_DISCONNECTED.
>
> Fixes: 050b8c374019 ("smbd: Make upper layer decide when to destroy the transport")
> Fixes: e8b3bfe9bc65 ("cifs: smbd: Don't destroy transport on RDMA disconnect")
> Fixes: b0aa92a229ab ("smb: client: make sure smbd_disconnect_rdma_work() doesn't run after smbd_destroy() took over")
> Cc: Steve French <smfrench at gmail.com>
> Cc: Tom Talpey <tom at talpey.com>
> Cc: Long Li <longli at microsoft.com>
> Cc: Namjae Jeon <linkinjeon at kernel.org>
> Cc: linux-cifs at vger.kernel.org
> Cc: samba-technical at lists.samba.org
> Signed-off-by: Stefan Metzmacher <metze at samba.org>
> ---
> fs/smb/client/smbdirect.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/fs/smb/client/smbdirect.c b/fs/smb/client/smbdirect.c
> index 77de85d7cdc3..49e2df3ad1f0 100644
> --- a/fs/smb/client/smbdirect.c
> +++ b/fs/smb/client/smbdirect.c
> @@ -1575,12 +1575,12 @@ void smbd_destroy(struct TCP_Server_Info *server)
> disable_work_sync(&sc->disconnect_work);
>
> log_rdma_event(INFO, "destroying rdma session\n");
> - if (sc->status < SMBDIRECT_SOCKET_DISCONNECTING) {
> + if (sc->status < SMBDIRECT_SOCKET_DISCONNECTING)
> smbd_disconnect_rdma_work(&sc->disconnect_work);
> + if (sc->status < SMBDIRECT_SOCKET_DISCONNECTED) {
> log_rdma_event(INFO, "wait for transport being disconnected\n");
> - wait_event_interruptible(
> - sc->status_wait,
> - sc->status == SMBDIRECT_SOCKET_DISCONNECTED);
> + wait_event(sc->status_wait, sc->status == SMBDIRECT_SOCKET_DISCONNECTED);
> + log_rdma_event(INFO, "waited for transport being disconnected\n");
> }
>
> /*
> --
> 2.43.0
>
--
Thanks,
Steve
More information about the samba-technical
mailing list