diff options
author | Ralph Campbell <ralphc@pathscale.com> | 2006-02-03 17:30:24 -0500 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-03-20 13:08:11 -0500 |
commit | 5f0b67e0d5c2807337b8fee4aa71b05f4f641534 (patch) | |
tree | 7fa82fdc250aa862366296adb3087e2f30f4d4a1 /drivers/infiniband | |
parent | d36f34aadf184d8cc4c240de2b6319ccea8334bb (diff) |
IB/mad: Remove redundant check from smi_check_local_dr_smp()
smi_check_local_dr_smp() is called only from two places in core/mad.c
It returns 0 or 1. In smi_check_local_dr_smp(), it checks for
a directed route SMP but this function is only called when the SMP
is a directed route so this is a NOP.
Signed-off-by: Hal Rosenstock <halr@voltaire.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/core/agent.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/infiniband/core/agent.c b/drivers/infiniband/core/agent.c index 34b724afd28d..1a8f94588364 100644 --- a/drivers/infiniband/core/agent.c +++ b/drivers/infiniband/core/agent.c | |||
@@ -84,9 +84,6 @@ int smi_check_local_dr_smp(struct ib_smp *smp, | |||
84 | { | 84 | { |
85 | struct ib_agent_port_private *port_priv; | 85 | struct ib_agent_port_private *port_priv; |
86 | 86 | ||
87 | if (smp->mgmt_class != IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) | ||
88 | return 1; | ||
89 | |||
90 | port_priv = ib_get_agent_port(device, port_num); | 87 | port_priv = ib_get_agent_port(device, port_num); |
91 | if (!port_priv) { | 88 | if (!port_priv) { |
92 | printk(KERN_DEBUG SPFX "smi_check_local_dr_smp %s port %d " | 89 | printk(KERN_DEBUG SPFX "smi_check_local_dr_smp %s port %d " |