mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
dcdede0406
RDS iWarp support code has become stale and non testable. As indicated earlier, am dropping the support for it. If new iWarp user(s) shows up in future, we can adapat the RDS IB transprt for the special RDMA READ sink case. iWarp needs an MR for the RDMA READ sink. Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
20 lines
439 B
C
20 lines
439 B
C
#ifndef _RDMA_TRANSPORT_H
|
|
#define _RDMA_TRANSPORT_H
|
|
|
|
#include <rdma/ib_verbs.h>
|
|
#include <rdma/rdma_cm.h>
|
|
#include "rds.h"
|
|
|
|
#define RDS_RDMA_RESOLVE_TIMEOUT_MS 5000
|
|
|
|
int rds_rdma_conn_connect(struct rds_connection *conn);
|
|
int rds_rdma_cm_event_handler(struct rdma_cm_id *cm_id,
|
|
struct rdma_cm_event *event);
|
|
|
|
/* from ib.c */
|
|
extern struct rds_transport rds_ib_transport;
|
|
int rds_ib_init(void);
|
|
void rds_ib_exit(void);
|
|
|
|
#endif
|