1
1
This commit was SVN r17100.
Этот коммит содержится в:
Jon Mason 2008-01-09 21:54:11 +00:00
родитель 25814c07e0
Коммит 597c7e68f1
4 изменённых файлов: 5 добавлений и 8 удалений

Просмотреть файл

@ -220,7 +220,7 @@ OMPI_MODULE_DECLSPEC extern mca_btl_openib_component_t mca_btl_openib_component;
typedef mca_btl_base_recv_reg_t mca_btl_openib_recv_reg_t;
struct mca_btl_openib_port_info_t {
struct mca_btl_openib_port_info {
uint32_t mtu;
#if OMPI_ENABLE_HETEROGENEOUS_SUPPORT
uint8_t padding[4];
@ -230,7 +230,7 @@ struct mca_btl_openib_port_info_t {
uint16_t lid; /* used only in xrc */
#endif
};
typedef struct mca_btl_openib_port_info_t mca_btl_openib_port_info_t;
typedef struct mca_btl_openib_port_info mca_btl_openib_port_info_t;
#if HAVE_XRC
#define MCA_BTL_OPENIB_LID_NTOH(hdr) (hdr).lid = ntohs((hdr).lid)

Просмотреть файл

@ -1165,7 +1165,6 @@ btl_openib_component_init(int *num_btl_modules,
#endif
/* Parse the include and exclude lists, checking for errors */
mca_btl_openib_component.if_include_list =
mca_btl_openib_component.if_exclude_list =
mca_btl_openib_component.if_list = NULL;
@ -1204,7 +1203,6 @@ btl_openib_component_init(int *num_btl_modules,
dlist_for_each_data(dev_list, ib_dev, struct ibv_device)
num_devs++;
#endif
if(0 == num_devs) {
mca_btl_base_error_no_nics("OpenIB", "HCA");
btl_openib_modex_send();

Просмотреть файл

@ -46,7 +46,7 @@ struct mca_btl_openib_proc_t {
orte_process_name_t proc_guid;
/**< globally unique identifier for the process */
struct mca_btl_openib_port_info_t* proc_ports;
mca_btl_openib_port_info_t* proc_ports;
size_t proc_port_count;
/**< number of ports published by endpoint */

Просмотреть файл

@ -8,7 +8,6 @@
*
* $HEADER$
*/
#include "ompi_config.h"
#include "btl_openib.h"