blob: 47ad27fa6ddece98caab40910bea324bd405a4c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _IPXE_IB_CMRC_H
#define _IPXE_IB_CMRC_H
/** @file
*
* Infiniband Communication-managed Reliable Connections
*
*/
FILE_LICENCE ( BSD2 );
#include <ipxe/infiniband.h>
#include <ipxe/xfer.h>
extern int ib_cmrc_open ( struct interface *xfer,
struct ib_device *ibdev,
union ib_gid *dgid,
union ib_guid *service_id );
#endif /* _IPXE_IB_CMRC_H */
|