svn commit: r330783 - in head/sys: amd64/include isa x86/isa

Hans Petter Selasky hps at selasky.org
Mon Mar 12 13:29:58 UTC 2018


On 03/11/18 21:13, Ian Lepore wrote:
> -struct mtx atrtc_lock;
> +static struct mtx atrtc_lock;
>   MTX_SYSINIT(atrtc_lock_init, &atrtc_lock, "atrtc", MTX_SPIN);
>   
> +struct mtx atrtc_time_lock;
> +MTX_SYSINIT(atrtc_time_lock_init, &atrtc_time_lock, "atrtc", MTX_DEF);

One of my boxes panics now because there are two locks with same name!

I have:
debug.witness.skipspin=0

In /boot/loader.conf.

--HPS


More information about the svn-src-head mailing list