From 2409ed173be550e1cd773cd5fc922358979dd697 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 26 Dec 2021 12:19:50 +0000 Subject: [PATCH 1/2] umidi(4): Omit needless reference counting. Detaching the mididevs waits for these operations to complete anyway, so there's no need for another layer of reference counting. --- sys/dev/usb/umidi.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/sys/dev/usb/umidi.c b/sys/dev/usb/umidi.c index 07f762516996..89c66701fd80 100644 --- a/sys/dev/usb/umidi.c +++ b/sys/dev/usb/umidi.c @@ -209,9 +209,6 @@ struct umidi_softc { kmutex_t sc_lock; kcondvar_t sc_cv; - kcondvar_t sc_detach_cv; - - int sc_refcnt; }; #ifdef UMIDI_DEBUG @@ -365,8 +362,6 @@ umidi_attach(device_t parent, device_t self, void *aux) mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_SOFTUSB); cv_init(&sc->sc_cv, "umidopcl"); - cv_init(&sc->sc_detach_cv, "umidetcv"); - sc->sc_refcnt = 0; err = alloc_all_endpoints(sc); if (err != USBD_NORMAL_COMPLETION) { @@ -459,9 +454,6 @@ umidi_detach(device_t self, int flags) mutex_enter(&sc->sc_lock); sc->sc_dying = 1; - if (--sc->sc_refcnt >= 0) - if (cv_timedwait(&sc->sc_detach_cv, &sc->sc_lock, hz * 60)) - aprint_error_dev(self, ": didn't detach\n"); mutex_exit(&sc->sc_lock); detach_all_mididevs(sc, flags); @@ -472,7 +464,6 @@ umidi_detach(device_t self, int flags) usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev); mutex_destroy(&sc->sc_lock); - cv_destroy(&sc->sc_detach_cv); cv_destroy(&sc->sc_cv); return 0; @@ -540,16 +531,11 @@ umidi_close(void *addr) mididev->closing = 1; - sc->sc_refcnt++; - if ((mididev->flags & FWRITE) && mididev->out_jack) close_out_jack(mididev->out_jack); if ((mididev->flags & FREAD) && mididev->in_jack) close_in_jack(mididev->in_jack); - if (--sc->sc_refcnt < 0) - cv_broadcast(&sc->sc_detach_cv); - mididev->opened = 0; mididev->closing = 0; } @@ -1731,8 +1717,6 @@ out_jack_output(struct umidi_jack *out_jack, u_char *src, int len, int cin) if (!out_jack->opened) return ENODEV; /* XXX as it was, is this the right errno? */ - sc->sc_refcnt++; - #ifdef UMIDI_DEBUG if (umididebug >= 100) microtime(&umidi_tv); @@ -1791,9 +1775,6 @@ out_jack_output(struct umidi_jack *out_jack, u_char *src, int len, int cin) kpreempt_enable(); } - if (--sc->sc_refcnt < 0) - cv_broadcast(&sc->sc_detach_cv); - return 0; } From 4bc96ad39a3ccda86b60e24ac747d2c99a0bcbda Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 26 Dec 2021 12:22:13 +0000 Subject: [PATCH 2/2] umidi(4): Read sc_dying only under the lock. --- sys/dev/usb/umidi.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/sys/dev/usb/umidi.c b/sys/dev/usb/umidi.c index 89c66701fd80..e6c5af1902f6 100644 --- a/sys/dev/usb/umidi.c +++ b/sys/dev/usb/umidi.c @@ -1792,10 +1792,14 @@ in_intr(struct usbd_xfer *xfer, void *priv, unsigned char *data; uint32_t count; - if (ep->sc->sc_dying || !ep->num_open) + if (!ep->num_open) return; mutex_enter(&sc->sc_lock); + if (sc->sc_dying) { + mutex_exit(&sc->sc_lock); + return; + } usbd_get_xfer_status(xfer, NULL, NULL, &count, NULL); if (0 == count % UMIDI_PACKET_SIZE) { DPRINTFN(200,("%s: input endpoint %p transfer length %u\n", @@ -1861,10 +1865,11 @@ out_intr(struct usbd_xfer *xfer, void *priv, struct umidi_softc *sc = ep->sc; uint32_t count; - if (sc->sc_dying) - return; - mutex_enter(&sc->sc_lock); + if (sc->sc_dying) { + mutex_exit(&sc->sc_lock); + return; + } #ifdef UMIDI_DEBUG if (umididebug >= 200) microtime(&umidi_tv);