diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2014-09-18 20:47:39 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2014-09-18 20:47:39 +0000 |
commit | 2127b2e232d556994c268cff37712bfb12a10190 (patch) | |
tree | 2c580eadf32692f6a8ecc9a2e676b733f3405444 /sys/dev/ath/if_ath_tx.c | |
parent | 8c32392208053b689d1162735aeceaebdf20a8ac (diff) |
Mechanically convert to if_inc_counter().
Notes
Notes:
svn path=/head/; revision=271823
Diffstat (limited to 'sys/dev/ath/if_ath_tx.c')
-rw-r--r-- | sys/dev/ath/if_ath_tx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ath/if_ath_tx.c b/sys/dev/ath/if_ath_tx.c index 1b140da6b077..096278eb4519 100644 --- a/sys/dev/ath/if_ath_tx.c +++ b/sys/dev/ath/if_ath_tx.c @@ -2424,7 +2424,7 @@ ath_raw_xmit(struct ieee80211_node *ni, struct mbuf *m, } } sc->sc_wd_timer = 5; - ifp->if_opackets++; + if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1); sc->sc_stats.ast_tx_raw++; /* @@ -2473,7 +2473,7 @@ bad: badbad: ATH_KTR(sc, ATH_KTR_TX, 2, "ath_raw_xmit: bad0: m=%p, params=%p", m, params); - ifp->if_oerrors++; + if_inc_counter(ifp, IFCOUNTER_OERRORS, 1); sc->sc_stats.ast_tx_raw_fail++; ieee80211_free_node(ni); |