summaryrefslogtreecommitdiffstats
path: root/sys/geom
diff options
context:
space:
mode:
Diffstat (limited to 'sys/geom')
-rw-r--r--sys/geom/geom_event.c2
-rw-r--r--sys/geom/geom_io.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom_event.c b/sys/geom/geom_event.c
index f565d14..6f1eb0d 100644
--- a/sys/geom/geom_event.c
+++ b/sys/geom/geom_event.c
@@ -296,5 +296,5 @@ void
g_event_init()
{
- mtx_init(&g_doorlock, "GEOM orphanage", MTX_DEF);
+ mtx_init(&g_doorlock, "GEOM orphanage", NULL, MTX_DEF);
}
diff --git a/sys/geom/geom_io.c b/sys/geom/geom_io.c
index b070448..99e824d 100644
--- a/sys/geom/geom_io.c
+++ b/sys/geom/geom_io.c
@@ -89,7 +89,7 @@ g_bioq_init(struct g_bioq *bq)
{
TAILQ_INIT(&bq->bio_queue);
- mtx_init(&bq->bio_queue_lock, "bio queue", MTX_DEF);
+ mtx_init(&bq->bio_queue_lock, "bio queue", NULL, MTX_DEF);
}
static struct bio *
OpenPOWER on IntegriCloud