mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 21:15:53 +02:00
This makes it easier to rebuild cifs.ko and ksmbd.ko against a running kernel. Suggested-by: Christoph Hellwig <hch@infradead.org> Link: https://lore.kernel.org/linux-cifs/aehrPuY60VMcYGU8@infradead.org/ 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: Christoph Hellwig <hch@infradead.org> Cc: linux-cifs@vger.kernel.org Cc: samba-technical@lists.samba.org Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Steve French <stfrench@microsoft.com>
68 lines
2.2 KiB
C
68 lines
2.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2017, Microsoft Corporation.
|
|
*
|
|
* Author(s): Long Li <longli@microsoft.com>
|
|
*/
|
|
#ifndef _SMBDIRECT_H
|
|
#define _SMBDIRECT_H
|
|
|
|
#ifdef CONFIG_CIFS_SMB_DIRECT
|
|
#define cifs_rdma_enabled(server) ((server)->rdma)
|
|
|
|
#include "cifsglob.h"
|
|
|
|
#include <linux/smbdirect.h>
|
|
|
|
extern int rdma_readwrite_threshold;
|
|
extern int smbd_max_frmr_depth;
|
|
extern int smbd_keep_alive_interval;
|
|
extern int smbd_max_receive_size;
|
|
extern int smbd_max_fragmented_recv_size;
|
|
extern int smbd_max_send_size;
|
|
extern int smbd_send_credit_target;
|
|
extern int smbd_receive_credit_max;
|
|
|
|
struct smbd_connection {
|
|
struct smbdirect_socket *socket;
|
|
};
|
|
|
|
/* Create a SMBDirect session */
|
|
struct smbd_connection *smbd_get_connection(
|
|
struct TCP_Server_Info *server, struct sockaddr *dstaddr);
|
|
|
|
const struct smbdirect_socket_parameters *smbd_get_parameters(struct smbd_connection *conn);
|
|
|
|
/* Reconnect SMBDirect session */
|
|
int smbd_reconnect(struct TCP_Server_Info *server);
|
|
/* Destroy SMBDirect session */
|
|
void smbd_destroy(struct TCP_Server_Info *server);
|
|
|
|
/* Interface for carrying upper layer I/O through send/recv */
|
|
int smbd_recv(struct smbd_connection *info, struct msghdr *msg);
|
|
int smbd_send(struct TCP_Server_Info *server,
|
|
int num_rqst, struct smb_rqst *rqst);
|
|
|
|
/* Interfaces to register and deregister MR for RDMA read/write */
|
|
struct smbdirect_mr_io *smbd_register_mr(
|
|
struct smbd_connection *info, struct iov_iter *iter,
|
|
bool writing, bool need_invalidate);
|
|
void smbd_mr_fill_buffer_descriptor(struct smbdirect_mr_io *mr,
|
|
struct smbdirect_buffer_descriptor_v1 *v1);
|
|
void smbd_deregister_mr(struct smbdirect_mr_io *mr);
|
|
|
|
void smbd_debug_proc_show(struct TCP_Server_Info *server, struct seq_file *m);
|
|
|
|
#else
|
|
#define cifs_rdma_enabled(server) 0
|
|
struct smbd_connection {};
|
|
static inline void *smbd_get_connection(
|
|
struct TCP_Server_Info *server, struct sockaddr *dstaddr) {return NULL;}
|
|
static inline int smbd_reconnect(struct TCP_Server_Info *server) {return -1; }
|
|
static inline void smbd_destroy(struct TCP_Server_Info *server) {}
|
|
static inline int smbd_recv(struct smbd_connection *info, struct msghdr *msg) {return -1; }
|
|
static inline int smbd_send(struct TCP_Server_Info *server, int num_rqst, struct smb_rqst *rqst) {return -1; }
|
|
#endif
|
|
|
|
#endif
|