diff options
Diffstat (limited to 'drivers/infiniband/hw/mlx4/mad.c')
| -rw-r--r-- | drivers/infiniband/hw/mlx4/mad.c | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/infiniband/hw/mlx4/mad.c b/drivers/infiniband/hw/mlx4/mad.c index 95c94d8f025..259b0670b51 100644 --- a/drivers/infiniband/hw/mlx4/mad.c +++ b/drivers/infiniband/hw/mlx4/mad.c @@ -257,12 +257,9 @@ static int ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,  			return IB_MAD_RESULT_SUCCESS;  		/* -		 * Don't process SMInfo queries or vendor-specific -		 * MADs -- the SMA can't handle them. +		 * Don't process SMInfo queries -- the SMA can't handle them.  		 */ -		if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO || -		    ((in_mad->mad_hdr.attr_id & IB_SMP_ATTR_VENDOR_MASK) == -		     IB_SMP_ATTR_VENDOR_MASK)) +		if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO)  			return IB_MAD_RESULT_SUCCESS;  	} else if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_PERF_MGMT ||  		   in_mad->mad_hdr.mgmt_class == MLX4_IB_VENDOR_CLASS1   ||  |