summaryrefslogtreecommitdiffstats
path: root/share (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Document iwm(4) CCMP offload support. Text copied from iwn(4) man page.stsp2019-08-081-2/+6
|
* clarify the DEBUG text a little, since sthen noted it wasn;t particularlyjmc2019-08-081-4/+5
| | | | | | clear; ok/tweaks sthen
* add a manual page for smbiosjsg2019-08-052-2/+38
| | | | ok kettenis@
* Xr pf 4dlg2019-08-051-1/+2
|
* document how to make technically non-compliant TPMRsdlg2019-08-051-2/+17
|
* tweak the iavf text a little, and add an entry to pci.4;jmc2019-08-042-6/+8
| | | | ok jmatthew
* add a manpage for tpmr(4).dlg2019-08-012-3/+167
| | | | | the examples section need to be cut down a lot, but this is a good start.
* uppercase Ethernet;jmc2019-07-311-3/+3
|
* basic man page for iavf(4)jmatthew2019-07-302-2/+51
|
* remove uneeded macro in previous;jmc2019-07-301-3/+2
|
* Expand description of ac_flag values into a tagged list.millert2019-07-291-7/+38
| | | | OK mestre@ jmc@ deraadt@
* Add AUNVEIL bit to the acct(5) manpage since it's already being used by bothmestre2019-07-291-2/+3
| | | | | | kernel and userland. OK deraadt@ jmc@
* vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@cheloha2019-07-251-5/+9
|
* vwaitforio(9): tsleep(9) -> tsleep_nsec(9); ok visa@cheloha2019-07-191-4/+9
|
* getblk(9): tsleep(9) -> tsleep_nsec(9); ok visa@cheloha2019-07-191-4/+4
|
* explain escaping of end-of-sentence characters;schwarze2019-07-152-4/+17
| | | | missing info reported by Ian <ropers at gmail dot com> on misc@
* Document locking with fdrelease().visa2019-07-151-2/+5
|
* one old PERMIT_* escaped! they're gone nowespie2019-07-141-3/+3
|
* non-null -> not .Dv NULLmpi2019-07-121-5/+6
| | | | Suggested by schwarze@ in a different thread
* Document & cross Xr rtable_walk(9).mpi2019-07-123-4/+80
| | | | With inputs from jmc@ and schwarze@
* REGRESS_ROOT_TARGETS has less magic than documentedespie2019-07-091-3/+3
| | | | okay bluhm@
* The non-standard .EX/.EE macro pair was invented for Version 9 AT&T UNIXschwarze2019-07-091-6/+10
| | | | | | and only got adopted by GNU two decades later. Thanks to Doug McIlroy <doug at cs dot dartmouth dot edu> for pointing out the error.
* more cleanup, in particular remove more braces around .Dv,schwarze2019-07-081-23/+11
| | | | remove some bogus .Dv, and get rid of .Tn
* Get rid of an old convention of wrapping preprocessor constants in curlyanton2019-07-081-5/+5
| | | | | | braces. no objection from jmc@ and schwarze@
* tweak previous; ok dlgjmc2019-07-051-22/+16
|
* make the pointer value argument name "v" instead of "value"dlg2019-07-051-6/+9
| | | | | | | | this makes a sentence read better when there's no syntax hilighting in effect. while here, say the write-write memory barrier is implemented with membar_producer so it's easier to go read about what that provides.
* Xr between all the different smr pages.dlg2019-07-053-10/+16
|
* +aggr.4dlg2019-07-051-2/+3
|
* make a start at a manpage for aggr(4)dlg2019-07-051-0/+130
|
* Remove a useless kernel lock from the TCP socket splicing path.bluhm2019-07-041-6/+9
| | | | | | | | | | | When send buffer space in the drain socket becomes available, a task is added to move data, and also the userland was informed. The latter is not usefull as this would mix a kernel and user stream. So programs do not wait for this event. Avoid calling sowakeup() from sowwakeup(), this also reduces grabing the kernel lock. Instead inform the userland about the write event when the splicing is dissolved in sounsplice(). OK claudio@
* Add tsleep_nsec(9), msleep_nsec(9), and rwsleep_nsec(9).cheloha2019-07-031-7/+74
| | | | | | | | | | | | | | | | | | | | | | | | Equivalent to their unsuffixed counterparts except that (a) they take a timeout in terms of nanoseconds, and (b) INFSLP, aka UINT64_MAX (not zero) indicates that a timeout should not be set. For now, zero nanoseconds is not a strictly valid invocation: we log a warning on DIAGNOSTIC kernels if we see such a call. We still sleep until the next tick in such a case, however. In the future this could become some sort of poll... TBD. To facilitate conversions to these interfaces: add inline conversion functions to sys/time.h for turning your timeout into nanoseconds. Also do a few easy conversions for warmup and to demonstrate how further conversions should be done. Lots of input from mpi@ and ratchov@. Additional input from tedu@, deraadt@, mortimer@, millert@, and claudio@. Partly inspired by FreeBSD r247787. positive feedback from deraadt@, ok mpi@
* Update to tzdata2019b from www.iana.orgmillert2019-07-0212-337/+552
|
* use the standard spelling of the word "idiosyncrasy";schwarze2019-07-011-3/+3
| | | | suggested by Michal Nowak <mnowak at startmail dot com>
* Switch the default compiler on octeon to clang.visa2019-07-011-3/+8
| | | | OK deraadt@
* document control name changesespie2019-07-011-5/+9
|
* document changesespie2019-07-011-7/+20
|
* document retest / clean=testespie2019-07-011-5/+10
|
* Change pcic(4) attached with resources specified by locators on luna88k,aoyama2019-06-301-3/+3
| | | | | | rather than #define'd ones. Compiled and tested by my own LUNA-88K2.
* DESCRIPTION: Be more direct about what delay(9) actually does.cheloha2019-06-271-8/+8
| | | | | | | | While here, "delay" -> "interval", "busy wait" -> "busy-wait". With input from jmc@. "no objections" schwarze@, "reads ok" jmc@, ok ratchov@ kn@
* minor eol issues;jmc2019-06-271-2/+2
|
* be more realisticespie2019-06-271-3/+6
|
* Add glkgpio(4), a driver for the GPIO controllers found on Intel's Geminikettenis2019-06-243-4/+57
| | | | Lake SoC. From James Hastings.
* The PyPI module for portgen is very useful now, so we should mention itkmos2019-06-241-2/+4
| | | | | | in the portgen(1) man page. ok afresh1@ phessler@
* Improve wordingvisa2019-06-211-3/+3
| | | | Suggested by jmc@
* Make resource limit access MP-safe. So far, the copy-on-write sharingvisa2019-06-213-6/+125
| | | | | | | | | | of resource limit structs has been done between processes. By applying copy-on-write also between threads, threads can read rlimits in a nearly lock-free manner. Inspired by code in DragonFly BSD and FreeBSD. OK mpi@, agreement from jmatthew@ and anton@
* Don't try to fake a horizontal rule with a bunch of hyphens.bentley2019-06-211-3/+2
| | | | ok jmc@ schwarze@
* Add aplgpio(4) a driver for the gpio controllers found on Intel's Apollopatrick2019-06-173-4/+56
| | | | | | | Lake SoC. From James Hastings ok kettenis@
* add REGRESS_EXPECTED_FAILURES variable,espie2019-06-173-6/+20
| | | | | | | for those tests that are expected to fail because they're not yet implemented. okay bluhm@
* Mention EM_PPC64; from jsg@kevlo2019-06-171-1/+3
|
* Mention the ELF machine type EM_AARCH64.kevlo2019-06-171-2/+4
| | | | ok jmc@