Re: git: 78cfa762ebf2 - main - callout: Move per-CPU callout state into the dpcpu region

From: Hans Petter Selasky <hps_at_selasky.org>
Date: Wed, 26 Apr 2023 14:42:06 UTC
On 4/26/23 16:13, Mark Johnston wrote:
> -	mtx_init(&cc->cc_lock, "callout", NULL, MTX_SPIN);
> +	mtx_init(&cc->cc_lock, "callout", NULL, MTX_SPIN | MTX_NEW);

Is the MTX_NEW needed? Shouldn't the DCPU memory be zeroed by default?

--HPS