Module Name: src Committed By: riastradh Date: Wed Mar 30 17:02:02 UTC 2022
Modified Files: src/sys/kern: kern_softint.c kern_timeout.c Log Message: kern: Assert softint does not net acquire kernel locks. This redoes previous change where I mistakenly used the CPU's biglock count, which is not necessarily stable -- the softint lwp may sleep on a mutex, and the lwp it interrupted may start up again and release the kernel lock, so by the time the softint lwp wakes up again and the softint function returns, the CPU may not be holding any kernel locks. But the softint lwp should never hold kernel locks except when it's in a (usually, non-MPSAFE) softint function. Same with callout. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/sys/kern/kern_softint.c cvs rdiff -u -r1.68 -r1.69 src/sys/kern/kern_timeout.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.