mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 13:46:24 +00:00
f58851e6b0
This implements the configuration and building of the core transport switch implementation of the rpcrdma transport. Stubs are provided for the rpcrdma protocol handling, and the infiniband/iwarp verbs interface. These are provided in following patches. Signed-off-by: Tom Talpey <talpey@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
37 lines
1.7 KiB
C
37 lines
1.7 KiB
C
/*
|
|
* Placeholders for subsequent patches
|
|
*/
|
|
|
|
#include "xprt_rdma.h"
|
|
|
|
int rpcrdma_ia_open(struct rpcrdma_xprt *a, struct sockaddr *b, int c)
|
|
{ return EINVAL; }
|
|
void rpcrdma_ia_close(struct rpcrdma_ia *a) { }
|
|
int rpcrdma_ep_create(struct rpcrdma_ep *a, struct rpcrdma_ia *b,
|
|
struct rpcrdma_create_data_internal *c) { return EINVAL; }
|
|
int rpcrdma_ep_destroy(struct rpcrdma_ep *a, struct rpcrdma_ia *b)
|
|
{ return EINVAL; }
|
|
int rpcrdma_ep_connect(struct rpcrdma_ep *a, struct rpcrdma_ia *b)
|
|
{ return EINVAL; }
|
|
int rpcrdma_ep_disconnect(struct rpcrdma_ep *a, struct rpcrdma_ia *b)
|
|
{ return EINVAL; }
|
|
int rpcrdma_ep_post(struct rpcrdma_ia *a, struct rpcrdma_ep *b,
|
|
struct rpcrdma_req *c) { return EINVAL; }
|
|
int rpcrdma_ep_post_recv(struct rpcrdma_ia *a, struct rpcrdma_ep *b,
|
|
struct rpcrdma_rep *c) { return EINVAL; }
|
|
int rpcrdma_buffer_create(struct rpcrdma_buffer *a, struct rpcrdma_ep *b,
|
|
struct rpcrdma_ia *c, struct rpcrdma_create_data_internal *d) { return EINVAL; }
|
|
void rpcrdma_buffer_destroy(struct rpcrdma_buffer *a) { }
|
|
struct rpcrdma_req *rpcrdma_buffer_get(struct rpcrdma_buffer *a)
|
|
{ return NULL; }
|
|
void rpcrdma_buffer_put(struct rpcrdma_req *a) { }
|
|
void rpcrdma_recv_buffer_get(struct rpcrdma_req *a) { }
|
|
void rpcrdma_recv_buffer_put(struct rpcrdma_rep *a) { }
|
|
int rpcrdma_register_internal(struct rpcrdma_ia *a, void *b, int c,
|
|
struct ib_mr **d, struct ib_sge *e) { return EINVAL; }
|
|
int rpcrdma_deregister_internal(struct rpcrdma_ia *a, struct ib_mr *b,
|
|
struct ib_sge *c) { return EINVAL; }
|
|
int rpcrdma_register_external(struct rpcrdma_mr_seg *a, int b, int c,
|
|
struct rpcrdma_xprt *d) { return EINVAL; }
|
|
int rpcrdma_deregister_external(struct rpcrdma_mr_seg *a,
|
|
struct rpcrdma_xprt *b, void *c) { return EINVAL; }
|