2f208f885c
"!OpenFabrics" / neutral (i.e., refer to IB and/or iWARP). * Mostly just type, variable/field, and funcion name changes, such as s/hca/device/g, etc. * Changed the INI file for the hardware-specific parameters to be mca-btl-openib-device-params.ini. * Updated a lot of help messages in the help-*.txt files, not just to update it to be !OpenFabrics/neutral language, but also for some consistency of tone, indenting, etc. * Deprecated a bunch of MCA params in favor of language-neutral new ones: * btl_openib_warn_no_hca_params_found (s/hca/device/) * btl_openib_hca_param_files * btl_openib_ib_cq_size (s/_ib_/_of_/) * btl_openib_ib_max_inline_data * btl_openib_ib_psn * btl_openib_ib_mtu * btl_openib_ib_pkey_ix * btl_openib_ib_pkey_val This commit was SVN r18985. The following Trac tickets were found above: Ticket 1295 --> https://svn.open-mpi.org/trac/ompi/ticket/1295
58 строки
1.1 KiB
C
58 строки
1.1 KiB
C
/*
|
|
* Copyright (c) 2006-2008 Cisco Systems, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
#ifndef MCA_PTL_IB_PARAMS_H
|
|
#define MCA_PTL_IB_PARAMS_H
|
|
|
|
#include "btl_openib.h"
|
|
|
|
|
|
/*
|
|
* Struct to hold the settable values that may be specified in the INI
|
|
* file
|
|
*/
|
|
typedef struct ompi_btl_openib_ini_values_t {
|
|
uint32_t mtu;
|
|
bool mtu_set;
|
|
|
|
uint32_t use_eager_rdma;
|
|
bool use_eager_rdma_set;
|
|
|
|
char *receive_queues;
|
|
|
|
uint32_t max_inline_data;
|
|
bool max_inline_data_set;
|
|
} ompi_btl_openib_ini_values_t;
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/**
|
|
* Read in the INI files containing device params
|
|
*/
|
|
int ompi_btl_openib_ini_init(void);
|
|
|
|
/**
|
|
* Query the read-in params for a given device
|
|
*/
|
|
int ompi_btl_openib_ini_query(uint32_t vendor_id,
|
|
uint32_t vendor_part_id,
|
|
ompi_btl_openib_ini_values_t *values);
|
|
|
|
/**
|
|
* Shut down / release all internal state
|
|
*/
|
|
int ompi_btl_openib_ini_finalize(void);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|