This will be used by client and server until we reach
the point where we have only public function from
an smbdirect.ko.
Cc: Steve French <smfrench@gmail.com>
Cc: Tom Talpey <tom@talpey.com>
Cc: Long Li <longli@microsoft.com>
Cc: Namjae Jeon <linkinjeon@kernel.org>
Cc: linux-cifs@vger.kernel.org
Cc: samba-technical@lists.samba.org
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
*/
#include "smbdirect_internal.h"
+
+__maybe_unused /* this is temporary while this file is included in others */
+static void smbdirect_socket_prepare_create(struct smbdirect_socket *sc,
+ const struct smbdirect_socket_parameters *sp,
+ struct workqueue_struct *workqueue)
+{
+ smbdirect_socket_init(sc);
+
+ /*
+ * Make a copy of the callers parameters
+ * from here we only work on the copy
+ */
+ sc->parameters = *sp;
+
+ /*
+ * Remember the callers workqueue
+ */
+ sc->workqueue = workqueue;
+}