Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-06 | Kill the divert-packet socket option IP_DIVERTFL to filter packets. | Alexander Bluhm | |
It used a loop over the global list divbtable that would be hard to make MP safe. The port net/dnsfilter does not work without this, it should be converted to divert-to. Neither other ports nor base use this filter feature. ports checked by sthen@; OK mpi@ benno@ | |||
2017-10-06 | Use the modern POSIX idiom "-exec ... {} +" instead of find|xargs and | Christian Weisgerber | |
combine the two find(1) invocations into one. From Klemens Nanni; ok tb@ | |||
2017-10-06 | missing quote in previous; | Jason McIntyre | |
2017-10-05 | Add support for the "TEMPer1F_H1V1.5F" USB temperature and humidity | Stefan Sperling | |
sensor to the ugold(4) driver. Patch by Jan Klemkow Tested by Remi Locherer ok mpi@ patrick@ | |||
2017-10-05 | clang does not search /usr/local; | Jason McIntyre | |
from janne johansson ok patrick | |||
2017-09-29 | New ddb(4) command: kill. | Martin Pieuchot | |
Send an uncatchable SIGABRT to the process specified by the pid argument. Useful in case of CPU exhaustion to kill the DoSing process and generate a core for later inspection. ok phessler@, visa@, kettenis@, miod@ | |||
2017-09-25 | the Alea I works fine with urng(4) so update the manpage accordingly | Jasper Lievisse Adriaanse | |
2017-09-23 | F changed meaning a bit; ok tb@ | Otto Moerbeek | |
2017-09-21 | Add missing new line; ok jmc@ | anton | |
2017-09-18 | Mention that Generation 2 Virtual Machines are currently not supported | Mike Belopuhov | |
2017-09-17 | link to mtrr(4) because the mem(4) driver supports ioctl(2) | Ingo Schwarze | |
in addition to read(2) and write(2) and because that ioctl(2) support is documented in mtrr(4); OK jmc@ | |||
2017-09-13 | Fix typo; ok benno@ jmc@ sthen@ tb@ | anton | |
2017-09-12 | use .Dv for ioctl(2) request names; | Ingo Schwarze | |
from <ScottCheloha at gmail dot com> | |||
2017-09-12 | use the standard .Fa idiom for ioctl(2) args, and kill .Tn | Ingo Schwarze | |
2017-09-12 | use the standard .Fa idiom for ioctl(2) args | Ingo Schwarze | |
2017-09-12 | minor markup corrections: Cd for options(4), Vt for data types | Ingo Schwarze | |
2017-09-12 | standard .Fa markup for ioctl(2) args, and add one missing .Dv; | Ingo Schwarze | |
from <ScottCheloha at gmail dot com> | |||
2017-09-12 | option DDB_STRUCT is gone, 'show struct' now work in GENERIC. | Martin Pieuchot | |
2017-09-12 | Update the documentation regarding /dev/mem and /dev/kmem; | Ingo Schwarze | |
Theo already clamped down on these devices last year. Triggered by a question from Nan Xiao <xiaonan830818 at gmail dot com>. OK deraadt@ | |||
2017-09-09 | fix capitalization of "Altus Metrum" | Jasper Lievisse Adriaanse | |
from Raf Czlonka | |||
2017-09-07 | Update hardware list. | Visa Hankala | |
2017-09-07 | rework "Errata" to mention syspatch(8); | Jason McIntyre | |
based on a diff from jesper wallin ok aja | |||
2017-09-06 | add support for the Realtek RTS525A | Joshua Stein | |
ok stsp | |||
2017-09-05 | bring mi_switch() manpage up to date | Jonathan Matthew | |
ok mpi@ guenther@ | |||
2017-09-03 | fix grammar; while here, improve spacing. | Igor Sobrado | |
ok schwarze@ | |||
2017-09-03 | update entry for rtwn; | Jason McIntyre | |
2017-09-03 | Document rtwn(4) RTL8192CE support. | Stefan Sperling | |
2017-09-01 | tweak previous; | Jason McIntyre | |
2017-09-01 | Reflect so{g,s}etopt() changes. | Martin Pieuchot | |
2017-08-29 | tweak previous; | Jason McIntyre | |
2017-08-29 | Sync struct declarations with net/pfvar.h | Lawrence Teo | |
ok deraadt@ jmc@ sashan@ | |||
2017-08-28 | Add urng(4) which supports various USB RNG devices. Instead of adding one | Jasper Lievisse Adriaanse | |
driver per device, start bundling them into a single driver. urng(4) supports the device currently supported by ualea(4) and adds support for the Altusmetrum ChaosKey 1.0, by abieber@ This was tested by abieber@ with a ChaosKey and Sean Levy with an Alea II ok abieber@ deraadt@ naddy@ | |||
2017-08-25 | Document the limitations of divert-packet in divert(4) so that they | Alexander Bluhm | |
can be addressed. input jmc@ benno@ mortimer@ | |||
2017-08-25 | tweak previous; | Jason McIntyre | |
2017-08-25 | rktemp(4) | Mark Kettenis | |
2017-08-22 | explain new new COMPILER | Marc Espie | |
2017-08-22 | add amdisplay.4 to armv7 man Makefile list | ians | |
ok deraadt@ | |||
2017-08-22 | Add some buffercache docs | Stefan Fritsch | |
* add clarifications and bread_cluster() buffercache(9) * add some comments to vfs_bio.c ok tedu@ | |||
2017-08-21 | Document the newly introduced RI_ROTATE_CCW flag. | Frederic Cambus | |
OK kettenis@ | |||
2017-08-20 | crank to 6.2-beta | Theo de Raadt | |
2017-08-18 | change email address in licenses to ians@openbsd.org | ians | |
2017-08-16 | tweak previous; ok ians | Jason McIntyre | |
2017-08-14 | Add the amdisplay(4) and nxphdmi(4) drivers. | ians | |
ok kettenis@ patrick@ | |||
2017-08-14 | sort SEE ALSO; | Jason McIntyre | |
2017-08-14 | Restore "print" in ddb; add "pp[rint]" for pretty-printing | Uwe Stuehler | |
Changing the "print" command to use db_ctf_pprint_cmd() broke all documented uses and "examine" does not allow printing variables, or individual registers. For now it is better to leave the "print" command intact, and in sync with the ddb(4) man page, but we still want "pp[rint]" to replace the "print" command when it works better. ok mpi@ | |||
2017-08-14 | tweak previous; | Jason McIntyre | |
2017-08-13 | New flag PR_RWLOCK for pool_init(9) makes the pool use rwlocks instead | Philip Guenther | |
of mutexes. Use this immediately for the pool_cache futex pools. Mostly worked out with dlg@ during e2k17 ok mpi@ tedu@ | |||
2017-08-13 | Bring the dhclient(8) related text into | Kenneth R Westerback | |
line with reality. More polishing sure to follow. ok beck@ | |||
2017-08-12 | Add rw_assert_anylock(), for assering you have it either read or write locked | Philip Guenther | |
ok tedu@ mpi@ | |||
2017-08-12 | Let DFLAGS been added to by the per-directory Makefile | Philip Guenther | |
ok espie@ |