david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/ib_cmrc.h
Michael Brown 4be11f523c [infiniband] Add a "communication-managed reliable connection" protocol
SRP over Infiniband uses a protocol whereby data is sent via a
combination of the CM private data fields and the RC queue pair
itself.  This seems sufficiently generic that it's worth having
available as a separate protocol.
2009-08-10 22:23:28 +01:00

21 lines
384 B
C

#ifndef _GPXE_IB_CMRC_H
#define _GPXE_IB_CMRC_H
/** @file
*
* Infiniband Communication-managed Reliable Connections
*
*/
FILE_LICENCE ( BSD2 );
#include <gpxe/infiniband.h>
#include <gpxe/xfer.h>
extern int ib_cmrc_open ( struct xfer_interface *xfer,
struct ib_device *ibdev,
struct ib_gid *dgid,
struct ib_gid_half *service_id );
#endif /* _GPXE_IB_CMRC_H */