mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 06:46:49 +07:00
staging: rtl8723au: OnProbeReq23a(): is_valid_p2p_probereq is always false
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d3c6094950
commit
8e64bc584d
@ -669,7 +669,6 @@ OnProbeReq23a(struct rtw_adapter *padapter, struct recv_frame *precv_frame)
|
||||
struct sk_buff *skb = precv_frame->pkt;
|
||||
struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) skb->data;
|
||||
int len = skb->len;
|
||||
u8 is_valid_p2p_probereq = false;
|
||||
|
||||
if (check_fwstate(pmlmepriv, WIFI_STATION_STATE))
|
||||
return _SUCCESS;
|
||||
@ -693,17 +692,14 @@ OnProbeReq23a(struct rtw_adapter *padapter, struct recv_frame *precv_frame)
|
||||
if (!ie)
|
||||
goto out;
|
||||
|
||||
if (is_valid_p2p_probereq == false) {
|
||||
if ((ie[1] &&
|
||||
memcmp(ie + 2, cur->Ssid.ssid, cur->Ssid.ssid_len)) ||
|
||||
(ie[1] == 0 && pmlmeinfo->hidden_ssid_mode)) {
|
||||
return _SUCCESS;
|
||||
}
|
||||
if ((ie[1] && memcmp(ie + 2, cur->Ssid.ssid, cur->Ssid.ssid_len)) ||
|
||||
(ie[1] == 0 && pmlmeinfo->hidden_ssid_mode)) {
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
if (check_fwstate(pmlmepriv, _FW_LINKED) &&
|
||||
pmlmepriv->cur_network.join_res)
|
||||
issue_probersp23a(padapter, mgmt->sa, is_valid_p2p_probereq);
|
||||
issue_probersp23a(padapter, mgmt->sa, false);
|
||||
|
||||
out:
|
||||
return _SUCCESS;
|
||||
|
Loading…
Reference in New Issue
Block a user