1
1

arghh...I inadvertantly checked this in to the 1.3 branch rather than

first to the trunk.  So, here is the trunk checkin:

The call to orte_show_help() to notify truncation of the max_inline value
was missing the want_error_header boolean, which eventually results in
a SEGV.  This change corrects the call with the bool set to true.

This commit was SVN r18839.
Этот коммит содержится в:
Brad Benton 2008-07-08 15:28:53 +00:00
родитель 51da9f2980
Коммит 9f0280bd55

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

@ -463,7 +463,7 @@ static int qp_create_one(mca_btl_base_endpoint_t* endpoint, int qp,
if (init_attr.cap.max_inline_data < req_inline) {
endpoint->qps[qp].ib_inline_max = init_attr.cap.max_inline_data;
orte_show_help("help-mpi-btl-openib-cpc-base.txt",
"inline truncated", orte_process_info.nodename,
"inline truncated", true, orte_process_info.nodename,
ibv_get_device_name(openib_btl->hca->ib_dev),
req_inline, init_attr.cap.max_inline_data);
} else {