diff mbox

IB/core - delete redundant check for DR SMP

Message ID 201108100927.45568.dotanb@sw.voltaire.com (mailing list archive)
State New, archived
Headers show

Commit Message

Dotan Barak Aug. 10, 2011, 6:27 a.m. UTC
The function handle_outgoing_dr_smp() is only called if the
MAD to be sent is a directed route SMP.  Thus, the check for
IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE is redundant.

Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com>
Signed-off-by: Dotan Barak <dotanb@dev.mellanox.co.il>
Acked-by: Sean Hefty <sean.hefty@intel.com>
Acked-by: Hal Rosenstock <hal.rosenstock@gmail.com>

---
 drivers/infiniband/core/mad.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--
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 mbox

Patch

Index: ofed_kernel/drivers/infiniband/core/mad.c
===================================================================
--- ofed_kernel.orig/drivers/infiniband/core/mad.c
+++ ofed_kernel/drivers/infiniband/core/mad.c
@@ -679,8 +679,7 @@  static int handle_outgoing_dr_smp(struct
 	struct ib_wc mad_wc;
 	struct ib_send_wr *send_wr = &mad_send_wr->send_wr;
 
-	if (device->node_type == RDMA_NODE_IB_SWITCH &&
-	    smp->mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)
+	if (device->node_type == RDMA_NODE_IB_SWITCH)
 		port_num = send_wr->wr.ud.port_num;
 	else
 		port_num = mad_agent_priv->agent.port_num;