Skip to content

Commit bedd802

Browse files
committed
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 <hjelmn@lanl.gov>
1 parent 2fd176a commit bedd802

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

ompi/mca/pml/ob1/pml_ob1_component.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,6 @@ mca_pml_ob1_component_init( int* priority,
254254
opal_output_verbose( 10, mca_pml_ob1_output,
255255
"in ob1, my priority is %d\n", mca_pml_ob1.priority);
256256

257-
if((*priority) > mca_pml_ob1.priority) {
258-
*priority = mca_pml_ob1.priority;
259-
return NULL;
260-
}
261257
*priority = mca_pml_ob1.priority;
262258

263259
allocator_component = mca_allocator_component_lookup( mca_pml_ob1.allocator_name );

0 commit comments

Comments
 (0)