Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-05 | Overhaul the release(8) manual: the current version prompted some users | Theo Buehler | |
to leave their boxes wide open with ... unfortunate doas.conf(5) rules. Only give the essential commands for -release and -stable. Remove all mentions of doas(1). Tighten up the style: avoid repetitions and the second person. requested by & ok deraadt, tweaks & ok tj | |||
2016-10-04 | Specify update rules, and add my home airport to the list | Frederic Cambus | |
OK deraadt@ | |||
2016-10-03 | Add a manual page for ompinmux. | Jonathan Gray | |
2016-10-01 | some minor tweaks; ok yasuoka | Jason McIntyre | |
2016-09-28 | Update to tzdata2016g from from ftp.iana.org. | Todd C. Miller | |
2016-09-28 | Add a sentence about BUILD_DEPENDS automatically set with EXTRACT_SUFX | Daniel Jakots | |
ok jmc@ sthen@ | |||
2016-09-28 | group the sysctls; | Jason McIntyre | |
2016-09-28 | document kern.allowkmem; reminded by deraadt | Jason McIntyre | |
2016-09-27 | Small nit from kettenis@: -fstrict-aliasing is turned on if -Ofast. | Pascal Stumpf | |
2016-09-27 | Add a clang-local(1) man page, similar to gcc-local(1). This documents | Pascal Stumpf | |
OpenBSD-specific quirks for LLVM/clang. To be expanded as we go along. idea from kettenis@, ok deraadt@ | |||
2016-09-27 | missing colon; from Rob Pierce <rob at 2keys dot ca> | Ingo Schwarze | |
2016-09-25 | Install the copyright notice as ${MANOWN}:${MANGRP} with ${MANMODE} and | Theo Buehler | |
use ${INSTALL_COPY}; chown root:wheel mandoc.db for noperm builds. ok natano | |||
2016-09-25 | Some ownership fixes for /usr/share/. | Martin Natano | |
feedback and tweaks rpe ok tb | |||
2016-09-24 | jmc noticed a chunk failed to apply. actually document hashfree. | Ted Unangst | |
from natano via Mathieu - | |||
2016-09-24 | introduce hashfree() function to free hash tables, with sizes. | Ted Unangst | |
ok guenther | |||
2016-09-24 | Specify "to" addresses in one of the examples that shows use of af-to for | Stuart Henderson | |
inet6->inet. Without this, local network traffic (including neighbour discovery etc) will also get translated. From Peter J. Philipp, with a tweak to break long lines. | |||
2016-09-23 | Unhook sqlite3. | Stuart Henderson | |
2016-09-22 | Introduce a new 'softclock' thread that will be used to execute timeout | Martin Pieuchot | |
callbacks needing a process context. The function timeout_set_proc(9) has to be used instead of timeout_set(9) when a timeout callback needs a process context. Note that if such a timeout is waiting, understand sleeping, for a non negligible amount of time it might delay other timeouts needing a process context. dlg@ agrees with this as a temporary solution. Manpage tweaks from jmc@ ok kettenis@, bluhm@, mikeb@ | |||
2016-09-21 | Loadable kernel modules are gone. | Martin Natano | |
ok millert, deraadt and tb, who sent the same diff to tech@ some time ago | |||
2016-09-20 | Rewrite awkward phrase, pointed out by Bryan Vyhmeister, wording tweak | Stuart Henderson | |
from me, ok jmc@ | |||
2016-09-20 | sort; | Jason McIntyre | |
2016-09-20 | mention SAS3 devices | Jonathan Matthew | |
2016-09-19 | Remove unused getdev() audio driver functions. | Alexandre Ratchov | |
2016-09-18 | Add manual for octuctl(4); from Rafael Neves <rafael at diskless dot io>. | Ingo Schwarze | |
Tweaked by jmc@ and by me. OK visa@ (on a previous version) and OK jmc@ and Rafael Neves (author). MikeB@ supported the general direction. | |||
2016-09-18 | there's no reason to point readers to options(4) now; | Jason McIntyre | |
2016-09-18 | option INSECURE is obsolete | Theo de Raadt | |
2016-09-18 | add some barebones manual pages | Jonathan Gray | |
2016-09-17 | move the .SUNW_ctf section name definition to exec_elf.h and document it in ↵ | Jasper Lievisse Adriaanse | |
elf(5) feedback from guenther@ ok guenther@ kettenis@ | |||
2016-09-16 | Hook up Hyper-V man pages | Mike Belopuhov | |
2016-09-15 | life is not a newspaper headline, and Nd follows suit... | Jason McIntyre | |
2016-09-15 | add a manual page for omwugen | Jonathan Gray | |
2016-09-15 | Drop references to FreeBSD driver names; I've got one wrong already... | Mike Belopuhov | |
2016-09-15 | tweak previous; | Jason McIntyre | |
2016-09-15 | Document the USB task API | Adam Wolk | |
OK mpi@ change post OK: - long lines in the source file wrapped - added note about USB_TASK_TYPE_ABORT from mpi@ | |||
2016-09-15 | tweak previous; | Jason McIntyre | |
2016-09-15 | Add Hyper-V devices | Mike Belopuhov | |
2016-09-15 | hyper-v networking interface man page | Mike Belopuhov | |
2016-09-15 | hyper-v guest nexus device man page | Mike Belopuhov | |
2016-09-15 | some pool_setipl mop up; ok dlg | Jason McIntyre | |
2016-09-15 | add RBT_POISON and RBT_CHECK so you can poison the pointers in RBT_ENTRYs | David Gwynne | |
this seems like a better way forward than simply removing the poisoning that uvm does. | |||
2016-09-15 | RBT_NEXT, PREV, LEFT, RIGHT, and PARENT take an element, not a tree. | David Gwynne | |
2016-09-15 | all pools have their ipl set via pool_setipl, so fold it into pool_init. | David Gwynne | |
the ioff argument to pool_init() is unused and has been for many years, so this replaces it with an ipl argument. because the ipl will be set on init we no longer need pool_setipl. most of these changes have been done with coccinelle using the spatch below. cocci sucks at formatting code though, so i fixed that by hand. the manpage and subr_pool.c bits i did myself. ok tedu@ jmatthew@ @ipl@ expression pp; expression ipl; expression s, a, o, f, m, p; @@ -pool_init(pp, s, a, o, f, m, p); -pool_setipl(pp, ipl); +pool_init(pp, s, a, ipl, f, m, p); | |||
2016-09-15 | remove m_copym2 as its use has been replaced by m_dup_pkt | David Gwynne | |
ok millert@ mpi@ henning@ claudio@ markus@ | |||
2016-09-14 | Remove drain(), query_encoding(), mappage() and get_default_params() | Alexandre Ratchov | |
methods from all audio drivers and from the audio_if structure as they are never called. | |||
2016-09-13 | avoid extensive mbuf allocation for IPsec by replacing m_inject(4) | Markus Friedl | |
with m_makespace(4) from freebsd; ok mpi@, bluhm@, mikeb@, dlg@ | |||
2016-09-13 | Do not mention the libiconv module; it has been removed. | Christian Weisgerber | |
2016-09-13 | make it clearer that log options require (); | Jason McIntyre | |
requested by janne johansson ok henning | |||
2016-09-13 | Introduce rwsleep(9), an equivalent to msleep(9) but for code protected | Martin Pieuchot | |
by a write lock. ok guenther@, vgross@ | |||
2016-09-12 | bpf_tap() is long dead! Long live bpf_mtap() & friends. | Kenneth R Westerback | |
ok natano@ deraadt@ | |||
2016-09-12 | tweak previous; | Jason McIntyre | |