From mboxrd@z Thu Jan 1 00:00:00 1970 From: Line Holen Subject: [PATCH][MINOR] osm_sa_informinfo.c Add attribute info to log messages Date: Tue, 3 Sep 2013 04:31:23 -0700 (PDT) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Return-path: Content-Disposition: inline Sender: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org Cc: Linux-Rdma List-Id: linux-rdma@vger.kernel.org Signed-off-by: Line Holen --- 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; -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html