https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199321
--- Comment #2 from John Baldwin <[email protected]> --- Yes, this is a known issue, but the solutions I have in mind aren't entirely trivial. The "best" solution in my mind is to flesh out the multi-pass boot-time probe stuff more fully that I started so that we are able to initialize things like timers early and then bring up the APs (and scheduler) before most drivers probe. This would allow drivers to properly spread their interrupts across all CPUs from the start rather than having them all start off on 0. The hackish approach is to change individual drivers to defer setting up interrupts until after SI_SUB_SMP via a custom SYSINIT. That's not really great long term of course but would work as a workaround on older systems. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
