Kaynağa Gözat

qcacld-3.0: Fix Tx action frame failed for no ROC

For all action frames in sta mode,  wpa supplicant always set off chan
flag as 1, hope ROC(remain on channel) cmd is sent by driver before tx.
But CR2423341 will override off chan flag to 0 if tx channel is same as
home channel after ref sta connected.
DPP action fames of report connection status result is sent without
protection of ROC.
But WMI_OBSS_SCAN_ENABLE_CMDID is sent to F/W after sta key installed,
before WMI_MGMT_TX_SEND_CMDID for race condition of scheduler thread
and wpa_supplicant.
Tx during OBSS scan may fail.

For mgmt tx, just follow off chan flag from upper layer, don't
override it in driver.
Then for all action frame tx from wpa supplicant in sta mode, ROC is
send to avoid failure for off channel issue.
Once Tx completed, ROC is cancelled.

Change-Id: I59944153e6a8563ed244891af33e89698ce85826
CRs-Fixed: 3069810
Jianmin Zhu 3 yıl önce
ebeveyn
işleme
59a7e5f195
1 değiştirilmiş dosya ile 0 ekleme ve 32 silme
  1. 0 32
      core/hdd/src/wlan_hdd_p2p.c

+ 0 - 32
core/hdd/src/wlan_hdd_p2p.c

@@ -269,36 +269,6 @@ int wlan_hdd_cfg80211_cancel_remain_on_channel(struct wiphy *wiphy,
 	return errno;
 }
 
-/**
- * wlan_hdd_validate_and_override_offchan() - To validate and override offchan
- * @adapter: hdd adapter of vdev
- * @chan: channel info of mgmt to be sent
- * @offchan: off channel flag to check and override
- *
- * This function is to validate the channel info against adapter current state
- * and home channel, if off channel not needed, override offchan flag.
- *
- * Return: None
- */
-static void
-wlan_hdd_validate_and_override_offchan(struct hdd_adapter *adapter,
-				       struct ieee80211_channel *chan,
-				       bool *offchan)
-{
-	qdf_freq_t home_ch_freq;
-
-	if (!offchan || !chan || !(*offchan))
-		return;
-
-	home_ch_freq = hdd_get_adapter_home_channel(adapter);
-
-	if (chan->center_freq == home_ch_freq) {
-		hdd_debug("override offchan to 0 at home channel %d",
-			  home_ch_freq);
-		*offchan = false;
-	}
-}
-
 static int __wlan_hdd_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
 			      struct ieee80211_channel *chan, bool offchan,
 			      unsigned int wait,
@@ -361,8 +331,6 @@ static int __wlan_hdd_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
 	hdd_debug("wait:%d offchan:%d do_not_wait_ack:%d",
 		  wait, offchan, dont_wait_for_ack);
 
-	wlan_hdd_validate_and_override_offchan(adapter, chan, &offchan);
-
 	vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_P2P_ID);
 	if (!vdev) {
 		hdd_err("vdev is NULL");