Re: Make midi(4) event filter MP-safe

2023-02-10 Thread Visa Hankala
On Fri, Feb 10, 2023 at 02:56:21PM +, Visa Hankala wrote: > This makes midi(4) event filter MP-safe. > > The logic is similar to audio(4). As knote(9) is safe to use > at IPL_AUDIO, the deferring through soft interrupts is not needed > any longer. > > In mididetach(), the separate

Make midi(4) event filter MP-safe

2023-02-10 Thread Visa Hankala
This makes midi(4) event filter MP-safe. The logic is similar to audio(4). As knote(9) is safe to use at IPL_AUDIO, the deferring through soft interrupts is not needed any longer. In mididetach(), the separate selwakeup() calls are covered by klist_invalidate(). Could someone with actual