diff options
author | Christian Lamparter <chunkeey@googlemail.com> | 2013-01-30 23:37:41 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-02-01 14:27:22 -0500 |
commit | 21fbbca3376f66edd010f5c76ea94e3353bf9a9e (patch) | |
tree | bfcdd46a5e8d72de8b8ba8f7ea002068cf9825bd /drivers/net/wireless/ath/ath9k/ath9k.h | |
parent | cd435d561add96edc784bffa08ac447dabb387f8 (diff) | |
download | blackbird-op-linux-21fbbca3376f66edd010f5c76ea94e3353bf9a9e.tar.gz blackbird-op-linux-21fbbca3376f66edd010f5c76ea94e3353bf9a9e.zip |
ath9k: report A-MPDU status
The ath9k hardware reports whenever an frame was part
of an A-MPDU. MAC80211 already provides the necessary
API to pass this additional information along to
whomever needs it.
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ath9k.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index 67df8644fef6..21e2e42046fa 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h @@ -319,6 +319,8 @@ struct ath_rx { struct ath_rx_edma rx_edma[ATH9K_RX_QUEUE_MAX]; struct sk_buff *frag; + + u32 ampdu_ref; }; int ath_startrecv(struct ath_softc *sc); |