|
@@ -711,10 +711,13 @@ ieee80211_tx_info_clear_status(struct ieee80211_tx_info *info)
|
|
* the frame.
|
|
* the frame.
|
|
* @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on
|
|
* @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on
|
|
* the frame.
|
|
* the frame.
|
|
- * @RX_FLAG_MACTIME_MPDU: The timestamp passed in the RX status (@mactime
|
|
|
|
|
|
+ * @RX_FLAG_MACTIME_START: The timestamp passed in the RX status (@mactime
|
|
* field) is valid and contains the time the first symbol of the MPDU
|
|
* field) is valid and contains the time the first symbol of the MPDU
|
|
* was received. This is useful in monitor mode and for proper IBSS
|
|
* was received. This is useful in monitor mode and for proper IBSS
|
|
* merging.
|
|
* merging.
|
|
|
|
+ * @RX_FLAG_MACTIME_END: The timestamp passed in the RX status (@mactime
|
|
|
|
+ * field) is valid and contains the time the last symbol of the MPDU
|
|
|
|
+ * (including FCS) was received.
|
|
* @RX_FLAG_SHORTPRE: Short preamble was used for this frame
|
|
* @RX_FLAG_SHORTPRE: Short preamble was used for this frame
|
|
* @RX_FLAG_HT: HT MCS was used and rate_idx is MCS index
|
|
* @RX_FLAG_HT: HT MCS was used and rate_idx is MCS index
|
|
* @RX_FLAG_40MHZ: HT40 (40 MHz) was used
|
|
* @RX_FLAG_40MHZ: HT40 (40 MHz) was used
|
|
@@ -745,7 +748,7 @@ enum mac80211_rx_flags {
|
|
RX_FLAG_IV_STRIPPED = BIT(4),
|
|
RX_FLAG_IV_STRIPPED = BIT(4),
|
|
RX_FLAG_FAILED_FCS_CRC = BIT(5),
|
|
RX_FLAG_FAILED_FCS_CRC = BIT(5),
|
|
RX_FLAG_FAILED_PLCP_CRC = BIT(6),
|
|
RX_FLAG_FAILED_PLCP_CRC = BIT(6),
|
|
- RX_FLAG_MACTIME_MPDU = BIT(7),
|
|
|
|
|
|
+ RX_FLAG_MACTIME_START = BIT(7),
|
|
RX_FLAG_SHORTPRE = BIT(8),
|
|
RX_FLAG_SHORTPRE = BIT(8),
|
|
RX_FLAG_HT = BIT(9),
|
|
RX_FLAG_HT = BIT(9),
|
|
RX_FLAG_40MHZ = BIT(10),
|
|
RX_FLAG_40MHZ = BIT(10),
|
|
@@ -759,6 +762,7 @@ enum mac80211_rx_flags {
|
|
RX_FLAG_AMPDU_IS_LAST = BIT(18),
|
|
RX_FLAG_AMPDU_IS_LAST = BIT(18),
|
|
RX_FLAG_AMPDU_DELIM_CRC_ERROR = BIT(19),
|
|
RX_FLAG_AMPDU_DELIM_CRC_ERROR = BIT(19),
|
|
RX_FLAG_AMPDU_DELIM_CRC_KNOWN = BIT(20),
|
|
RX_FLAG_AMPDU_DELIM_CRC_KNOWN = BIT(20),
|
|
|
|
+ RX_FLAG_MACTIME_END = BIT(21),
|
|
};
|
|
};
|
|
|
|
|
|
/**
|
|
/**
|