summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/qwx.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/sys/dev/ic/qwx.c b/sys/dev/ic/qwx.c
index fe079d43c26..684210a993d 100644
--- a/sys/dev/ic/qwx.c
+++ b/sys/dev/ic/qwx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qwx.c,v 1.64 2024/08/17 08:12:46 stsp Exp $ */
+/* $OpenBSD: qwx.c,v 1.65 2024/08/18 07:34:45 stsp Exp $ */
/*
* Copyright 2023 Stefan Sperling <stsp@openbsd.org>
@@ -158,6 +158,7 @@ int qwx_wmi_vdev_install_key(struct qwx_softc *,
int qwx_dp_peer_rx_pn_replay_config(struct qwx_softc *, struct qwx_vif *,
struct ieee80211_node *, struct ieee80211_key *, int);
void qwx_setkey_clear(struct qwx_softc *);
+void qwx_vif_free_all(struct qwx_softc *);
int qwx_scan(struct qwx_softc *);
void qwx_scan_abort(struct qwx_softc *);
@@ -348,6 +349,8 @@ qwx_stop(struct ifnet *ifp)
/* power off hardware */
qwx_core_deinit(sc);
+ qwx_vif_free_all(sc);
+
splx(s);
}
@@ -22815,6 +22818,18 @@ qwx_vif_free(struct qwx_softc *sc, struct qwx_vif *arvif)
free(arvif, M_DEVBUF, sizeof(*arvif));
}
+void
+qwx_vif_free_all(struct qwx_softc *sc)
+{
+ struct qwx_vif *arvif;
+
+ while (!TAILQ_EMPTY(&sc->vif_list)) {
+ arvif = TAILQ_FIRST(&sc->vif_list);
+ TAILQ_REMOVE(&sc->vif_list, arvif, entry);
+ qwx_vif_free(sc, arvif);
+ }
+}
+
struct qwx_vif *
qwx_vif_alloc(struct qwx_softc *sc)
{