summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authoryongari <yongari@FreeBSD.org>2008-01-21 09:51:28 +0000
committeryongari <yongari@FreeBSD.org>2008-01-21 09:51:28 +0000
commit32ed0eb3484c2ca1a3c65d1b4c65410c5d9fe8e0 (patch)
tree05e61712248c84bbe692e21814566b86cda52b7a /sys/dev
parent0f9ed6a5b85cc0443f69692206c8fe2d2910fb6e (diff)
downloadFreeBSD-src-32ed0eb3484c2ca1a3c65d1b4c65410c5d9fe8e0.zip
FreeBSD-src-32ed0eb3484c2ca1a3c65d1b4c65410c5d9fe8e0.tar.gz
Fix build.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sf/if_sf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index b1c35b7..2abd80c 100644
--- a/sys/dev/sf/if_sf.c
+++ b/sys/dev/sf/if_sf.c
@@ -1823,13 +1823,13 @@ sf_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
"DMA error, resetting\n");
sf_init_locked(sc);
} else if ((status & SF_ISR_NO_TX_CSUM) != 0) {
- sc->sf_statistics.tx_gfp_stall++;
+ sc->sf_statistics.sf_tx_gfp_stall++;
#ifdef SF_GFP_DEBUG
device_printf(sc->sf_dev,
"TxGFP is not responding!\n");
#endif
} else if ((status & SF_ISR_RXGFP_NORESP) != 0) {
- sc->sf_statistics.rx_gfp_stall++;
+ sc->sf_statistics.sf_rx_gfp_stall++;
#ifdef SF_GFP_DEBUG
device_printf(sc->sf_dev,
"RxGFP is not responding!\n");
OpenPOWER on IntegriCloud