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 Fix rx_mtx locking botch.
details: https://anonhg.NetBSD.org/src-all/rev/2b3b826af030
branches: trunk
changeset: 942267:2b3b826af030
user: Nathanial Sloss <nat%netbsd.org@localhost>
date: Sat Aug 15 19:47:21 2020 +1000
description:
Fix rx_mtx locking botch.
diffstat:
sys/dev/usb/if_urtwn.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (23 lines):
diff -r e3693e72ef2e -r 2b3b826af030 sys/dev/usb/if_urtwn.c
--- a/sys/dev/usb/if_urtwn.c Sat Aug 15 19:46:38 2020 +1000
+++ b/sys/dev/usb/if_urtwn.c Sat Aug 15 19:47:21 2020 +1000
@@ -621,7 +621,7 @@
error = usbd_transfer(data->xfer);
if (__predict_false(error != USBD_NORMAL_COMPLETION &&
error != USBD_IN_PROGRESS))
- goto fail;
+ goto fail_1;
}
mutex_exit(&sc->sc_rx_mtx);
}
@@ -629,7 +629,9 @@
return;
- fail:
+fail_1:
+ mutex_exit(&sc->sc_rx_mtx);
+fail:
sc->sc_dying = 1;
mutex_exit(&sc->sc_write_mtx);
aprint_error_dev(self, "attach failed\n");
Home |
Main Index |
Thread Index |
Old Index