svn commit: r296495 - head/sys/dev/cxgbe/common

Navdeep Parhar np at FreeBSD.org
Tue Mar 8 09:40:46 UTC 2016


Author: np
Date: Tue Mar  8 09:40:45 2016
New Revision: 296495
URL: https://svnweb.freebsd.org/changeset/base/296495

Log:
  cxgbe(4): Fix t4_tp_get_rdma_stats.

Modified:
  head/sys/dev/cxgbe/common/t4_hw.c

Modified: head/sys/dev/cxgbe/common/t4_hw.c
==============================================================================
--- head/sys/dev/cxgbe/common/t4_hw.c	Tue Mar  8 09:34:56 2016	(r296494)
+++ head/sys/dev/cxgbe/common/t4_hw.c	Tue Mar  8 09:40:45 2016	(r296495)
@@ -5340,7 +5340,7 @@ void t4_tp_get_cpl_stats(struct adapter 
  */
 void t4_tp_get_rdma_stats(struct adapter *adap, struct tp_rdma_stats *st)
 {
-	t4_read_indirect(adap, A_TP_MIB_INDEX, A_TP_MIB_DATA, &st->rqe_dfr_mod,
+	t4_read_indirect(adap, A_TP_MIB_INDEX, A_TP_MIB_DATA, &st->rqe_dfr_pkt,
 			 2, A_TP_MIB_RQE_DFR_PKT);
 }
 


More information about the svn-src-head mailing list