Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Switch psz_ev_excl to static evcnt.



details:   https://anonhg.NetBSD.org/src/rev/2f0d6b25b4f6
branches:  trunk
changeset: 465824:2f0d6b25b4f6
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Thu Dec 05 03:21:29 2019 +0000

description:
Switch psz_ev_excl to static evcnt.

diffstat:

 sys/kern/subr_pserialize.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (38 lines):

diff -r 5de1f593a419 -r 2f0d6b25b4f6 sys/kern/subr_pserialize.c
--- a/sys/kern/subr_pserialize.c        Thu Dec 05 03:21:17 2019 +0000
+++ b/sys/kern/subr_pserialize.c        Thu Dec 05 03:21:29 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: subr_pserialize.c,v 1.16 2019/12/05 03:21:17 riastradh Exp $   */
+/*     $NetBSD: subr_pserialize.c,v 1.17 2019/12/05 03:21:29 riastradh Exp $   */
 
 /*-
  * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_pserialize.c,v 1.16 2019/12/05 03:21:17 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_pserialize.c,v 1.17 2019/12/05 03:21:29 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -47,7 +47,9 @@
 };
 
 static kmutex_t                        psz_lock        __cacheline_aligned;
-static struct evcnt            psz_ev_excl     __cacheline_aligned;
+static struct evcnt            psz_ev_excl     __cacheline_aligned =
+    EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "pserialize", "exclusive access");
+EVCNT_ATTACH_STATIC(psz_ev_excl);
 
 /*
  * pserialize_init:
@@ -59,8 +61,6 @@
 {
 
        mutex_init(&psz_lock, MUTEX_DEFAULT, IPL_NONE);
-       evcnt_attach_dynamic(&psz_ev_excl, EVCNT_TYPE_MISC, NULL,
-           "pserialize", "exclusive access");
 }
 
 /*



Home | Main Index | Thread Index | Old Index