diff options
Diffstat (limited to 'sys/kern/kern_lock.c')
-rw-r--r-- | sys/kern/kern_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_lock.c b/sys/kern/kern_lock.c index a2835c3..351643e 100644 --- a/sys/kern/kern_lock.c +++ b/sys/kern/kern_lock.c @@ -102,7 +102,7 @@ lockmgr_init(void *dummy __unused) } lock_mtx_array = (struct mtx *)malloc(sizeof(struct mtx) * lock_nmtx, - M_CACHE, M_WAITOK); + M_CACHE, M_WAITOK | M_ZERO); for (i = 0; i < lock_nmtx; i++) mtx_init(&lock_mtx_array[i], "lockmgr interlock", MTX_DEF); } |