summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
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
2016-09-12Wacom USB tablet driver from Frank Groeneveld.Martin Pieuchot
Currently attaches as a single child of uhidev(4) and offers basic pointer functionalities.
2016-09-08Remove reference to /dev/sound*. With tweaks from jmc@, thanks.Alexandre Ratchov
2016-09-08Enable -static -pie on arm.Mark Kettenis
ok guenther@, jsg@
2016-09-08While /dev/audio is in use, /dev/audioctl has read-only access toAlexandre Ratchov
device variables.
2016-09-08Remove eqnchar.Anthony J. Bentley
These weird eqn(7) macros are ugly source and produce ugly output. Anyone doing mathematical typesetting will be better served by reading through mandoc_char(7) or the Unicode Mathematical Operators block. ok schwarze@ millert@
2016-09-07minor tweak;Jason McIntyre
2016-09-07Introduce an _rc_check_name() function to check the input script name so thatAntoine Jacoutot
we don't end up with cryptic error messages. Regex help from rpe@ Issue reported by Anthony Coulter in rcctl(8), but better fix the root cause. Also clarify the mage page that rc.d script name must follow ksh(1) variable naming. ok robert@ sthen@
2016-09-07Tweak wording on previousPhilip Guenther
2016-09-07Clarify what it means when PT_OPENBSD_RANDOMIZE and PT_GNU_RELRO segmentsPhilip Guenther
overlap
2016-09-07install switch.4YASUOKA Masahiko
2016-09-07Describe the PT_GNU_{EH_FRAME,RELRO} and PT_OPENBSD_{RANDOMIZE,WXNEEDED}Philip Guenther
segment types. Tighten up the description of the PT_PHDR type and elaborate the descriptions of the PT_DYNAMIC and PT_TLS types.
2016-09-07Add missing wordPhilip Guenther
from Tim Kuijsten (info (at) netsend.nl)
2016-09-06Update documentation to reflect change in default ruby versionJeremy Evans
2016-09-06document /etc/acme/Jason McIntyre
ok florian
2016-09-06byebye SIGNING_PARAMETERSMarc Espie
2016-09-06remove the Xr macro to syspatch (since it doesn;t get installed yet)Jason McIntyre
but leave the syspatch entry (since the directory does exist); discussed with ajacoutot;
2016-09-05RBT_PREV goes to the element before the current one.David Gwynne
2016-09-05for consistency, hyphenate "single-user";Jason McIntyre
from rob pierce
2016-09-05consistency fix; from rob pierceJason McIntyre
2016-09-05Remove an old getopt example from some dusty corner.Anthony J. Bentley
ok tedu@ schwarze@
2016-09-05tweak previous;Jason McIntyre
2016-09-05first cut at documenting new red-black tree code.David Gwynne
ok jmc@
2016-09-04tweaks;Jason McIntyre
2016-09-04tweak previous;Jason McIntyre
2016-09-04SIOCBRDGSIFFLGS is not supported by switch(4).YASUOKA Masahiko
2016-09-04Add switch(4) man page and update the bridge(4) man page about theYASUOKA Masahiko
modification for switch(4). ok goda