summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2015-07-05Include missing 'const' references in man page and fix some parameter namesMike Larkin
that didn't match the code.
2015-07-05Document the new 'fflag' argument to VOP_POLL().Todd C. Miller
From Martin Natano
2015-07-04document PKGPATHS, used together with PKGNAMES.Marc Espie
fix PKGNAMES description (only relates to actual BUILD_PACKAGES)
2015-07-04various improvements from remi locherer;Jason McIntyre
i've tweaked it a bit, based on feedback from claudio and phessler ok phessler
2015-07-03Enable static pie on sparc; be sure to upgrade your compiler before yourMiod Vallat
next build (or wait for the snapshot to reach the mirrors)
2015-07-02syncTheo de Raadt
2015-07-02mikeb@ suggested making it clear that srp_enter and srp_leave pairsDavid Gwynne
have to be called in the same context.
2015-07-02shuffle the list of files so tsleep.9 isnt in the middle of all theDavid Gwynne
mangpages starting with s.
2015-07-02introduce srp, which according to the manpage i wrote is short forDavid Gwynne
"shared reference pointers". srp allows concurrent access to a data structure by multiple cpus while avoiding interlocking cpu opcodes. it manages its own reference counts and the garbage collection of those data structure to avoid use after frees. internally srp is a twisted version of hazard pointers, which are a relative of RCU. jmatthew wrote the bulk of a hazard pointer implementation and changed bpf to use it to allow mpsafe access to bpfilters. however, at s2k15 we were trying to apply it to other data structures but the memory overhead of every hazard pointer would have blown out significantly in several uses cases. a bulk of our time at s2k15 was spent reworking hazard pointers into srp. this diff adds the srp api and adds the necessary metadata to struct cpuinfo on our MP architectures. srp on uniprocessor platforms has alternate code that is optimised because it knows there'll be no concurrent access to data by multiple cpus. srp is made available to the system via param.h, so it should be available everywhere in the kernel. the docs likely need improvement cos im too close to the implementation. ok mpi@
2015-06-26Update upd(4):Stuart Henderson
- list new sensors, sorted by source file occurrence - add clues about sensorsd.conf(5) configuration for the status quo - link to HID Power specs - linguistic tweaks from David Higgs, ok+tweaks schwarze@
2015-06-25pfsync and ipsec do not currently work; from lukasz czarnieckiJason McIntyre
i've chosen to comment out the pertinent text rather than remove it... confirmation/ok dlg
2015-06-25PACKET_TAG_BRIDGE is gone.Martin Pieuchot
2015-06-23Fix the links to pppx(4).YASUOKA Masahiko
diff from Fabian Raetz.
2015-06-21Add .mkv (video/x-matroska).Reyk Floeter
From David Hill ok halex@
2015-06-19remove a bit more isp(4), from bradJonathan Matthew
2015-06-19isp(4) man page needs to go too, pointed out by jmc@Jonathan Matthew
2015-06-17crank to 5.8-betaTheo de Raadt
2015-06-17Move mbuf_list and mbuf_queue documentation in their own manual.Martin Pieuchot
ok jmc@, deraadt@, dlg@
2015-06-16Sync with recent changes.Martin Pieuchot
2015-06-15Update to tzdata2015e from ftp.iana.orgTodd C. Miller
2015-06-14add some initial vexpress man pagesJonathan Gray
2015-06-12Add a missing .An macro.Ingo Schwarze
Found by Enrico <Camarda at amnz dot org> during the BSDCan Doc Sprint.
2015-06-12Kill trailing blank; no text change.Ingo Schwarze
Issue found by Tony Sim <y2s1982 at gmail dot com> during today's BSDCan Doc Sprint.
2015-06-11Remove hzto(9) manual pages and references; OK dlgMike Belopuhov
2015-06-11Remove hzto(9) manual pages and references; OK dlgMike Belopuhov
2015-06-10Export new pf "no-route" error counterMike Belopuhov
OK sthen, blambert for the SNMP part
2015-06-08Update documentation for lang/go moduleczarkoff
OK sthen@
2015-06-07HBG is no more so no need to mention it in the man pages.Claudio Jeker
OK jmc@
2015-06-06Allow rtsol keyword in hostname.if(5) with net.inet6.ip6.forwarding=1.Florian Obser
"inet6 autoconf" was working before and rtsol should behave the same. OK phessler
2015-06-04Mention rtwn(4) in pci(4). Reminded by brad.Stefan Sperling
2015-06-04man page for rtwn(4)Stefan Sperling
2015-06-03Unify .Nd blocks, prodded by and ok jmc@Martin Pieuchot
2015-06-02write Mobile IP{,v6} in a consistent way, as given in RFCs 5944 and 6275.Igor Sobrado
ok jmc@
2015-06-02Mention hpb(4), prodded by jmc@Martin Pieuchot
2015-06-02Man page for hpb(4).Martin Pieuchot
2015-06-02Make sparc go PIE (not `static PIE' yet).Miod Vallat
2015-06-01Now that we do not need to build binutils 2.15 (except for gdb), simplify theMiod Vallat
build logic.
2015-06-01Switch m88k ports to binutils 2.17.Miod Vallat
2015-05-31Implement the roff(7) `r' (register exists) conditional.Ingo Schwarze
Missing feature found by Markus <Waldeck at gmx dot de> in Debian's bash(1) manual page.
2015-05-29Switch vax to bunnytils 2.17.Miod Vallat
2015-05-28when machdep.allowaperture sysctl is set to 3, allow concurrent accessJoshua Stein
2015-05-28Invert the binutils 2.17 logic to only list non-2.17 platforms.Miod Vallat
2015-05-28Switch alpha, arm, sh and sparc to binutils 2.17.Miod Vallat
2015-05-25sortTheo de Raadt
2015-05-23PACKET_TAG_IPSEC_PENDING_TDB is gone, too.Markus Friedl
2015-05-21no such thing as mips64leMiod Vallat
2015-05-21Switch amd64, hppa, mips64, mips64le and powerpc to binutils 2.17.Mark Kettenis
ok deraadt@
2015-05-15spelling;Jason McIntyre
2015-05-15sort;Jason McIntyre
2015-05-14Extend autoinstall(8) to allow for <hostname>-<mode>.conf response filesRobert Peichaer
and to put response files in a subdir of the webserver's document root. Based on diffs from Nathanael Rensen, thanks! While here fix a buglet introduced by the $_server -> $AI_SERVER change. OK krw, halex