From bedd80214eb343bd5253ccb108e662f3e0b2768b Mon Sep 17 00:00:00 2001 From: Nathan Hjelm Date: Mon, 19 Oct 2015 09:55:50 -0600 Subject: [PATCH] pml/ob1: remove priority check This commit removes code that checks the ob1 priority vs the previous priority. The previous priority is meaningless here and may only cause ob1 to disable itself when it shouldn't. Signed-off-by: Nathan Hjelm --- ompi/mca/pml/ob1/pml_ob1_component.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ompi/mca/pml/ob1/pml_ob1_component.c b/ompi/mca/pml/ob1/pml_ob1_component.c index 1a6cda759a..47a62fabe5 100644 --- a/ompi/mca/pml/ob1/pml_ob1_component.c +++ b/ompi/mca/pml/ob1/pml_ob1_component.c @@ -254,10 +254,6 @@ mca_pml_ob1_component_init( int* priority, opal_output_verbose( 10, mca_pml_ob1_output, "in ob1, my priority is %d\n", mca_pml_ob1.priority); - if((*priority) > mca_pml_ob1.priority) { - *priority = mca_pml_ob1.priority; - return NULL; - } *priority = mca_pml_ob1.priority; allocator_component = mca_allocator_component_lookup( mca_pml_ob1.allocator_name );