]> git.karo-electronics.de Git - linux-beck.git/commitdiff
iwlwifi: mvm: update rx_status with mactime flag
authorSara Sharon <sara.sharon@intel.com>
Sun, 10 Jan 2016 12:23:25 +0000 (14:23 +0200)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Sat, 27 Feb 2016 20:00:05 +0000 (22:00 +0200)
When forming IBSS, mac80211 scans in order to find an already
existing cell to join.
In case the scan does not find any existing cell a new IBSS
cell is formed.
When receiving the beacons of another IBSS cell we should
merge if the other IBSS cell's TSF is higher than ours.
However, currently iwlmvm does not set any timestamp flag in
rx_status so there is no valid rx timestamp to compare the
beacon's TSF to.
The reason for that is that TSF as indicated by the firmware
is at INA time, but up till now mac80211 expected the TSF at
the beginning or end of the MPDU.
Set the flag to the newly added RX_FLAG_MACTIME_PLCP_START flag.

Signed-off-by: Sara Sharon <sara.sharon@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
drivers/net/wireless/intel/iwlwifi/mvm/rx.c
drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c

index 535134d639e0ec70498a1a418cce0344ea5656ff..e885db3464b094aa498df64091b6f1eaaa68993a 100644 (file)
@@ -1484,6 +1484,8 @@ void iwl_mvm_rx_stored_beacon_notif(struct iwl_mvm *mvm,
        /* update rx_status according to the notification's metadata */
        memset(&rx_status, 0, sizeof(rx_status));
        rx_status.mactime = le64_to_cpu(sb->tsf);
+       /* TSF as indicated by the firmware  is at INA time */
+       rx_status.flag |= RX_FLAG_MACTIME_PLCP_START;
        rx_status.device_timestamp = le32_to_cpu(sb->system_time);
        rx_status.band =
                (sb->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
index 055a8b0f7ad7e9576e8cbe65d27b6fb4e0fabd8d..ad625f0c79ed90d482fc15c564512613eb0004e2 100644 (file)
@@ -322,11 +322,9 @@ void iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct napi_struct *napi,
        rx_status->freq =
                ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
                                               rx_status->band);
-       /*
-        * TSF as indicated by the fw is at INA time, but mac80211 expects the
-        * TSF at the beginning of the MPDU.
-        */
-       /*rx_status->flag |= RX_FLAG_MACTIME_MPDU;*/
+
+       /* TSF as indicated by the firmware  is at INA time */
+       rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
 
        iwl_mvm_get_signal_strength(mvm, phy_info, rx_status);
 
index 615dea143d4e8df022991512dcac62b1fe48cf6a..a9180b06fb52ec3f9cbf8f1267a4c448a3afaeb3 100644 (file)
@@ -332,6 +332,8 @@ void iwl_mvm_rx_mpdu_mq(struct iwl_mvm *mvm, struct napi_struct *napi,
        rx_status->freq = ieee80211_channel_to_frequency(desc->channel,
                                                         rx_status->band);
        iwl_mvm_get_signal_strength(mvm, desc, rx_status);
+       /* TSF as indicated by the firmware is at INA time */
+       rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
 
        rcu_read_lock();