summaryrefslogtreecommitdiffstats
path: root/sys/geom/geom_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/geom/geom_io.c')
-rw-r--r--sys/geom/geom_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom_io.c b/sys/geom/geom_io.c
index b9ec513..446702a 100644
--- a/sys/geom/geom_io.c
+++ b/sys/geom/geom_io.c
@@ -313,7 +313,7 @@ g_io_schedule_down(struct thread *tp __unused)
struct mtx mymutex;
bzero(&mymutex, sizeof mymutex);
- mtx_init(&mymutex, "g_xdown", MTX_DEF, 0);
+ mtx_init(&mymutex, "g_xdown", NULL, MTX_DEF);
for(;;) {
g_bioq_lock(&g_bio_run_down);
@@ -365,7 +365,7 @@ g_io_schedule_up(struct thread *tp __unused)
struct mtx mymutex;
bzero(&mymutex, sizeof mymutex);
- mtx_init(&mymutex, "g_xup", MTX_DEF, 0);
+ mtx_init(&mymutex, "g_xup", NULL, MTX_DEF);
for(;;) {
g_bioq_lock(&g_bio_run_up);
bp = g_bioq_first(&g_bio_run_up);
OpenPOWER on IntegriCloud