From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hal Rosenstock Subject: [PATCH 3/4] libibmad/vendor.c: In ib_vendor_call_via, set errno Date: Sat, 09 Apr 2011 11:21:52 -0400 Message-ID: <4DA07990.1090402@dev.mellanox.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Sender: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Ira Weiny Cc: "linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" List-Id: linux-rdma@vger.kernel.org according to rpc error field Signed-off-by: Hal Rosenstock --- diff --git a/src/vendor.c b/src/vendor.c index 11efd76..e12d8ce 100644 --- a/src/vendor.c +++ b/src/vendor.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2004-2009 Voltaire Inc. All rights reserved. + * Copyright (c) 2011 Mellanox Technologies LTD. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -38,6 +39,7 @@ #include #include #include +#include #include #include "mad_internal.h" @@ -63,6 +65,7 @@ uint8_t *ib_vendor_call_via(void *data, ib_portid_t * portid, { ib_rpc_t rpc = { 0 }; int range1 = 0, resp_expected; + void *p_ret; DEBUG("route %s data %p", portid2str(portid), data); if (portid->lid <= 0) @@ -97,8 +100,11 @@ uint8_t *ib_vendor_call_via(void *data, ib_portid_t * portid, if (!portid->qkey) portid->qkey = IB_DEFAULT_QP1_QKEY; - if (resp_expected) - return mad_rpc_rmpp(srcport, &rpc, portid, 0, data); /* FIXME: no RMPP for now */ + if (resp_expected) { + p_ret = mad_rpc_rmpp(srcport, &rpc, portid, 0, data); /* FIXME: no RMPP for now */ + errno = rpc.error; + return p_ret; + } return mad_send_via(&rpc, portid, 0, data, srcport) < 0 ? 0 : data; /* FIXME: no RMPP for now */ } -- 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