Message ID | a845067b-2e87-4bd0-bd60-e19a85f586bc@default (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Hal Rosenstock |
Headers | show |
On 9/3/2013 7:31 AM, Line Holen wrote: > Signed-off-by: Line Holen <line.holen@oracle.com> Thanks. Applied with minor change noted below. > > --- > > diff --git a/opensm/osm_sa_informinfo.c b/opensm/osm_sa_informinfo.c > index f32b88b..bf1fe97 100644 > --- a/opensm/osm_sa_informinfo.c > +++ b/opensm/osm_sa_informinfo.c > @@ -598,7 +598,8 @@ void osm_infr_rcv_process(IN void *context, IN void *data) > CL_ASSERT(p_sa_mad->attr_id == IB_MAD_ATTR_INFORM_INFO); > > if (p_sa_mad->method != IB_MAD_METHOD_SET) { > - OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Unsupported Method (%s)\n", > + OSM_LOG(sa->p_log, OSM_LOG_DEBUG, > + "Unsupported Method (%s) for InformInfo\n", > ib_get_sa_method_str(p_sa_mad->method)); > osm_sa_send_error(sa, p_madw, IB_MAD_STATUS_UNSUP_METHOD_ATTR); > goto Exit; > @@ -626,7 +627,8 @@ void osm_infir_rcv_process(IN void *context, IN void *data) > > if (p_sa_mad->method != IB_MAD_METHOD_GET && > p_sa_mad->method != IB_MAD_METHOD_GETTABLE) { > - OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Unsupported Method (%s)\n", > + OSM_LOG(sa->p_log, OSM_LOG_DEBUG, > + "Unsupported Method (%s) for InformInfo\n", InformInfoRecord r.t. InformInfo -- Hal > ib_get_sa_method_str(p_sa_mad->method)); > osm_sa_send_error(sa, p_madw, IB_MAD_STATUS_UNSUP_METHOD_ATTR); > goto Exit; > -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/opensm/osm_sa_informinfo.c b/opensm/osm_sa_informinfo.c index f32b88b..bf1fe97 100644 --- a/opensm/osm_sa_informinfo.c +++ b/opensm/osm_sa_informinfo.c @@ -598,7 +598,8 @@ void osm_infr_rcv_process(IN void *context, IN void *data) CL_ASSERT(p_sa_mad->attr_id == IB_MAD_ATTR_INFORM_INFO); if (p_sa_mad->method != IB_MAD_METHOD_SET) { - OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Unsupported Method (%s)\n", + OSM_LOG(sa->p_log, OSM_LOG_DEBUG, + "Unsupported Method (%s) for InformInfo\n", ib_get_sa_method_str(p_sa_mad->method)); osm_sa_send_error(sa, p_madw, IB_MAD_STATUS_UNSUP_METHOD_ATTR); goto Exit; @@ -626,7 +627,8 @@ void osm_infir_rcv_process(IN void *context, IN void *data) if (p_sa_mad->method != IB_MAD_METHOD_GET && p_sa_mad->method != IB_MAD_METHOD_GETTABLE) { - OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Unsupported Method (%s)\n", + OSM_LOG(sa->p_log, OSM_LOG_DEBUG, + "Unsupported Method (%s) for InformInfo\n", ib_get_sa_method_str(p_sa_mad->method)); osm_sa_send_error(sa, p_madw, IB_MAD_STATUS_UNSUP_METHOD_ATTR); goto Exit;
Signed-off-by: Line Holen <line.holen@oracle.com> --- -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html