Remove MTX_NOPROFILE from atrtc_lock, it was inappropriately copy/pasted
from the i8254 driver when I created separate mutexes for each. The i8254 driver could be the active timecounter, leading to recursion during mutex profiling, but the atrtc driver cannot be a timecounter, so it isn't needed.
This commit is contained in:
parent
d570044ce1
commit
4b502f0016
@ -63,7 +63,7 @@ __FBSDID("$FreeBSD$");
|
||||
* on x86 platforms.
|
||||
*/
|
||||
struct mtx atrtc_lock;
|
||||
MTX_SYSINIT(atrtc_lock_init, &atrtc_lock, "atrtc", MTX_SPIN | MTX_NOPROFILE);
|
||||
MTX_SYSINIT(atrtc_lock_init, &atrtc_lock, "atrtc", MTX_SPIN);
|
||||
|
||||
int atrtcclock_disable = 0;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user