Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-05 | Include missing 'const' references in man page and fix some parameter names | Mike Larkin | |
that didn't match the code. | |||
2015-07-05 | Document the new 'fflag' argument to VOP_POLL(). | Todd C. Miller | |
From Martin Natano | |||
2015-07-04 | document PKGPATHS, used together with PKGNAMES. | Marc Espie | |
fix PKGNAMES description (only relates to actual BUILD_PACKAGES) | |||
2015-07-04 | various improvements from remi locherer; | Jason McIntyre | |
i've tweaked it a bit, based on feedback from claudio and phessler ok phessler | |||
2015-07-03 | Enable static pie on sparc; be sure to upgrade your compiler before your | Miod Vallat | |
next build (or wait for the snapshot to reach the mirrors) | |||
2015-07-02 | sync | Theo de Raadt | |
2015-07-02 | mikeb@ suggested making it clear that srp_enter and srp_leave pairs | David Gwynne | |
have to be called in the same context. | |||
2015-07-02 | shuffle the list of files so tsleep.9 isnt in the middle of all the | David Gwynne | |
mangpages starting with s. | |||
2015-07-02 | introduce srp, which according to the manpage i wrote is short for | David 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-26 | Update 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-25 | pfsync and ipsec do not currently work; from lukasz czarniecki | Jason McIntyre | |
i've chosen to comment out the pertinent text rather than remove it... confirmation/ok dlg | |||
2015-06-25 | PACKET_TAG_BRIDGE is gone. | Martin Pieuchot | |
2015-06-23 | Fix the links to pppx(4). | YASUOKA Masahiko | |
diff from Fabian Raetz. | |||
2015-06-21 | Add .mkv (video/x-matroska). | Reyk Floeter | |
From David Hill ok halex@ | |||
2015-06-19 | remove a bit more isp(4), from brad | Jonathan Matthew | |
2015-06-19 | isp(4) man page needs to go too, pointed out by jmc@ | Jonathan Matthew | |
2015-06-17 | crank to 5.8-beta | Theo de Raadt | |
2015-06-17 | Move mbuf_list and mbuf_queue documentation in their own manual. | Martin Pieuchot | |
ok jmc@, deraadt@, dlg@ | |||
2015-06-16 | Sync with recent changes. | Martin Pieuchot | |
2015-06-15 | Update to tzdata2015e from ftp.iana.org | Todd C. Miller | |
2015-06-14 | add some initial vexpress man pages | Jonathan Gray | |
2015-06-12 | Add a missing .An macro. | Ingo Schwarze | |
Found by Enrico <Camarda at amnz dot org> during the BSDCan Doc Sprint. | |||
2015-06-12 | Kill 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-11 | Remove hzto(9) manual pages and references; OK dlg | Mike Belopuhov | |
2015-06-11 | Remove hzto(9) manual pages and references; OK dlg | Mike Belopuhov | |
2015-06-10 | Export new pf "no-route" error counter | Mike Belopuhov | |
OK sthen, blambert for the SNMP part | |||
2015-06-08 | Update documentation for lang/go module | czarkoff | |
OK sthen@ | |||
2015-06-07 | HBG is no more so no need to mention it in the man pages. | Claudio Jeker | |
OK jmc@ | |||
2015-06-06 | Allow 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-04 | Mention rtwn(4) in pci(4). Reminded by brad. | Stefan Sperling | |
2015-06-04 | man page for rtwn(4) | Stefan Sperling | |
2015-06-03 | Unify .Nd blocks, prodded by and ok jmc@ | Martin Pieuchot | |
2015-06-02 | write Mobile IP{,v6} in a consistent way, as given in RFCs 5944 and 6275. | Igor Sobrado | |
ok jmc@ | |||
2015-06-02 | Mention hpb(4), prodded by jmc@ | Martin Pieuchot | |
2015-06-02 | Man page for hpb(4). | Martin Pieuchot | |
2015-06-02 | Make sparc go PIE (not `static PIE' yet). | Miod Vallat | |
2015-06-01 | Now that we do not need to build binutils 2.15 (except for gdb), simplify the | Miod Vallat | |
build logic. | |||
2015-06-01 | Switch m88k ports to binutils 2.17. | Miod Vallat | |
2015-05-31 | Implement 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-29 | Switch vax to bunnytils 2.17. | Miod Vallat | |
2015-05-28 | when machdep.allowaperture sysctl is set to 3, allow concurrent access | Joshua Stein | |
2015-05-28 | Invert the binutils 2.17 logic to only list non-2.17 platforms. | Miod Vallat | |
2015-05-28 | Switch alpha, arm, sh and sparc to binutils 2.17. | Miod Vallat | |
2015-05-25 | sort | Theo de Raadt | |
2015-05-23 | PACKET_TAG_IPSEC_PENDING_TDB is gone, too. | Markus Friedl | |
2015-05-21 | no such thing as mips64le | Miod Vallat | |
2015-05-21 | Switch amd64, hppa, mips64, mips64le and powerpc to binutils 2.17. | Mark Kettenis | |
ok deraadt@ | |||
2015-05-15 | spelling; | Jason McIntyre | |
2015-05-15 | sort; | Jason McIntyre | |
2015-05-14 | Extend autoinstall(8) to allow for <hostname>-<mode>.conf response files | Robert 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 |