summaryrefslogtreecommitdiff
path: root/sys/kern/subr_taskqueue.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2005-10-25 19:29:02 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2005-10-25 19:29:02 +0000
commit6caf758e7c324edc8444550ee307fe72983dd9eb (patch)
tree331d377a358e0b3c4193c9b5716bf40f9c378ddb /sys/kern/subr_taskqueue.c
parent6a38205e3d1486c5f099ffb30214d0dc0b18ac1d (diff)
Notes
Diffstat (limited to 'sys/kern/subr_taskqueue.c')
-rw-r--r--sys/kern/subr_taskqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_taskqueue.c b/sys/kern/subr_taskqueue.c
index 9622098e3447..ad2f73aaf959 100644
--- a/sys/kern/subr_taskqueue.c
+++ b/sys/kern/subr_taskqueue.c
@@ -300,7 +300,7 @@ TASKQUEUE_DEFINE(swi, taskqueue_swi_enqueue, 0,
INTR_MPSAFE, &taskqueue_ih));
TASKQUEUE_DEFINE(swi_giant, taskqueue_swi_giant_enqueue, 0,
- swi_add(NULL, "Giant task queue", taskqueue_swi_giant_run,
+ swi_add(NULL, "Giant taskq", taskqueue_swi_giant_run,
NULL, SWI_TQ_GIANT, 0, &taskqueue_giant_ih));
TASKQUEUE_DEFINE_THREAD(thread);
@@ -409,7 +409,7 @@ taskqueue_define_fast(void *arg)
STAILQ_INSERT_TAIL(&taskqueue_queues, taskqueue_fast, tq_link);
mtx_unlock(&taskqueue_queues_mutex);
- swi_add(NULL, "Fast task queue", taskqueue_fast_run,
+ swi_add(NULL, "Fast taskq", taskqueue_fast_run,
NULL, SWI_TQ_FAST, 0, &taskqueue_fast_ih);
}
SYSINIT(taskqueue_fast, SI_SUB_CONFIGURE, SI_ORDER_SECOND,