index
:
wireguard-openbsd
jd/histogram
jd/queueboosts
jd/simplify-queueing
master
WireGuard implementation for the OpenBSD kernel
Matt Dunwoodie
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
kern
/
kern_task.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add support for remote coverage to kcov. Remote coverage is collected
anton
2020-08-01
1
-1
/
+15
*
whitespace and speeling fix in a comment. no functional change.
dlg
2020-06-11
1
-4
/
+4
*
make taskq_barrier wait for pending tasks, not just the running tasks.
dlg
2020-06-11
1
-2
/
+2
*
add support for running taskq_barrier from a task inside the taskq.
dlg
2020-06-07
1
-62
/
+131
*
Convert infinite sleeps to {m,t}sleep_nsec(9).
mpi
2019-12-19
1
-4
/
+5
*
Make taskq_barrier(9) work for multi-threaded task queues.
kettenis
2019-06-23
1
-1
/
+24
*
add WITNESS support to barriers modelled on the timeout stuff visa did.
dlg
2019-04-28
1
-5
/
+65
*
deprecate TASKQ_CANTSLEEP since nothing uses it anymore
dlg
2019-04-01
1
-31
/
+5
*
add task_pending
dlg
2018-12-16
1
-3
/
+1
*
replace the bare sleep state handling in barriers with wait cond code
dlg
2017-12-14
1
-12
/
+6
*
add taskq_barrier
dlg
2017-11-13
1
-1
/
+27
*
Let witness(4) differentiate between taskq mutexes to avoid
visa
2017-10-30
1
-2
/
+2
*
Convert most of the manual checks for CPU hogging to sched_pause().
mpi
2017-02-14
1
-2
/
+2
*
shuffle some code to make it more symmetrical.
dlg
2016-08-11
1
-4
/
+4
*
tweak whitespace in struct definition. no functional change.
dlg
2015-12-08
1
-9
/
+9
*
use struct task_list instead of TAILQ_HEAD(, task)
dlg
2015-12-08
1
-2
/
+2
*
dont try and wakeup other threads to handle pending work when we
dlg
2015-11-19
1
-2
/
+2
*
we want to defer work traditionally (in openbsd) handled in an
dlg
2015-02-09
1
-16
/
+46
*
remove the second void * argument on tasks.
dlg
2015-01-27
1
-6
/
+4
*
add a few sizes to free
tedu
2014-11-01
1
-3
/
+3
*
make workq/taskq runner threads yield when they've hogged the cpu
blambert
2014-10-08
1
-2
/
+4
*
add a size argument to free. will be used soon, but for now default to 0.
tedu
2014-07-12
1
-3
/
+3
*
Create system taskq ("systqmp") which runs without the kernel lock;
blambert
2014-06-11
1
-1
/
+13
*
Fix typo; that teaches me to steal other people's diffs!
kettenis
2013-12-11
1
-2
/
+2
*
Add infrastructure to create un-biglocked task queues. Stolen from blambert@
kettenis
2013-12-10
1
-1
/
+15
*
simplify kthread_create(). no more stdarg
deraadt
2013-11-18
1
-2
/
+2
*
deprecate taskq_systq() and replace it with extern struct taskq
dlg
2013-10-30
1
-8
/
+4
*
since taskq_create is only callable from autoconf or process context, it
dlg
2013-10-29
1
-2
/
+2
*
sys/task.h includes sys/queue.h, so kern/kern_task.c doesnt need
dlg
2013-10-29
1
-3
/
+1
*
use unsigned int instead of u_int to reduce the depend on types.h.
dlg
2013-10-29
1
-4
/
+4
*
introduce tasks and taskqs as an alternative to workqs.
dlg
2013-10-29
1
-0
/
+258