From 6ce0c3f54b4b1fdbf74f26da457890727d0e113f Mon Sep 17 00:00:00 2001 From: sleybo Date: Thu, 24 Aug 2006 07:08:12 +0000 Subject: [PATCH] [OPENSM] The SA client is certainly not a responder (it initiates queries) and for now not a report responder. Fixing this makes SA client able to connect on same port the SM is attached to. git-svn-id: svn://openib.tc.cornell.edu/gen1/trunk@462 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86 --- ulp/opensm/user/libvendor/osm_vendor_mlx_sa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ulp/opensm/user/libvendor/osm_vendor_mlx_sa.c b/ulp/opensm/user/libvendor/osm_vendor_mlx_sa.c index f432df67..f17583d7 100644 --- a/ulp/opensm/user/libvendor/osm_vendor_mlx_sa.c +++ b/ulp/opensm/user/libvendor/osm_vendor_mlx_sa.c @@ -348,9 +348,9 @@ osmv_bind_sa( bind_info.port_guid = port_guid; bind_info.mad_class = IB_MCLASS_SUBN_ADM; bind_info.class_version = 2; - bind_info.is_responder = TRUE; + bind_info.is_responder = FALSE; bind_info.is_trap_processor = FALSE; - bind_info.is_report_processor = TRUE; + bind_info.is_report_processor = FALSE; bind_info.send_q_size = 256; bind_info.recv_q_size = 256; -- 2.17.1