mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 04:34:03 +02:00
wifi: brcmfmac: use pre-assigned cookie for remain_on_channel and mgmt_tx
Stop generating cookies in brcmf_p2p_remain_on_channel() and brcmf_cfg80211_mgmt_tx(). For remain_on_channel, remove the cookie increment from brcmf_p2p_discover_listen() and store the pre-assigned cookie in p2p->remain_on_channel_cookie. The expiry callback in brcmf_p2p_notify_listen_complete() already reads from that field. For mgmt_tx, remove the "*cookie = 0" assignments in brcmf_cfg80211_mgmt_tx() and the cyw extension. The pre-assigned cookie is then correctly passed to cfg80211_mgmt_tx_status() which already uses *cookie. Assisted-by: Claude:claude-sonnet-4-6 Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com> Link: https://patch.msgid.link/20260731123509.1975281-6-arend.vanspriel@broadcom.com Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
70557cadc8
commit
c277330183
|
|
@ -5573,8 +5573,6 @@ brcmf_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
|
|||
|
||||
brcmf_dbg(TRACE, "Enter\n");
|
||||
|
||||
*cookie = 0;
|
||||
|
||||
mgmt = (const struct ieee80211_mgmt *)buf;
|
||||
|
||||
if (!ieee80211_is_mgmt(mgmt->frame_control)) {
|
||||
|
|
|
|||
|
|
@ -123,7 +123,6 @@ int brcmf_cyw_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
|
|||
if (!ieee80211_is_auth(mgmt->frame_control))
|
||||
return brcmf_cfg80211_mgmt_tx(wiphy, wdev, params, cookie);
|
||||
|
||||
*cookie = 0;
|
||||
vif = container_of(wdev, struct brcmf_cfg80211_vif, wdev);
|
||||
|
||||
reinit_completion(&vif->mgmt_tx);
|
||||
|
|
|
|||
|
|
@ -979,10 +979,8 @@ brcmf_p2p_discover_listen(struct brcmf_p2p_info *p2p, u16 channel, u32 duration)
|
|||
p2p->cfg->d11inf.encchspec(&ch);
|
||||
err = brcmf_p2p_set_discover_state(vif->ifp, WL_P2P_DISC_ST_LISTEN,
|
||||
ch.chspec, (u16)duration);
|
||||
if (!err) {
|
||||
if (!err)
|
||||
set_bit(BRCMF_P2P_STATUS_DISCOVER_LISTEN, &p2p->status);
|
||||
p2p->remain_on_channel_cookie++;
|
||||
}
|
||||
exit:
|
||||
return err;
|
||||
}
|
||||
|
|
@ -1020,7 +1018,7 @@ int brcmf_p2p_remain_on_channel(struct wiphy *wiphy, struct wireless_dev *wdev,
|
|||
goto exit;
|
||||
|
||||
memcpy(&p2p->remain_on_channel, channel, sizeof(*channel));
|
||||
*cookie = p2p->remain_on_channel_cookie;
|
||||
p2p->remain_on_channel_cookie = *cookie;
|
||||
cfg80211_ready_on_channel(wdev, *cookie, channel, duration, GFP_KERNEL);
|
||||
|
||||
exit:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user