Michal Kazior <michal.kazior@xxxxxxxxx> writes: > FW creates self-peer for AP internally. > > This prevents ath10k from trying to create > explicit self-peer during hw recovery and thus > prevents a timeout and a warning during teardown: > > ath10k: removing stale peer $AP_BSSID from vdev_id 0 > > Signed-off-by: Michal Kazior <michal.kazior@xxxxxxxxx> [...] > --- a/drivers/net/wireless/ath/ath10k/mac.c > +++ b/drivers/net/wireless/ath/ath10k/mac.c > @@ -2953,7 +2953,8 @@ static void ath10k_bss_info_changed(struct ieee80211_hw *hw, > arvif->u.ap.hidden_ssid = info->hidden_ssid; > } > > - if (changed & BSS_CHANGED_BSSID) { > + if (changed & BSS_CHANGED_BSSID && > + vif->type != NL80211_IFTYPE_AP) { > if (!is_zero_ether_addr(info->bssid)) { > ath10k_dbg(ATH10K_DBG_MAC, > "mac vdev %d create peer %pM\n", I think this deserves a comment, at least "Firmware creates self-peer in AP mode automatically" or something like that. -- Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html