diff options
author | Håkon Bugge <Haakon.Bugge@oracle.com> | 2018-10-09 16:27:39 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-10-16 21:23:33 +0300 |
commit | 0a094ff0619607a36c18d07a81d2ea62e6cdf074 (patch) | |
tree | fbf6ebcfe5d1bd2c0f9733aafe5c6d5546fbdb38 /drivers/infiniband/hw | |
parent | 1ae4cfa03902c83d1d77123e5ac8f0812c61b90e (diff) | |
download | linux-0a094ff0619607a36c18d07a81d2ea62e6cdf074.tar.xz |
IB/mlx4: Enable debug print of SMPs
IB Subnet Management Packets (SMPs) were excluded from debug prints.
Fixed by enabling print even on QP0 MADs.
Signed-off-by: Håkon Bugge <haakon.bugge@oracle.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r-- | drivers/infiniband/hw/mlx4/mad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx4/mad.c b/drivers/infiniband/hw/mlx4/mad.c index e5466d786bb1..1718715cc094 100644 --- a/drivers/infiniband/hw/mlx4/mad.c +++ b/drivers/infiniband/hw/mlx4/mad.c @@ -807,7 +807,7 @@ static int ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, int err; struct ib_port_attr pattr; - if (in_wc && in_wc->qp->qp_num) { + if (in_wc && in_wc->qp) { pr_debug("received MAD: slid:%d sqpn:%d " "dlid_bits:%d dqpn:%d wc_flags:0x%x, cls %x, mtd %x, atr %x\n", in_wc->slid, in_wc->src_qp, |