Correct usage of mtx_init() API. This is not a functional change since

the code happened to work because MTX_DEF and NULL are both defined as 0.

Reviewed by:	phk
This commit is contained in:
truckman 2003-12-07 23:20:53 +00:00
parent 7df01b5cbc
commit 87a37b565f
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ static void
g_disk_init(struct g_class *mp __unused)
{
mtx_init(&g_disk_done_mtx, "g_disk_done", MTX_DEF, 0);
mtx_init(&g_disk_done_mtx, "g_disk_done", NULL, MTX_DEF);
}
static void

View File

@ -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);