mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
ff51bf8415
The RDS protocol has lots of functions that should be declared static. rds_message_get/add_version_extension is removed since it defined but never used. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
24 lines
549 B
C
24 lines
549 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);
|
|
|
|
/* from iw.c */
|
|
extern struct rds_transport rds_iw_transport;
|
|
int rds_iw_init(void);
|
|
void rds_iw_exit(void);
|
|
|
|
#endif
|