From c93711cfdb08408055b47abadf8cad14a1406c43 Mon Sep 17 00:00:00 2001 From: Galen Shipman Date: Tue, 8 Aug 2006 16:53:47 +0000 Subject: [PATCH] checking for max_inline_data == 0 as an error condition is not valid,, so don't do it.. This commit was SVN r11132. --- ompi/mca/btl/openib/btl_openib_endpoint.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ompi/mca/btl/openib/btl_openib_endpoint.c b/ompi/mca/btl/openib/btl_openib_endpoint.c index 5ef2ce7e2d..71cc38f290 100644 --- a/ompi/mca/btl/openib/btl_openib_endpoint.c +++ b/ompi/mca/btl/openib/btl_openib_endpoint.c @@ -945,9 +945,7 @@ int mca_btl_openib_endpoint_create_qp( return OMPI_ERROR; } (*qp) = my_qp; - if(0 == (openib_btl->ib_inline_max = qp_init_attr.cap.max_inline_data)) { - BTL_ERROR(("ibv_create_qp: returned 0 byte(s) for max inline data")); - } + } {