Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-18 | describe the context the callback runs at in the CONTEXT section. | David Gwynne | |
2015-02-21 | update siphash manpages to reflect change in return type spelling. | Ted Unangst | |
ok dlg | |||
2015-02-19 | remove errant reference to mq_enqueue in the mq_enlist description. | David Gwynne | |
2015-02-16 | Replace \*(Lt \*(Le \*(Gt \*(Ge with literal < <= > >= respectively, | Christian Weisgerber | |
except for instances where \*(Le and \*(Ge are clearly understood as mathematical symbols. Discussed with schwarze@ | |||
2015-02-15 | Use "In" to mark up include files, instead of wrongly wrapping with Aq. | Anthony J. Bentley | |
Aq is not the same as <> in non-ASCII situations, so this caused incorrect output in some places. And it provided no semantics besides. ok schwarze@ | |||
2015-02-10 | remove extra word in previous; | Jason McIntyre | |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat | |
- rename uiomove() to uiomovei() and update all its users. - introduce uiomove(), which is similar to uiomovei() but with a size_t. - rewrite uiomovei() as an uiomove() wrapper. ok kettenis@ | |||
2015-02-10 | Sync and sort the M_* mbuf flags to match the way they are listed in | Lawrence Teo | |
<sys/mbuf.h>. | |||
2015-02-10 | Zap m_act here too. | Lawrence Teo | |
2015-02-09 | tweak previous; | Jason McIntyre | |
2015-02-09 | task_add takes a flags argument now. this throws some words at it, | David Gwynne | |
maybe some will stick. | |||
2015-02-07 | jmc reminded me that if we document new functions we should link them up | David Gwynne | |
2015-02-07 | mq_enlist can drop mbufs now. | David Gwynne | |
2015-02-07 | try and document ml_filter and mq_filter. | David Gwynne | |
2015-02-01 | Sync struct pkthdr_pf and struct mbuf_ext with their actual definitions | Lawrence Teo | |
in sys/mbuf.h. | |||
2015-01-31 | Add missing period. | Lawrence Teo | |
2015-01-31 | Document MSIZE, MCLSHIFT, MCLBYTES, MCLOFSET, and MAXMCLBYTES which have | Lawrence Teo | |
been moved from sys/param.h to sys/mbuf.h (MAXMCLBYTES was moved two years ago; the rest were done recently). Remove references to sys/param.h accordingly. ok deraadt@ | |||
2015-01-27 | remove workq code. its been replaced with tasks. | David Gwynne | |
it has been unused since december, and unhooked from the build since christmas. ok krw@ | |||
2015-01-27 | remove the second void * argument on tasks. | David Gwynne | |
when workqs were introduced, we provided a second argument so you could pass a thing and some context to work on it in. there were very few things that took advantage of the second argument, so when i introduced pools i suggested removing it. since tasks were meant to replace workqs, it was requested that we keep the second argument to make porting from workqs to tasks easier. now that workqs are gone, i had a look at the use of the second argument again and found only one good use of it (vdsp(4) on sparc64 if you're interested) and a tiny handful of questionable uses. the vast majority of tasks only used a single argument. i have since modified all tasks that used two args to only use one, so now we can remove the second argument. so this is a mechanical change. all tasks only passed NULL as their second argument, so we can just remove it. ok krw@ | |||
2015-01-24 | tweak previous; | Jason McIntyre | |
2015-01-24 | Add bus_dmamem_alloc_range(9). | Mark Kettenis | |
2015-01-24 | Document bus_dmamem_alloc_range(9). | Mark Kettenis | |
2015-01-23 | Normal OpenBSD code fits in an 80 column term. From Jim Smith, ok dlg. | Stuart Henderson | |
2015-01-15 | UVM_INH_* and UVM_ADV_* are gone; use MAP_INHERIT_* and MADV_* | Philip Guenther | |
2015-01-11 | LOCKDEBUG is dead; perform the funeral rites | Philip Guenther | |
pointed out by Helg (xx404 (at) msn.com) ok deraadt@ miod@ | |||
2014-12-28 | The greatest happiness is to scatter inferiour APIs, to drive them | Kenneth R Westerback | |
before you, to see their files reduced to ashes, to see those who love them shrouded in tears, and to gather into your API all their invocations. In other words, workq is no more. There is only taskq. ok kettenis@ dlg@ (creator of taskq) jmc@ | |||
2014-12-22 | add TIMEOUT_INITIALIZER for initting timeout declaractions. | David Gwynne | |
similar to TASK_INITIALIZER and all the queue _INITIALIZER things. ok deraadt@ | |||
2014-12-19 | Do not report an EDQUOT "Disk quota exceeded" error from the routing | Alexander Bluhm | |
code. Instead generate an ENOBUFS "No buffer space available" error at the malloc(9) failure in rt_setgate(9) and propagate it. OK mpi@ | |||
2014-12-11 | according to kaspars bankovskis, allocbuf was removed in -r1.88 | Jason McIntyre | |
of sys/kern/vfs_bio.c; | |||
2014-12-10 | retire shutdown hooks; ok deraadt, krw | Mike Belopuhov | |
2014-12-09 | no more string(3); | Jason McIntyre | |
2014-12-08 | tweak recommendation to use arc4random_buf | Ted Unangst | |
2014-12-05 | keep punctuation separate on macro lines | Ingo Schwarze | |
2014-11-24 | Rename rt_ifa_addloop() into rt_ifa_addlocal() and make it return an | Martin Pieuchot | |
error code on failure (unchecked for the moment). ok mikeb@, jmc@ | |||
2014-11-19 | document when to pass free() a size, and hey -- if it is impossible track | Theo de Raadt | |
it down, that is ok, you can pass 0. (but it is slower) | |||
2014-11-18 | include systm.h for arc4random now | Ted Unangst | |
2014-11-16 | Replace a plethora of historical protection options with just | Theo de Raadt | |
PROT_NONE, PROT_READ, PROT_WRITE, and PROT_EXEC from mman.h. PROT_MASK is introduced as the one true way of extracting those bits. Remove UVM_ADV_* wrapper, using the standard names. ok doug guenther kettenis | |||
2014-11-15 | Reduce instances of `` '' in manuals. | Anthony J. Bentley | |
troff displays these as typographic quotes, but nroff implementations almost always print them literally, which rarely has the intended effect with modern fonts, even in stock xterm. These uses of `` '' can be replaced either with more semantic alternatives or with Dq, which prints typographic quotes in a UTF-8 locale (but will automatically fall back to `` '' in an ASCII locale). improvements and ok schwarze@ | |||
2014-11-05 | some minor tweaks; | Jason McIntyre | |
2014-11-05 | i forgot the :wq bit after applying jmcs tweaks. | David Gwynne | |
2014-11-04 | document the SipHash24 api. some more could be done for history and | David Gwynne | |
where its appropriate to use it, but that can happen later. discussed with djm@ tweaks from jmc@ | |||
2014-11-02 | tweak wording and update panic messages | Ted Unangst | |
2014-11-01 | tweak previous; | Jason McIntyre | |
2014-11-01 | Document rtalloc(9). | Martin Pieuchot | |
2014-10-22 | make [bl]emtoh{16,32,64} take volatile const foo *, not volatile foo * | David Gwynne | |
while in the manpage add volatile where the code has it too. ok miod@ guenther@ | |||
2014-10-15 | Use the terms "routing entry" or simply "entry" when talking about the | Martin Pieuchot | |
kernel representation of a network route. While here add some missing headers in the SYNOPSIS. | |||
2014-10-14 | RTFREE() is no more. | Martin Pieuchot | |
2014-10-08 | rtalloc(9) and rtalloc_noclone(9) are dead, long live rtalloc1(9)! | Martin Pieuchot | |
reminded by phessler@ | |||
2014-09-08 | obvious cases of missing .An; | Ingo Schwarze | |
found with the new mandoc(1) MANDOCERR_AN_MISSING warning; no text changes | |||
2014-09-05 | functions are .Fn, not .Fa | David Gwynne | |