From 3e968d4f6317bef0e5c47d455c7aaa1f4c27db33 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Mon, 24 Apr 2006 23:13:51 +0000 Subject: [PATCH] There is no length on the free list. This commit was SVN r9704. --- ompi/mca/btl/mx/btl_mx_component.c | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/ompi/mca/btl/mx/btl_mx_component.c b/ompi/mca/btl/mx/btl_mx_component.c index af2f2fe698..262ff3dd28 100644 --- a/ompi/mca/btl/mx/btl_mx_component.c +++ b/ompi/mca/btl/mx/btl_mx_component.c @@ -155,30 +155,6 @@ int mca_btl_mx_component_close(void) return OMPI_SUCCESS; mx_finalize(); -#if OMPI_ENABLE_DEBUG - if (mca_btl_mx_component.mx_send_eager_frags.fl_num_allocated && - mca_btl_mx_component.mx_send_eager_frags.fl_num_allocated != - mca_btl_mx_component.mx_send_eager_frags.super.opal_list_length) { - opal_output(0, "mx send eager frags: %d allocated %d returned\n", - mca_btl_mx_component.mx_send_eager_frags.fl_num_allocated, - mca_btl_mx_component.mx_send_eager_frags.super.opal_list_length); - } - if (mca_btl_mx_component.mx_send_user_frags.fl_num_allocated && - mca_btl_mx_component.mx_send_user_frags.fl_num_allocated != - mca_btl_mx_component.mx_send_user_frags.super.opal_list_length) { - opal_output(0, "mx send user frags: %d allocated %d returned\n", - mca_btl_mx_component.mx_send_user_frags.fl_num_allocated, - mca_btl_mx_component.mx_send_user_frags.super.opal_list_length); - } - /* allow for pre-posted receives */ - if (mca_btl_mx_component.mx_recv_frags.fl_num_allocated && - mca_btl_mx_component.mx_recv_frags.fl_num_allocated - 3 > - mca_btl_mx_component.mx_recv_frags.super.opal_list_length) { - opal_output(0, "mx recv frags: %d allocated %d returned\n", - mca_btl_mx_component.mx_recv_frags.fl_num_allocated, - mca_btl_mx_component.mx_recv_frags.super.opal_list_length); - } -#endif /* release resources */ OBJ_DESTRUCT(&mca_btl_mx_component.mx_send_eager_frags);