On Tue, 2019-11-26 at 15:23 -0700, Warner Losh wrote:
> And then there's all the interrupt handlers that aren't marked MPSAFE...
> how to grep for that? I think I may invent a NEEDS_GIANT sort of thing in
> preference to MPSAFE.
I'll bet this gets all or most of them...
grep -R -l 'bus_setup_intr(' * | xargs grep -L MPSAFE
-- Ian