Signed-off-by: Albert Chu <[email protected]>
---
opensm/osm_congestion_control.c | 4 ++--
opensm/osm_perfmgr.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opensm/osm_congestion_control.c b/opensm/osm_congestion_control.c
index b5d9cdb..e103ab1 100644
--- a/opensm/osm_congestion_control.c
+++ b/opensm/osm_congestion_control.c
@@ -525,8 +525,8 @@ static void cc_poller_send(osm_congestion_control_t *p_cc,
status = osm_vendor_send(p_cc->bind_handle, p_madw, TRUE);
if (status == IB_SUCCESS) {
cl_atomic_inc(&p_cc->outstanding_mads_on_wire);
- if (p_cc->outstanding_mads_on_wire >
- (int32_t)p_opt->cc_max_outstanding_mads)
+ while (p_cc->outstanding_mads_on_wire >
+ (int32_t)p_opt->cc_max_outstanding_mads)
cl_event_wait_on(&p_cc->sig_mads_on_wire_continue,
EVENT_NO_TIMEOUT,
TRUE);
diff --git a/opensm/osm_perfmgr.c b/opensm/osm_perfmgr.c
index 98b4c07..d8f933e 100644
--- a/opensm/osm_perfmgr.c
+++ b/opensm/osm_perfmgr.c
@@ -419,13 +419,13 @@ static ib_api_status_t perfmgr_send_pc_mad(osm_perfmgr_t
* perfmgr,
if (status == IB_SUCCESS) {
/* pause thread if there are too many outstanding requests */
cl_atomic_inc(&(perfmgr->outstanding_queries));
- if (perfmgr->outstanding_queries >
- (int32_t)perfmgr->max_outstanding_queries) {
+ while (perfmgr->outstanding_queries >
+ (int32_t)perfmgr->max_outstanding_queries) {
perfmgr->sweep_state = PERFMGR_SWEEP_SUSPENDED;
cl_event_wait_on(&perfmgr->sig_query, EVENT_NO_TIMEOUT,
TRUE);
- perfmgr->sweep_state = PERFMGR_SWEEP_ACTIVE;
}
+ perfmgr->sweep_state = PERFMGR_SWEEP_ACTIVE;
}
OSM_LOG_EXIT(perfmgr->log);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html