summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_taskqueue.c
diff options
context:
space:
mode:
authorzml <zml@FreeBSD.org>2010-05-28 18:15:34 +0000
committerzml <zml@FreeBSD.org>2010-05-28 18:15:34 +0000
commitcadeb05108049c61cafe2d8616c8ab7a8134e980 (patch)
tree63a75ec5d54ad2f215e428ef09569d09c7cf0ad7 /sys/kern/subr_taskqueue.c
parentf1e0737c28cabbd46b771c2937b89e4d2ecb9d37 (diff)
downloadFreeBSD-src-cadeb05108049c61cafe2d8616c8ab7a8134e980.zip
FreeBSD-src-cadeb05108049c61cafe2d8616c8ab7a8134e980.tar.gz
Avoid a wakeup(9) if we can be sure no one is waiting on the task.
Submitted by: Matthew Fleming <matthew.fleming@isilon.com> Reviewed by: zml, jhb
Diffstat (limited to 'sys/kern/subr_taskqueue.c')
-rw-r--r--sys/kern/subr_taskqueue.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/sys/kern/subr_taskqueue.c b/sys/kern/subr_taskqueue.c
index 6af4685..b06678c 100644
--- a/sys/kern/subr_taskqueue.c
+++ b/sys/kern/subr_taskqueue.c
@@ -57,6 +57,7 @@ struct taskqueue {
int tq_spin;
int tq_flags;
int tq_tasks_running;
+ int tq_task_waiters;
};
#define TQ_FLAGS_ACTIVE (1 << 0)
@@ -240,7 +241,8 @@ taskqueue_run(struct taskqueue *queue)
TQ_LOCK(queue);
queue->tq_tasks_running--;
- wakeup(task);
+ if (queue->tq_task_waiters > 0)
+ wakeup(task);
}
/*
@@ -256,15 +258,21 @@ taskqueue_drain(struct taskqueue *queue, struct task *task)
{
if (queue->tq_spin) { /* XXX */
mtx_lock_spin(&queue->tq_mutex);
- while (task->ta_pending != 0 || queue->tq_tasks_running > 0)
+ while (task->ta_pending != 0 || queue->tq_tasks_running > 0) {
+ queue->tq_task_waiters++;
msleep_spin(task, &queue->tq_mutex, "-", 0);
+ queue->tq_task_waiters--;
+ }
mtx_unlock_spin(&queue->tq_mutex);
} else {
WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, __func__);
mtx_lock(&queue->tq_mutex);
- while (task->ta_pending != 0 || queue->tq_tasks_running > 0)
+ while (task->ta_pending != 0 || queue->tq_tasks_running > 0) {
+ queue->tq_task_waiters++;
msleep(task, &queue->tq_mutex, PWAIT, "-", 0);
+ queue->tq_task_waiters--;
+ }
mtx_unlock(&queue->tq_mutex);
}
}
OpenPOWER on IntegriCloud