summaryrefslogtreecommitdiffstats
path: root/sys/geom/geom_io.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-06-18 10:33:09 +0000
committerphk <phk@FreeBSD.org>2003-06-18 10:33:09 +0000
commit57f7d6f4885300f6e86eb73c9eafae64d4ab437c (patch)
tree76869ebd59652cf45833011474b1991faea1ae08 /sys/geom/geom_io.c
parentaceb878fef0eae36eacde19ecf4fc8b043ab6b80 (diff)
downloadFreeBSD-src-57f7d6f4885300f6e86eb73c9eafae64d4ab437c.zip
FreeBSD-src-57f7d6f4885300f6e86eb73c9eafae64d4ab437c.tar.gz
Sleep on "-" in our normal state to simplify debugging.
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 890d080..4bed6f6 100644
--- a/sys/geom/geom_io.c
+++ b/sys/geom/geom_io.c
@@ -310,7 +310,7 @@ g_io_schedule_down(struct thread *tp __unused)
bp = g_bioq_first(&g_bio_run_down);
if (bp == NULL) {
msleep(&g_wait_down, &g_bio_run_down.bio_queue_lock,
- PRIBIO | PDROP, "g_down", hz/10);
+ PRIBIO | PDROP, "-", hz/10);
continue;
}
g_bioq_unlock(&g_bio_run_down);
@@ -367,7 +367,7 @@ g_io_schedule_up(struct thread *tp __unused)
continue;
}
msleep(&g_wait_up, &g_bio_run_up.bio_queue_lock,
- PRIBIO | PDROP, "g_up", hz/10);
+ PRIBIO | PDROP, "-", hz/10);
}
}
OpenPOWER on IntegriCloud