62ac6533e0
* Ensure _iwarp.h is always included, or you'll get warnings on platforms that don't have the RDMACM * Add skeleton for function descriptions in comments in iwarp.h This commit was SVN r18477.
43 строки
714 B
C
43 строки
714 B
C
/*
|
|
* Copyright (c) 2008 Chelsio
|
|
* Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
#ifndef MCA_BTL_OPENIB_IWARP_H
|
|
#define MCA_BTL_OPENIB_IWARP_H
|
|
|
|
#include "ompi_config.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/**
|
|
* Get an iWARP equivalent of a subnet ID.
|
|
*/
|
|
extern uint64_t mca_btl_openib_get_iwarp_subnet_id(struct ibv_device *ib_dev);
|
|
|
|
/**
|
|
* ?
|
|
*/
|
|
extern uint32_t mca_btl_openib_rdma_get_ipv4addr(struct ibv_context *verbs,
|
|
uint8_t port);
|
|
|
|
/**
|
|
* ?
|
|
*/
|
|
extern int mca_btl_openib_build_rdma_addr_list(void);
|
|
|
|
/**
|
|
* ?
|
|
*/
|
|
extern void mca_btl_openib_free_rdma_addr_list(void);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|