diff options
author | Thomas Pedersen <thomas@cozybit.com> | 2012-12-10 14:48:01 -0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-12-11 16:00:38 -0500 |
commit | 96d21371ac8583d0935e5c41a798004084789606 (patch) | |
tree | 35b1ee6024474558d4345fe85f4ebf9372a6fd0b /drivers/net | |
parent | fe8e41054255b0006a823a4ce771d7a717fc9481 (diff) | |
download | linux-3.10-96d21371ac8583d0935e5c41a798004084789606.tar.gz linux-3.10-96d21371ac8583d0935e5c41a798004084789606.tar.bz2 linux-3.10-96d21371ac8583d0935e5c41a798004084789606.zip |
ath9k: RX timestamp is reported at end of frame
Accurate RX timestamp reporting is important for proper IBSS merging,
mesh synchronization, and MCCA scheduling. Namely, knowing where the TSF
is recorded is needed to sync with the beacon timestamp field.
Tested with AR9280.
Signed-off-by: Thomas Pedersen <thomas@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index 6aafbb77c49..d4df98a938b 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c @@ -976,7 +976,7 @@ static int ath9k_rx_skb_preprocess(struct ath_common *common, rx_status->freq = hw->conf.channel->center_freq; rx_status->signal = ah->noise + rx_stats->rs_rssi; rx_status->antenna = rx_stats->rs_antenna; - rx_status->flag |= RX_FLAG_MACTIME_START; + rx_status->flag |= RX_FLAG_MACTIME_END; if (rx_stats->rs_moreaggr) rx_status->flag |= RX_FLAG_NO_SIGNAL_VAL; |