|
@@ -1099,6 +1099,9 @@ ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info)
|
|
|
* the first subframe.
|
|
|
* @RX_FLAG_ICV_STRIPPED: The ICV is stripped from this frame. CRC checking must
|
|
|
* be done in the hardware.
|
|
|
+ * @RX_FLAG_AMPDU_EOF_BIT: Value of the EOF bit in the A-MPDU delimiter for this
|
|
|
+ * frame
|
|
|
+ * @RX_FLAG_AMPDU_EOF_BIT_KNOWN: The EOF value is known
|
|
|
*/
|
|
|
enum mac80211_rx_flags {
|
|
|
RX_FLAG_MMIC_ERROR = BIT(0),
|
|
@@ -1125,6 +1128,8 @@ enum mac80211_rx_flags {
|
|
|
RX_FLAG_MIC_STRIPPED = BIT(21),
|
|
|
RX_FLAG_ALLOW_SAME_PN = BIT(22),
|
|
|
RX_FLAG_ICV_STRIPPED = BIT(23),
|
|
|
+ RX_FLAG_AMPDU_EOF_BIT = BIT(24),
|
|
|
+ RX_FLAG_AMPDU_EOF_BIT_KNOWN = BIT(25),
|
|
|
};
|
|
|
|
|
|
/**
|