Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.19-rc5 25 lines 654 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _RDMA_TRANSPORT_H 3#define _RDMA_TRANSPORT_H 4 5#include <rdma/ib_verbs.h> 6#include <rdma/rdma_cm.h> 7#include "rds.h" 8 9/* RDMA_CM also uses 16385 as the listener port. */ 10#define RDS_CM_PORT 16385 11 12#define RDS_RDMA_RESOLVE_TIMEOUT_MS 5000 13 14int rds_rdma_conn_connect(struct rds_connection *conn); 15int rds_rdma_cm_event_handler(struct rdma_cm_id *cm_id, 16 struct rdma_cm_event *event); 17int rds6_rdma_cm_event_handler(struct rdma_cm_id *cm_id, 18 struct rdma_cm_event *event); 19 20/* from ib.c */ 21extern struct rds_transport rds_ib_transport; 22int rds_ib_init(void); 23void rds_ib_exit(void); 24 25#endif