From 2e38c9117da0bb996cf88b323541cab8d5fdb08e Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 7 Aug 2022 10:12:45 +0000 Subject: [PATCH 1/4] wm(4): Audit sc->phy.acquire and sc->nvm.acquire. The return value must be used, because some of the acquire/release pairs hold a mutex from acquire to release, and failing to call release, or calling release twice, leads to an inconsistent state. Note: There is one caller, in wm_phy_is_accessible_pchlan, that releases and reacquires the phy. Since acquire can fail, it is not possible for this function to adhere to the contract its caller expects of having the phy acquired. This branch appears to be reachable for WM_T_ICH8, WM_T_ICH9, WM_T_ICH10, WM_T_PCH, and WM_T_PCH2 chips. To fix this properly, either: (a) the contract must change and the callers be updated accordingly, (b) the phy.acquire functions for the affected devices must be made not to fail, or (c) a proof must be furnished that this branch is unreachable for some other reason (but this seems implausible, because if it were true, then, e.g., the WM_T_PCH and WM_T_PCH2 cases in wm_init_phy_workarounds_pchlan would be dead code). --- sys/dev/pci/if_wm.c | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/sys/dev/pci/if_wm.c b/sys/dev/pci/if_wm.c index fd417409cae0..5c2df1983aba 100644 --- a/sys/dev/pci/if_wm.c +++ b/sys/dev/pci/if_wm.c @@ -495,7 +495,7 @@ struct wm_queue { }; struct wm_phyop { - int (*acquire)(struct wm_softc *); + int (*acquire)(struct wm_softc *) __attribute__((warn_unused_result)); void (*release)(struct wm_softc *); int (*readreg_locked)(device_t, int, int, uint16_t *); int (*writereg_locked)(device_t, int, int, uint16_t); @@ -504,7 +504,7 @@ struct wm_phyop { }; struct wm_nvmop { - int (*acquire)(struct wm_softc *); + int (*acquire)(struct wm_softc *) __attribute__((warn_unused_result)); void (*release)(struct wm_softc *); int (*read)(struct wm_softc *, int, int, uint16_t *); }; @@ -5266,7 +5266,11 @@ wm_reset_phy(struct wm_softc *sc) if (wm_phy_resetisblocked(sc)) return -1; - sc->phy.acquire(sc); + if (!sc->phy.acquire(sc)) { + device_printf(sc->sc_dev, "%s: failed to acquire phy\n", + __func__); + return -1; + } reg = CSR_READ(sc, WMREG_CTRL); CSR_WRITE(sc, WMREG_CTRL, reg | CTRL_PHY_RESET); @@ -5577,7 +5581,8 @@ wm_reset(struct wm_softc *sc) break; case WM_T_80003: reg = CSR_READ(sc, WMREG_CTRL) | CTRL_RST; - sc->phy.acquire(sc); + if (!sc->phy.acquire(sc)) + break; CSR_WRITE(sc, WMREG_CTRL, reg); sc->phy.release(sc); break; @@ -5604,7 +5609,8 @@ wm_reset(struct wm_softc *sc) phy_reset = 1; } else device_printf(sc->sc_dev, "XXX reset is blocked!!!\n"); - sc->phy.acquire(sc); + if (!sc->phy.acquire(sc)) + break; CSR_WRITE(sc, WMREG_CTRL, reg); /* Don't insert a completion barrier when reset */ delay(20*1000); @@ -16984,7 +16990,8 @@ wm_k1_workaround_lpt_lp(struct wm_softc *sc, bool link) uint16_t phyreg; if (link && (speed == STATUS_SPEED_1000)) { - sc->phy.acquire(sc); + if (!sc->phy.acquire(sc)) + return -1; int rv = wm_kmrn_readreg_locked(sc, KUMCTRLSTA_OFFSET_K1_CONFIG, &phyreg); if (rv != 0) @@ -17328,7 +17335,10 @@ wm_phy_is_accessible_pchlan(struct wm_softc *sc) wm_set_mdio_slow_mode_hv(sc); rv = wm_gmii_hv_readreg(sc->sc_dev, 2, MII_PHYIDR1, &id1); rv |= wm_gmii_hv_readreg(sc->sc_dev, 2, MII_PHYIDR2, &id2); - sc->phy.acquire(sc); + if (!sc->phy.acquire(sc)) { + panic("%s: unable to reacquire phy", + device_xname(sc->sc_dev)); + } } if ((rv != 0) || MII_INVALIDID(id1) || MII_INVALIDID(id2)) { device_printf(sc->sc_dev, "XXX return with false\n"); From a1946f521fb9bce6bec7cfdedef25f02187ad601 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 7 Aug 2022 09:59:36 +0000 Subject: [PATCH 2/4] wm(4): Remove the non-MP-safe scaffolding. - Where we had #ifndef WM_MPSAFE splnet(), we also had WM_CORE_LOCK, which implies splnet, so just remove the conditional splnet. - Make the core lock unconditional and remove macro indirections. - Pass CALLOUT_MPSAFE, SOFTINT_MPSAFE, and WQ_MPSAFE directly without macro indirections. --- sys/dev/pci/if_wm.c | 129 +++++++++++++------------------------------- 1 file changed, 38 insertions(+), 91 deletions(-) diff --git a/sys/dev/pci/if_wm.c b/sys/dev/pci/if_wm.c index 5c2df1983aba..4b560d2d8c66 100644 --- a/sys/dev/pci/if_wm.c +++ b/sys/dev/pci/if_wm.c @@ -85,7 +85,6 @@ __KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.752 2022/08/05 05:50:54 skrll Exp $"); #ifdef _KERNEL_OPT -#include "opt_net_mpsafe.h" #include "opt_if_wm.h" #endif @@ -173,17 +172,6 @@ __KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.752 2022/08/05 05:50:54 skrll Exp $"); #define DPRINTF(sc, x, y) __nothing #endif /* WM_DEBUG */ -#ifdef NET_MPSAFE -#define WM_MPSAFE 1 -#define WM_CALLOUT_FLAGS CALLOUT_MPSAFE -#define WM_SOFTINT_FLAGS SOFTINT_MPSAFE -#define WM_WORKQUEUE_FLAGS WQ_PERCPU | WQ_MPSAFE -#else -#define WM_CALLOUT_FLAGS 0 -#define WM_SOFTINT_FLAGS 0 -#define WM_WORKQUEUE_FLAGS WQ_PERCPU -#endif - #define WM_WORKQUEUE_PRI PRI_SOFTNET /* @@ -716,13 +704,6 @@ struct wm_softc { #endif }; -#define WM_CORE_LOCK(_sc) \ - if ((_sc)->sc_core_lock) mutex_enter((_sc)->sc_core_lock) -#define WM_CORE_UNLOCK(_sc) \ - if ((_sc)->sc_core_lock) mutex_exit((_sc)->sc_core_lock) -#define WM_CORE_LOCKED(_sc) \ - (!(_sc)->sc_core_lock || mutex_owned((_sc)->sc_core_lock)) - #define WM_RXCHAIN_RESET(rxq) \ do { \ (rxq)->rxq_tailp = &(rxq)->rxq_head; \ @@ -1983,7 +1964,7 @@ wm_attach(device_t parent, device_t self, void *aux) sc->sc_debug = WM_DEBUG_DEFAULT; #endif sc->sc_dev = self; - callout_init(&sc->sc_tick_ch, WM_CALLOUT_FLAGS); + callout_init(&sc->sc_tick_ch, CALLOUT_MPSAFE); callout_setfunc(&sc->sc_tick_ch, wm_tick, sc); sc->sc_core_stopping = false; @@ -2222,7 +2203,7 @@ alloc_retry: snprintf(wqname, sizeof(wqname), "%sTxRx", device_xname(sc->sc_dev)); error = workqueue_create(&sc->sc_queue_wq, wqname, wm_handle_queue_work, sc, WM_WORKQUEUE_PRI, IPL_NET, - WM_WORKQUEUE_FLAGS); + WQ_PERCPU | WQ_MPSAFE); if (error) { aprint_error_dev(sc->sc_dev, "unable to create TxRx workqueue\n"); @@ -2269,7 +2250,7 @@ alloc_retry: aprint_verbose_dev(sc->sc_dev, "Communication Streaming Architecture\n"); if (sc->sc_type == WM_T_82547) { - callout_init(&sc->sc_txfifo_ch, WM_CALLOUT_FLAGS); + callout_init(&sc->sc_txfifo_ch, CALLOUT_MPSAFE); callout_setfunc(&sc->sc_txfifo_ch, wm_82547_txfifo_stall, sc); aprint_verbose_dev(sc->sc_dev, @@ -3065,11 +3046,7 @@ alloc_retry: aprint_verbose_dev(sc->sc_dev, "%s\n", buf); } -#ifdef WM_MPSAFE sc->sc_core_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NET); -#else - sc->sc_core_lock = NULL; -#endif /* Initialize the media structures accordingly. */ if (sc->sc_mediatype == WM_MEDIATYPE_COPPER) @@ -3082,9 +3059,7 @@ alloc_retry: strlcpy(ifp->if_xname, xname, IFNAMSIZ); ifp->if_softc = sc; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; -#ifdef WM_MPSAFE ifp->if_extflags = IFEF_MPSAFE; -#endif ifp->if_ioctl = wm_ioctl; if ((sc->sc_flags & WM_F_NEWQUEUE) != 0) { ifp->if_start = wm_nq_start; @@ -3495,11 +3470,11 @@ wm_detach(device_t self, int flags __unused) rnd_detach_source(&sc->rnd_source); /* Tell the firmware about the release */ - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); wm_release_manageability(sc); wm_release_hw_control(sc); wm_enable_wakeup(sc); - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); mii_detach(&sc->sc_mii, MII_PHY_ANY, MII_OFFSET_ANY); @@ -3764,17 +3739,11 @@ wm_tick(void *arg) struct ifnet *ifp = &sc->sc_ethercom.ec_if; uint64_t crcerrs, algnerrc, symerrc, mpc, colc, sec, rlec, rxerrc, cexterr; -#ifndef WM_MPSAFE - int s = splnet(); -#endif - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); if (sc->sc_core_stopping) { - WM_CORE_UNLOCK(sc); -#ifndef WM_MPSAFE - splx(s); -#endif + mutex_exit(sc->sc_core_lock); return; } @@ -3901,10 +3870,7 @@ wm_tick(void *arg) else wm_tbi_tick(sc); - WM_CORE_UNLOCK(sc); -#ifndef WM_MPSAFE - splx(s); -#endif + mutex_exit(sc->sc_core_lock); if (wm_watchdog(ifp)) callout_schedule(&sc->sc_tick_ch, hz); @@ -3924,7 +3890,8 @@ wm_ifflags_cb(struct ethercom *ec) device_xname(sc->sc_dev), __func__)); KASSERT(IFNET_LOCKED(ifp)); - WM_CORE_LOCK(sc); + + mutex_enter(sc->sc_core_lock); /* * Check for if_flags. @@ -3958,7 +3925,7 @@ ec: out: if (needreset) rc = ENETRESET; - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); return rc; } @@ -4031,12 +3998,9 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) KASSERT(IFNET_LOCKED(ifp)); } -#ifndef WM_MPSAFE - const int s = splnet(); -#endif switch (cmd) { case SIOCSIFMEDIA: - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); /* Flow control requires full-duplex mode. */ if (IFM_SUBTYPE(ifr->ifr_media) == IFM_AUTO || (ifr->ifr_media & IFM_FDX) == 0) @@ -4049,7 +4013,7 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) } sc->sc_flowflags = ifr->ifr_media & IFM_ETH_FMASK; } - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); error = ifmedia_ioctl(ifp, ifr, &sc->sc_mii.mii_media, cmd); if (error == 0 && wm_phy_need_linkdown_discard(sc)) { if (IFM_SUBTYPE(ifr->ifr_media) == IFM_NONE) { @@ -4061,7 +4025,7 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) } break; case SIOCINITIFADDR: - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); if (ifa->ifa_addr->sa_family == AF_LINK) { sdl = satosdl(ifp->if_dl->ifa_addr); (void)sockaddr_dl_setaddr(sdl, sdl->sdl_len, @@ -4069,10 +4033,10 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) /* Unicast address is the first multicast entry */ wm_set_filter(sc); error = 0; - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); break; } - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); /*FALLTHROUGH*/ default: if (cmd == SIOCSIFFLAGS && wm_phy_need_linkdown_discard(sc)) { @@ -4084,14 +4048,10 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) wm_set_linkdown_discard(sc); } } -#ifdef WM_MPSAFE const int s = splnet(); -#endif /* It may call wm_start, so unlock here */ error = ether_ioctl(ifp, cmd, data); -#ifdef WM_MPSAFE splx(s); -#endif if (error != ENETRESET) break; @@ -4100,7 +4060,7 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) if (cmd == SIOCSIFCAP) error = if_init(ifp); else if (cmd == SIOCADDMULTI || cmd == SIOCDELMULTI) { - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); if (sc->sc_if_flags & IFF_RUNNING) { /* * Multicast list has changed; set the hardware filter @@ -4108,14 +4068,11 @@ wm_ioctl(struct ifnet *ifp, u_long cmd, void *data) */ wm_set_filter(sc); } - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); } break; } -#ifndef WM_MPSAFE - splx(s); -#endif return error; } @@ -6069,7 +6026,7 @@ wm_softint_establish_queue(struct wm_softc *sc, int qidx, int intr_idx) wmq->wmq_id = qidx; wmq->wmq_intr_idx = intr_idx; - wmq->wmq_si = softint_establish(SOFTINT_NET | WM_SOFTINT_FLAGS, + wmq->wmq_si = softint_establish(SOFTINT_NET | SOFTINT_MPSAFE, wm_handle_queue, wmq); if (wmq->wmq_si != NULL) return 0; @@ -6100,9 +6057,7 @@ wm_setup_legacy(struct wm_softc *sc) } intrstr = pci_intr_string(pc, sc->sc_intrs[0], intrbuf, sizeof(intrbuf)); -#ifdef WM_MPSAFE pci_intr_setattr(pc, &sc->sc_intrs[0], PCI_INTR_MPSAFE, true); -#endif sc->sc_ihs[0] = pci_intr_establish_xname(pc, sc->sc_intrs[0], IPL_NET, wm_intr_legacy, sc, device_xname(sc->sc_dev)); if (sc->sc_ihs[0] == NULL) { @@ -6163,10 +6118,8 @@ wm_setup_msix(struct wm_softc *sc) intrstr = pci_intr_string(pc, sc->sc_intrs[intr_idx], intrbuf, sizeof(intrbuf)); -#ifdef WM_MPSAFE pci_intr_setattr(pc, &sc->sc_intrs[intr_idx], PCI_INTR_MPSAFE, true); -#endif memset(intr_xname, 0, sizeof(intr_xname)); snprintf(intr_xname, sizeof(intr_xname), "%sTXRX%d", device_xname(sc->sc_dev), qidx); @@ -6202,9 +6155,7 @@ wm_setup_msix(struct wm_softc *sc) /* LINK */ intrstr = pci_intr_string(pc, sc->sc_intrs[intr_idx], intrbuf, sizeof(intrbuf)); -#ifdef WM_MPSAFE pci_intr_setattr(pc, &sc->sc_intrs[intr_idx], PCI_INTR_MPSAFE, true); -#endif memset(intr_xname, 0, sizeof(intr_xname)); snprintf(intr_xname, sizeof(intr_xname), "%sLINK", device_xname(sc->sc_dev)); @@ -6244,7 +6195,7 @@ wm_unset_stopping_flags(struct wm_softc *sc) { int i; - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); /* Must unset stopping flags in ascending order. */ for (i = 0; i < sc->sc_nqueues; i++) { @@ -6268,7 +6219,7 @@ wm_set_stopping_flags(struct wm_softc *sc) { int i; - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); sc->sc_core_stopping = true; @@ -6541,9 +6492,9 @@ wm_init(struct ifnet *ifp) KASSERT(IFNET_LOCKED(ifp)); - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); ret = wm_init_locked(ifp); - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); return ret; } @@ -6559,7 +6510,7 @@ wm_init_locked(struct ifnet *ifp) DPRINTF(sc, WM_DEBUG_INIT, ("%s: %s called\n", device_xname(sc->sc_dev), __func__)); KASSERT(IFNET_LOCKED(ifp)); - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); /* * *_HDR_ALIGNED_P is constant 1 if __NO_STRICT_ALIGMENT is set. @@ -7142,9 +7093,9 @@ wm_stop(struct ifnet *ifp, int disable) ASSERT_SLEEPABLE(); KASSERT(IFNET_LOCKED(ifp)); - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); wm_stop_locked(ifp, disable ? true : false, true); - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); /* * After wm_set_stopping_flags(), it is guaranteed that @@ -7168,7 +7119,7 @@ wm_stop_locked(struct ifnet *ifp, bool disable, bool wait) DPRINTF(sc, WM_DEBUG_INIT, ("%s: %s called\n", device_xname(sc->sc_dev), __func__)); KASSERT(IFNET_LOCKED(ifp)); - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); wm_set_stopping_flags(sc); @@ -8371,9 +8322,7 @@ wm_start(struct ifnet *ifp) struct wm_softc *sc = ifp->if_softc; struct wm_txqueue *txq = &sc->sc_queue[0].wmq_txq; -#ifdef WM_MPSAFE KASSERT(if_is_mpsafe(ifp)); -#endif /* * if_obytes and if_omcasts are added in if_transmit()@if.c. */ @@ -8980,9 +8929,7 @@ wm_nq_start(struct ifnet *ifp) struct wm_softc *sc = ifp->if_softc; struct wm_txqueue *txq = &sc->sc_queue[0].wmq_txq; -#ifdef WM_MPSAFE KASSERT(if_is_mpsafe(ifp)); -#endif /* * if_obytes and if_omcasts are added in if_transmit()@if.c. */ @@ -9920,7 +9867,7 @@ wm_linkintr_gmii(struct wm_softc *sc, uint32_t icr) bool link; int rv; - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); DPRINTF(sc, WM_DEBUG_LINK, ("%s: %s:\n", device_xname(dev), __func__)); @@ -10320,7 +10267,7 @@ static void wm_linkintr(struct wm_softc *sc, uint32_t icr) { - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); if (sc->sc_flags & WM_F_HAS_MII) wm_linkintr_gmii(sc, icr); @@ -10434,10 +10381,10 @@ wm_intr_legacy(void *arg) mutex_exit(rxq->rxq_lock); - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); if (sc->sc_core_stopping) { - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); return 1; } @@ -10448,7 +10395,7 @@ wm_intr_legacy(void *arg) if ((icr & ICR_GPI(0)) != 0) device_printf(sc->sc_dev, "got module interrupt\n"); - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); if (icr & ICR_RXO) { #if defined(WM_DEBUG) @@ -10639,7 +10586,7 @@ wm_linkintr_msix(void *arg) bool has_rxo; reg = CSR_READ(sc, WMREG_ICR); - WM_CORE_LOCK(sc); + mutex_enter(sc->sc_core_lock); DPRINTF(sc, WM_DEBUG_LINK, ("%s: LINK: got link intr. ICR = %08x\n", device_xname(sc->sc_dev), reg)); @@ -10684,7 +10631,7 @@ wm_linkintr_msix(void *arg) out: - WM_CORE_UNLOCK(sc); + mutex_exit(sc->sc_core_lock); if (sc->sc_type == WM_T_82574) { if (!has_rxo) @@ -11376,7 +11323,7 @@ wm_gmii_mediachange(struct ifnet *ifp) DPRINTF(sc, WM_DEBUG_GMII, ("%s: %s called\n", device_xname(sc->sc_dev), __func__)); - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); if ((sc->sc_if_flags & IFF_UP) == 0) return 0; @@ -11451,7 +11398,7 @@ wm_gmii_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr) { struct wm_softc *sc = ifp->if_softc; - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); ether_mediastatus(ifp, ifmr); ifmr->ifm_active = (ifmr->ifm_active & ~IFM_ETH_FMASK) @@ -13181,7 +13128,7 @@ wm_tbi_tick(struct wm_softc *sc) struct ifmedia_entry *ife = mii->mii_media.ifm_cur; uint32_t status; - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); status = CSR_READ(sc, WMREG_STATUS); @@ -13443,7 +13390,7 @@ wm_serdes_tick(struct wm_softc *sc) struct ifmedia_entry *ife = mii->mii_media.ifm_cur; uint32_t reg; - KASSERT(WM_CORE_LOCKED(sc)); + KASSERT(mutex_owned(sc->sc_core_lock)); mii->mii_media_status = IFM_AVALID; mii->mii_media_active = IFM_ETHER; From 7cfe2099d6cdcd8de2376824cfe8d9bd69b360ea Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 7 Aug 2022 10:32:48 +0000 Subject: [PATCH 3/4] uirda(4): Unconditionally initializes mutexes and selq on attach. We're going to unconditionally destroy them on detach. Reported-by: syzbot+6b8aea3a51d8b1e5ab61@syzkaller.appspotmail.com https://syzkaller.appspot.com/bug?id=ec5ed628986cba5aab5705691596a2d27b0301fc --- sys/dev/usb/uirda.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/usb/uirda.c b/sys/dev/usb/uirda.c index c25fa54bbdcb..b8cdcf1a1c3a 100644 --- a/sys/dev/usb/uirda.c +++ b/sys/dev/usb/uirda.c @@ -201,6 +201,10 @@ uirda_attach(device_t parent, device_t self, void *aux) sc->sc_udev = dev; sc->sc_iface = iface; + mutex_init(&sc->sc_wr_buf_lk, MUTEX_DEFAULT, IPL_NONE); + mutex_init(&sc->sc_rd_buf_lk, MUTEX_DEFAULT, IPL_NONE); + selinit(&sc->sc_rd_sel); + if (sc->sc_hdszi == 0) sc->sc_hdszi = UIRDA_INPUT_HEADER_SIZE; @@ -280,10 +284,6 @@ uirda_attach(device_t parent, device_t self, void *aux) usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev); - mutex_init(&sc->sc_wr_buf_lk, MUTEX_DEFAULT, IPL_NONE); - mutex_init(&sc->sc_rd_buf_lk, MUTEX_DEFAULT, IPL_NONE); - selinit(&sc->sc_rd_sel); - ia.ia_type = IR_TYPE_IRFRAME; ia.ia_methods = sc->sc_irm ? sc->sc_irm : &uirda_methods; ia.ia_handle = sc; From 3ad982d540f0f29f916ab0ce3dc4c93d3c95fb89 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 7 Aug 2022 11:02:03 +0000 Subject: [PATCH 4/4] bsd.kmodule.mk: Build modules with KDTRACE_HOOKS if MKDTRACE=yes. --- external/cddl/osnet/dev/sdt/sdt.c | 1 - share/mk/bsd.kmodule.mk | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/external/cddl/osnet/dev/sdt/sdt.c b/external/cddl/osnet/dev/sdt/sdt.c index 23e27e95a549..b18ba093f3cd 100644 --- a/external/cddl/osnet/dev/sdt/sdt.c +++ b/external/cddl/osnet/dev/sdt/sdt.c @@ -65,7 +65,6 @@ __KERNEL_RCSID(0, "$NetBSD: sdt.c,v 1.21 2022/03/28 12:33:20 riastradh Exp $"); #include #include #include -#define KDTRACE_HOOKS #include #include diff --git a/share/mk/bsd.kmodule.mk b/share/mk/bsd.kmodule.mk index 8c3980b5cc59..15851e52c586 100644 --- a/share/mk/bsd.kmodule.mk +++ b/share/mk/bsd.kmodule.mk @@ -30,6 +30,7 @@ CFLAGS+= -ffreestanding ${COPTS} CPPFLAGS+= -nostdinc -I. -I${.CURDIR} -isystem $S -isystem $S/arch CPPFLAGS+= -isystem ${S}/../common/include CPPFLAGS+= -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR +CPPFLAGS+= ${${MKDTRACE:Uno} != "no" :? -DKDTRACE_HOOKS :} CWARNFLAGS.clang+= -Wno-error=constant-conversion