smb: client: pass struct smbdirect_socket to smbd_post_send_negotiate_req()

This will make it easier to move function to the common code
in future.

Cc: Steve French <smfrench@gmail.com>
Cc: Tom Talpey <tom@talpey.com>
Cc: Long Li <longli@microsoft.com>
Cc: linux-cifs@vger.kernel.org
Cc: samba-technical@lists.samba.org
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
Stefan Metzmacher 2025-08-22 11:52:24 +02:00 committed by Steve French
parent 0a5dc5fc7c
commit c612e60de5

View File

@ -873,9 +873,8 @@ static int smbd_ia_open(
* After negotiation, the transport is connected and ready for
* carrying upper layer SMB payload
*/
static int smbd_post_send_negotiate_req(struct smbd_connection *info)
static int smbd_post_send_negotiate_req(struct smbdirect_socket *sc)
{
struct smbdirect_socket *sc = &info->socket;
struct smbdirect_socket_parameters *sp = &sc->parameters;
struct ib_send_wr send_wr;
int rc = -ENOMEM;
@ -1285,7 +1284,7 @@ static int smbd_negotiate(struct smbd_connection *info)
return rc;
}
rc = smbd_post_send_negotiate_req(info);
rc = smbd_post_send_negotiate_req(sc);
if (rc)
return rc;