summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2016-10-05Overhaul the release(8) manual: the current version prompted some usersTheo 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-04Specify update rules, and add my home airport to the listFrederic Cambus
OK deraadt@
2016-10-03Add a manual page for ompinmux.Jonathan Gray
2016-10-01some minor tweaks; ok yasuokaJason McIntyre
2016-09-28Update to tzdata2016g from from ftp.iana.org.Todd C. Miller
2016-09-28Add a sentence about BUILD_DEPENDS automatically set with EXTRACT_SUFXDaniel Jakots
ok jmc@ sthen@
2016-09-28group the sysctls;Jason McIntyre
2016-09-28document kern.allowkmem; reminded by deraadtJason McIntyre
2016-09-27Small nit from kettenis@: -fstrict-aliasing is turned on if -Ofast.Pascal Stumpf
2016-09-27Add a clang-local(1) man page, similar to gcc-local(1). This documentsPascal Stumpf
OpenBSD-specific quirks for LLVM/clang. To be expanded as we go along. idea from kettenis@, ok deraadt@
2016-09-27missing colon; from Rob Pierce <rob at 2keys dot ca>Ingo Schwarze
2016-09-25Install the copyright notice as ${MANOWN}:${MANGRP} with ${MANMODE} andTheo Buehler
use ${INSTALL_COPY}; chown root:wheel mandoc.db for noperm builds. ok natano
2016-09-25Some ownership fixes for /usr/share/.Martin Natano
feedback and tweaks rpe ok tb
2016-09-24jmc noticed a chunk failed to apply. actually document hashfree.Ted Unangst
from natano via Mathieu -
2016-09-24introduce hashfree() function to free hash tables, with sizes.Ted Unangst
ok guenther
2016-09-24Specify "to" addresses in one of the examples that shows use of af-to forStuart 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-23Unhook sqlite3.Stuart Henderson
2016-09-22Introduce a new 'softclock' thread that will be used to execute timeoutMartin 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-21Loadable kernel modules are gone.Martin Natano
ok millert, deraadt and tb, who sent the same diff to tech@ some time ago
2016-09-20Rewrite awkward phrase, pointed out by Bryan Vyhmeister, wording tweakStuart Henderson
from me, ok jmc@
2016-09-20sort;Jason McIntyre
2016-09-20mention SAS3 devicesJonathan Matthew
2016-09-19Remove unused getdev() audio driver functions.Alexandre Ratchov
2016-09-18Add 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-18there's no reason to point readers to options(4) now;Jason McIntyre
2016-09-18option INSECURE is obsoleteTheo de Raadt
2016-09-18add some barebones manual pagesJonathan Gray
2016-09-17move 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-16Hook up Hyper-V man pagesMike Belopuhov
2016-09-15life is not a newspaper headline, and Nd follows suit...Jason McIntyre
2016-09-15add a manual page for omwugenJonathan Gray
2016-09-15Drop references to FreeBSD driver names; I've got one wrong already...Mike Belopuhov
2016-09-15tweak previous;Jason McIntyre
2016-09-15Document the USB task APIAdam Wolk
OK mpi@ change post OK: - long lines in the source file wrapped - added note about USB_TASK_TYPE_ABORT from mpi@
2016-09-15tweak previous;Jason McIntyre
2016-09-15Add Hyper-V devicesMike Belopuhov
2016-09-15hyper-v networking interface man pageMike Belopuhov
2016-09-15hyper-v guest nexus device man pageMike Belopuhov
2016-09-15some pool_setipl mop up; ok dlgJason McIntyre
2016-09-15add RBT_POISON and RBT_CHECK so you can poison the pointers in RBT_ENTRYsDavid Gwynne
this seems like a better way forward than simply removing the poisoning that uvm does.
2016-09-15RBT_NEXT, PREV, LEFT, RIGHT, and PARENT take an element, not a tree.David Gwynne
2016-09-15all 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-15remove m_copym2 as its use has been replaced by m_dup_pktDavid Gwynne
ok millert@ mpi@ henning@ claudio@ markus@
2016-09-14Remove 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-13avoid 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-13Do not mention the libiconv module; it has been removed.Christian Weisgerber
2016-09-13make it clearer that log options require ();Jason McIntyre
requested by janne johansson ok henning
2016-09-13Introduce rwsleep(9), an equivalent to msleep(9) but for code protectedMartin Pieuchot
by a write lock. ok guenther@, vgross@
2016-09-12bpf_tap() is long dead! Long live bpf_mtap() & friends.Kenneth R Westerback
ok natano@ deraadt@
2016-09-12tweak previous;Jason McIntyre