diff options
author | Jakub Pawlak <jakub.pawlak@intel.com> | 2016-07-02 02:01:22 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-08-02 19:00:54 +0300 |
commit | 2b719046743d35b452f17956a5f19e1aa0fc3e8a (patch) | |
tree | f02b94e67f66ebcc5c0c6380d8fcfe57f9538c8d /drivers/infiniband/hw/hfi1/driver.c | |
parent | 583eb8b8a155dd6fb50a0c7846aa85ba8381cfed (diff) | |
download | linux-2b719046743d35b452f17956a5f19e1aa0fc3e8a.tar.xz |
IB/hfi1: Add counter to track unsupported packets drop
Add sw counter to track dropped unsupported packets.
Report unsupported packets drop as the RcvError.
Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Jakub Pawlak <jakub.pawlak@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/hfi1/driver.c')
-rw-r--r-- | drivers/infiniband/hw/hfi1/driver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/hfi1/driver.c b/drivers/infiniband/hw/hfi1/driver.c index c75b0ae688f8..6c81d155665d 100644 --- a/drivers/infiniband/hw/hfi1/driver.c +++ b/drivers/infiniband/hw/hfi1/driver.c @@ -1362,6 +1362,7 @@ int process_receive_bypass(struct hfi1_packet *packet) dd_dev_err(packet->rcd->dd, "Bypass packets are not supported in normal operation. Dropping\n"); + incr_cntr64(&packet->rcd->dd->sw_rcv_bypass_packet_errors); return RHF_RCV_CONTINUE; } |