summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_taskqueue.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2005-10-25 19:29:02 +0000
committerjhb <jhb@FreeBSD.org>2005-10-25 19:29:02 +0000
commitdf27025be04f2d13468d9a17b44a22ecad6e6010 (patch)
tree331d377a358e0b3c4193c9b5716bf40f9c378ddb /sys/kern/subr_taskqueue.c
parenta71d8ea994f4c6e96da43e9f9fccb182b0d4e863 (diff)
downloadFreeBSD-src-df27025be04f2d13468d9a17b44a22ecad6e6010.zip
FreeBSD-src-df27025be04f2d13468d9a17b44a22ecad6e6010.tar.gz
Use shorter names for the Giant and fast taskqueues so that their names
actually fit.
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 9622098..ad2f73a 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,
OpenPOWER on IntegriCloud