Download raw body.
sys/ihidev: prevent crash on interrupt storm
> From: Vitaliy Makkoveev <otto@bsdbox.dev> > Date: Wed, 25 Dec 2024 01:33:40 +0300 > > > On 25 Dec 2024, at 01:26, Vitaliy Makkoveev <otto@bsdbox.dev> wrote: > > > > delay(9) is arch specific, IIRC it doesn’t interrupts on x86. > > Should be "it doesn’t block interrupts on x86." It doesn't block interrupts on any architecture. However, interrupts are blocked during "autoconf". So our drivers can't rely on interrupts being delivered in their attach functions and need to poll instead.
sys/ihidev: prevent crash on interrupt storm