summaryrefslogtreecommitdiffstats
path: root/share/man/man4 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* myx can't reconfigure xfp/sfp/sfp+ modulesdlg2019-04-171-2/+11
|
* elfrdsetroot is now rdsetroot(8).sunil2019-04-161-8/+5
| | | | ok deraadt
* mention X722jsg2019-04-101-3/+3
| | | | ok deraadt@ phessler@
* missing xrsthen2019-04-091-3/+3
|
* patrick confirms that this driver does not support powersave;jmc2019-04-041-2/+4
|
* document BIOCSRTIMEOUT errors; ok deraadt@ millert@anton2019-04-031-2/+19
|
* spelling mistake in previous - sorry, klemens!jmc2019-04-031-2/+2
|
* Recommend ROUTE_TABLEFILTER over SO_RTABLEkn2019-04-031-3/+15
| | | | | | | | | SO_TABLE is not applicable to AF_ROUTE, ROUTE_TABLEFILTER works across all families and goes well in line with the other ROUTE_* macros. While here, document RTABLE_ANY and mention rtable(4). OK claudio jmc
* tweak previous;jmc2019-04-031-3/+3
|
* actually use the words "split-horizon" when talking about vpls bridge setupdlg2019-04-031-4/+5
|
* document how to do split-horizon setups with mpwdlg2019-04-021-2/+25
| | | | | | | | this is needed^Wuseful since the kernel doesn't implicitly implement split horizon in bridge for mpw anymore. it does allow the joining of different VPLS meshes on the same bridge now though. based on discussion with Lee Nelson and Mitchell Krome
* add acpipci;jmc2019-04-021-2/+4
|
* kettenis has written an mi page for this, so remove this one; ok kettenis (i think)jmc2019-04-022-48/+2
|
* spelling;jmc2019-04-021-2/+2
|
* Clarify prepositionkn2019-04-021-3/+3
| | | | | | | | | | | | Any messages sent to the kernel are returned, and copies are sent to all interested listeners. The kernel will provide the process ID for the sender [...] Change the last "for" to "of", making it even clearer that the kernel tells listeners about the sender's PID; it does not provide anything back to the sender in particular. "Seems right" deraadt
* mvgicp(4)kettenis2019-04-022-3/+45
|
* acpipci(4)kettenis2019-04-022-3/+48
|
* no powersave for wi(4); missed in previous commitsjmc2019-03-301-6/+5
|
* move the HARDWARE sections in line with other wireless pages;jmc2019-03-292-32/+32
|
* this page was missing the "configured at runtime" boilerplate, so add it;jmc2019-03-291-1/+8
|
* document that these drivers do not support powersave; two other pages (acu and zyd)jmc2019-03-2914-31/+55
| | | | | | already document this in a slightly more tangled way - i chose not to edit those texts; help/ok stsp
* add notes for drivers which support powersave; help/ok stspjmc2019-03-2910-25/+72
| | | | while here i knocked out a Tn from iwn and tidied it a little...
* uxrcom(4)kettenis2019-03-274-6/+54
|
* add the dcf600usb; from paul de weerdjmc2019-03-261-4/+4
|
* support Meinberg DCF600USB, from weerd@, ok phesslersthen2019-03-221-3/+3
|
* update the alc entry;jmc2019-03-221-3/+3
|
* Add support for QCA AR816x/AR817x for alc(4).kevlo2019-03-221-4/+4
| | | | | | Based on FreeBSD via Genadijus Paleckis on tech@, some modifications by me. Tested with Atheros Killer E2200.
* spelling;jmc2019-03-181-3/+3
|
* Add kubsan(4), a undefined behavior sanitizer for the kernel. It'santon2019-03-183-5/+107
| | | | | | | | | | | | | capable of detecting undefined behavior at runtime and all findings are printed to the system console, including the offending line in the source code. kubsan is limited to architectures using Clang as their default compiler and is not enabled by default. Derived from the NetBSD implementation. ok kettenis@ visa@
* extend BIOCSFILDROP so it can be configured to not capture packets.dlg2019-03-181-6/+19
| | | | | | | | | | BIOCSFILDROP was already able to be used as a quick and dirty firewall, which is especially useful when you you want to filter non-ip things. however, capturing the packets you're dropping is a lot of overhead when you just want to drop stuff. this extends fildrop so you can tell bpf not to capture the packets it drops. ok sthen@ mikeb@ claudio@ visa@
* tweak previous;jmc2019-03-112-8/+8
|
* update mpw based on mpipdlg2019-03-111-55/+48
| | | | | | the ioctl mpw.4 described is going away, and the examples are different now cos ifconfig is different, and there's some RFCs it implements.
* have a go at documenting the mpip interface.dlg2019-03-112-4/+105
| | | | no ioctls yet
* fix some cases of spaces before full stops, where none were neccessary;jmc2019-03-101-3/+3
|
* Add Dynastream ANTUSB-2 to the list of supported uscom(4) devices.patrick2019-02-241-2/+3
|
* Change ps_len of struct pfioc_states and psn_len of structbluhm2019-02-181-4/+4
| | | | | | | | | pfioc_src_nodes to size_t. This avoids integer truncation by casts to unsigned. As the types of DIOCGETSTATES and DIOCGETSRCNODES ioctl(2) arguments change, pfctl(8) and systat(1) should be updated together with the kernel. Calculate number of pf(4) states as size_t in userland. OK sashan@ deraadt@
* Add lock stack trace saving for witness(4).visa2019-02-071-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This lets witness(4) save a stack trace on each lock acquisition. The saved traces can be viewed in ddb(4) when showing the currently held locks, which may help when debugging incorrect locking. Sample output: ddb{0}> show all locks Process 63836 (rm) thread 0xffff8000221e52c8 (435004) exclusive rrwlock inode r = 0 (0xfffffd8119a092c0) locked @ /usr/src/sys/ufs/ufs/ufs_vnops.c:1547 #0 witness_lock+0x419 #1 _rw_enter+0x2bb #2 _rrw_enter+0x42 #3 VOP_LOCK+0x3f #4 vn_lock+0x36 #5 vfs_lookup+0xa1 #6 namei+0x2b3 #7 dounlinkat+0x85 #8 syscall+0x338 #9 Xsyscall+0x128 exclusive kernel_lock &kernel_lock r = 1 (0xffffffff81e6a5f0) locked @ /usr/src/sys/arch/amd64/amd64/intr.c:525 #0 witness_lock+0x419 #1 syscall+0x2b6 #2 Xsyscall+0x128 The saving adds overhead, so it is not enabled by default. It can be taken into use by setting sysctl kern.witness.locktrace=1 at runtime or by defining WITNESS_LOCKTRACE in the kernel configuration. Feedback and OK anton@
* Fix a sysctl name.visa2019-02-061-3/+3
|
* the sunxi platform abstraction was removed in 2016jsg2019-02-013-56/+5
|
* correct Cd for fdtjsg2019-02-011-3/+3
|
* correct Cd for fdtjsg2019-02-011-3/+3
|
* Add a dedicated sysctl(2) node for witness(4).visa2019-01-291-3/+3
| | | | | | | | The new node contains the subsystem's main control variable, kern.witness.watch. It is aliased by the old name, kern.witnesswatch. The alias will be removed in the future. OK anton@ mpi@
* saying the apm driver provides a user interface to the apm driver is notjmc2019-01-281-5/+5
| | | | | | | | | | | that helpful. lacking the correct facts, i nicked the following text from the macppc page: The .Nm driver provides an interface which simulates the Advanced Power Management .Pq APM BIOS functions.
* sentences start with capital letters;jmc2019-01-271-3/+3
|
* Document the fact that altitude & ground speed values are provided as sensors.landry2019-01-261-8/+15
|
* I am retiring my old email address; replace it with my OpenBSD one.millert2019-01-251-3/+3
|
* machdep.apmwarn and machdep.apmhalt were removed in 2017jsg2019-01-235-125/+13
|
* add a man page for apm(4) on arm64phessler2019-01-232-2/+220
| | | | OK jsg@
* this driver does actually workjmatthew2019-01-211-4/+2
|
* - add 7265D-16 firmwarejmc2019-01-211-6/+6
| | | | | | - while there, knock out one .Tn and reformat the text around it ok stsp