diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/debug.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/debug.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/drivers/net/wireless/ath/ath9k/debug.h b/drivers/net/wireless/ath/ath9k/debug.h index 86780e68b31e..5147b8709e10 100644 --- a/drivers/net/wireless/ath/ath9k/debug.h +++ b/drivers/net/wireless/ath/ath9k/debug.h | |||
@@ -35,6 +35,8 @@ struct ath_buf; | |||
35 | * struct ath_interrupt_stats - Contains statistics about interrupts | 35 | * struct ath_interrupt_stats - Contains statistics about interrupts |
36 | * @total: Total no. of interrupts generated so far | 36 | * @total: Total no. of interrupts generated so far |
37 | * @rxok: RX with no errors | 37 | * @rxok: RX with no errors |
38 | * @rxlp: RX with low priority RX | ||
39 | * @rxhp: RX with high priority, uapsd only | ||
38 | * @rxeol: RX with no more RXDESC available | 40 | * @rxeol: RX with no more RXDESC available |
39 | * @rxorn: RX FIFO overrun | 41 | * @rxorn: RX FIFO overrun |
40 | * @txok: TX completed at the requested rate | 42 | * @txok: TX completed at the requested rate |
@@ -55,6 +57,8 @@ struct ath_buf; | |||
55 | struct ath_interrupt_stats { | 57 | struct ath_interrupt_stats { |
56 | u32 total; | 58 | u32 total; |
57 | u32 rxok; | 59 | u32 rxok; |
60 | u32 rxlp; | ||
61 | u32 rxhp; | ||
58 | u32 rxeol; | 62 | u32 rxeol; |
59 | u32 rxorn; | 63 | u32 rxorn; |
60 | u32 txok; | 64 | u32 txok; |
@@ -149,13 +153,7 @@ struct ath_stats { | |||
149 | 153 | ||
150 | struct ath9k_debug { | 154 | struct ath9k_debug { |
151 | struct dentry *debugfs_phy; | 155 | struct dentry *debugfs_phy; |
152 | struct dentry *debugfs_debug; | 156 | u32 regidx; |
153 | struct dentry *debugfs_dma; | ||
154 | struct dentry *debugfs_interrupt; | ||
155 | struct dentry *debugfs_rcstat; | ||
156 | struct dentry *debugfs_wiphy; | ||
157 | struct dentry *debugfs_xmit; | ||
158 | struct dentry *debugfs_recv; | ||
159 | struct ath_stats stats; | 157 | struct ath_stats stats; |
160 | }; | 158 | }; |
161 | 159 | ||
@@ -167,8 +165,8 @@ void ath9k_debug_remove_root(void); | |||
167 | void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status); | 165 | void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status); |
168 | void ath_debug_stat_rc(struct ath_softc *sc, int final_rate); | 166 | void ath_debug_stat_rc(struct ath_softc *sc, int final_rate); |
169 | void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq, | 167 | void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq, |
170 | struct ath_buf *bf); | 168 | struct ath_buf *bf, struct ath_tx_status *ts); |
171 | void ath_debug_stat_rx(struct ath_softc *sc, struct ath_buf *bf); | 169 | void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs); |
172 | void ath_debug_stat_retries(struct ath_softc *sc, int rix, | 170 | void ath_debug_stat_retries(struct ath_softc *sc, int rix, |
173 | int xretries, int retries, u8 per); | 171 | int xretries, int retries, u8 per); |
174 | 172 | ||
@@ -204,12 +202,13 @@ static inline void ath_debug_stat_rc(struct ath_softc *sc, | |||
204 | 202 | ||
205 | static inline void ath_debug_stat_tx(struct ath_softc *sc, | 203 | static inline void ath_debug_stat_tx(struct ath_softc *sc, |
206 | struct ath_txq *txq, | 204 | struct ath_txq *txq, |
207 | struct ath_buf *bf) | 205 | struct ath_buf *bf, |
206 | struct ath_tx_status *ts) | ||
208 | { | 207 | { |
209 | } | 208 | } |
210 | 209 | ||
211 | static inline void ath_debug_stat_rx(struct ath_softc *sc, | 210 | static inline void ath_debug_stat_rx(struct ath_softc *sc, |
212 | struct ath_buf *bf) | 211 | struct ath_rx_status *rs) |
213 | { | 212 | { |
214 | } | 213 | } |
215 | 214 | ||