Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src-draft/trunk]: src/sys/dev/usb We can not usbwifi_lock_ic() before ieee80...
details: https://anonhg.NetBSD.org/src-all/rev/21f8bb8b2d32
branches: trunk
changeset: 375205:21f8bb8b2d32
user: Martin Husemann <martin%NetBSD.org@localhost>
date: Wed Feb 09 19:44:29 2022 +0100
description:
We can not usbwifi_lock_ic() before ieee80211_ifattach()
diffstat:
sys/dev/usb/usbwifi.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (39 lines):
diff -r 86bab81cc777 -r 21f8bb8b2d32 sys/dev/usb/usbwifi.c
--- a/sys/dev/usb/usbwifi.c Wed Feb 09 11:58:30 2022 +0100
+++ b/sys/dev/usb/usbwifi.c Wed Feb 09 19:44:29 2022 +0100
@@ -625,7 +625,7 @@ usbwifi_tx_list_fini(struct usbwifi * co
{
struct usbwifi_cdata * const cd = uw_cdata(uw);
- if (cd->uwcd_rx_chains[0].uwscd_chain == NULL)
+ if (cd->uwcd_tx_chains[0].uwscd_chain == NULL)
return; /* incomplete init */
for (size_t i = 0; i < uw->uw_txpipes; i++) {
@@ -1204,9 +1204,6 @@ usbwifi_ic_attach(struct usbwifi *uw, in
mutex_init(&uwp->uwp_txlock, MUTEX_DEFAULT, IPL_SOFTUSB);
mutex_init(&uwp->uwp_rxlock, MUTEX_DEFAULT, IPL_SOFTUSB);
- uw->uw_pri = uwp;
- usbwifi_lock_ic(uw);
-
uw->uw_ic.ic_txstream = num_tx_chains;
uw->uw_ic.ic_rxstream = num_rx_chains;
uw->uw_ic.ic_flags = flags;
@@ -1218,11 +1215,14 @@ usbwifi_ic_attach(struct usbwifi *uw, in
* quality of service to a pipe index.
*/
for (int i = 0; i < uw->uw_ic.ic_txstream; i++) {
- uw->uw_pri->uwp_sendq[i].ifq_maxlen = ifqmaxlen;
- IFQ_LOCK_INIT(&uw->uw_pri->uwp_sendq[i]);
+ uwp->uwp_sendq[i].ifq_maxlen = ifqmaxlen;
+ IFQ_LOCK_INIT(&uwp->uwp_sendq[i]);
}
ieee80211_ifattach(&uw->uw_ic);
+
+ uw->uw_pri = uwp;
+ usbwifi_lock_ic(uw);
uw->uw_ic.ic_raw_xmit = usbwifi_raw_xmit;
usbwifi_rx_list_alloc(uw);
Home |
Main Index |
Thread Index |
Old Index