mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-06 05:51:28 +07:00
brcmfmac: assure p2pdev is unregistered upon driver unload
When unloading the driver with a p2pdev interface it resulted in a warning upon calling wiphy_unregister() and subsequently a crash in the driver. This patch assures the p2pdev is unregistered calling unregister_wdev() before doing the wiphy_unregister(). Reviewed-by: Hante Meuleman <meuleman@broadcom.com> Reviewed-by: Franky (Zhenhui) Lin <frankyl@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
55479df884
commit
f7a40873d2
@ -6207,10 +6207,8 @@ void brcmf_cfg80211_detach(struct brcmf_cfg80211_info *cfg)
|
|||||||
if (!cfg)
|
if (!cfg)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
WARN_ON(!list_empty(&cfg->vif_list));
|
|
||||||
wiphy_unregister(cfg->wiphy);
|
|
||||||
brcmf_btcoex_detach(cfg);
|
brcmf_btcoex_detach(cfg);
|
||||||
brcmf_p2p_detach(&cfg->p2p);
|
wiphy_unregister(cfg->wiphy);
|
||||||
wl_deinit_priv(cfg);
|
wl_deinit_priv(cfg);
|
||||||
brcmf_free_wiphy(cfg->wiphy);
|
brcmf_free_wiphy(cfg->wiphy);
|
||||||
}
|
}
|
||||||
|
@ -1098,6 +1098,7 @@ void brcmf_detach(struct device *dev)
|
|||||||
|
|
||||||
/* stop firmware event handling */
|
/* stop firmware event handling */
|
||||||
brcmf_fweh_detach(drvr);
|
brcmf_fweh_detach(drvr);
|
||||||
|
brcmf_p2p_detach(&drvr->config->p2p);
|
||||||
|
|
||||||
brcmf_bus_change_state(bus_if, BRCMF_BUS_DOWN);
|
brcmf_bus_change_state(bus_if, BRCMF_BUS_DOWN);
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/netdevice.h>
|
#include <linux/netdevice.h>
|
||||||
#include <linux/etherdevice.h>
|
#include <linux/etherdevice.h>
|
||||||
|
#include <linux/rtnetlink.h>
|
||||||
#include <net/cfg80211.h>
|
#include <net/cfg80211.h>
|
||||||
|
|
||||||
#include <brcmu_wifi.h>
|
#include <brcmu_wifi.h>
|
||||||
@ -2421,8 +2422,9 @@ void brcmf_p2p_detach(struct brcmf_p2p_info *p2p)
|
|||||||
brcmf_p2p_cancel_remain_on_channel(vif->ifp);
|
brcmf_p2p_cancel_remain_on_channel(vif->ifp);
|
||||||
brcmf_p2p_deinit_discovery(p2p);
|
brcmf_p2p_deinit_discovery(p2p);
|
||||||
/* remove discovery interface */
|
/* remove discovery interface */
|
||||||
brcmf_free_vif(vif);
|
rtnl_lock();
|
||||||
p2p->bss_idx[P2PAPI_BSSCFG_DEVICE].vif = NULL;
|
brcmf_p2p_delete_p2pdev(p2p, vif);
|
||||||
|
rtnl_unlock();
|
||||||
}
|
}
|
||||||
/* just set it all to zero */
|
/* just set it all to zero */
|
||||||
memset(p2p, 0, sizeof(*p2p));
|
memset(p2p, 0, sizeof(*p2p));
|
||||||
|
Loading…
Reference in New Issue
Block a user