Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-05 | Include <dev/ofw/ofw_misc.h> instead of <dev/ofw/ofw_pinctrl.h>. | Mark Kettenis | |
2017-05-05 | Put back the call to pf_remove_src_node lost in the netlock backout | Mike Belopuhov | |
Reported by Remi Barbier, thanks! OK mpi@ | |||
2017-05-05 | Shorten the description of .sp and move it to roff(7). | Ingo Schwarze | |
If is not a macro but a low-level roff request and not recommended for use in manual pages. | |||
2017-05-05 | Document what happens when sending a signal to the calling process. | Todd C. Miller | |
OK jmc@ | |||
2017-05-05 | Add glue to attach SDHC compliant controllers using the FDT. This makes | Mark Kettenis | |
the eMMC controller on the Rockchip RK3399 work. | |||
2017-05-05 | Move .sp to the roff modules. Enough infrastructure is in place | Ingo Schwarze | |
now that this actually saves code: -70 LOC. | |||
2017-05-05 | Implement two quirks to support the Arasan eMMC 5.1 controller found on | Mark Kettenis | |
the Rockchip RK3399. - Make it possible to override sdhc_signal_voltage(). - Make it possible to disable double-data rate modes. ok patrick@ | |||
2017-05-05 | Add the missing cache flush operations for non-coherent mappings. | Mark Kettenis | |
ok jsg@, patrick@ | |||
2017-05-05 | Add eMMC-related clocks. | Mark Kettenis | |
2017-05-05 | move .ll to the roff modules | Ingo Schwarze | |
2017-05-05 | Remove /* FALLTHROUGH */ that isn't (and shouldn't). | Mark Kettenis | |
2017-05-05 | Add some formats to look at the session window stack, suggested by Scott | Nicholas Marriott | |
ROCHFORD. | |||
2017-05-05 | Remove a DIAGNOSTIC test for a NULL pipe value inside a transfer, | Jonathan Gray | |
mpi says a transfer can't exist without a pipe. ok mpi@ | |||
2017-05-05 | regen | Jonathan Matthew | |
2017-05-05 | add Moxa CP-104EL | Jonathan Matthew | |
2017-05-05 | Expand SA_LEN(), there is no benefit for using the macro in the | Alexander Bluhm | |
kernel. It was only used in IPsec sources. No binary change OK deraadt@ | |||
2017-05-05 | more simplification and removal of SSHv1-related code; ok djm@ | Christian Weisgerber | |
2017-05-05 | remove superfluous protocol 2 mentions; ok jmc@ | Christian Weisgerber | |
2017-05-05 | Add a `-R' switch that reverts all patches. | Antoine Jacoutot | |
prodded by deraadt@ knobs sorting input jmc@ ok sthen@ | |||
2017-05-05 | Allow vmd(8) to set guest %xcr0 | Mike Larkin | |
Usermode part of previous vmm(4) diff. Posted to tech by Pratik Vyas | |||
2017-05-05 | Allow setting guest %xcr0 from vmd(8). | Mike Larkin | |
Tested on linux and amd64 OpenBSD guests. Posted to tech by Pratik Vyas. | |||
2017-05-05 | sync | Jonathan Gray | |
2017-05-05 | Clean up docs after today's .br and .ft code cleanup; simpler. | Ingo Schwarze | |
2017-05-05 | Mention that the signal mask does not affect what signals are | Todd C. Miller | |
discarded by the kernel. Document that at least one pending signal will be delivered before sigprocmask() returns. | |||
2017-05-05 | Move handling of the roff(7) .ft request from the man(7) | Ingo Schwarze | |
modules to the new roff(7) modules. As a side effect, mdoc(7) now handles .ft, too. Of course, do not use that. | |||
2017-05-04 | Also pass the blk offset to disk_unbusy(), so that it can pass it to | Theo de Raadt | |
the random subsystem as entropy. This value is pretty much unknown, and anyways our entropy input ring does not saturate from knowns. ok mikeb djm | |||
2017-05-04 | Add IPsec test for manually configured SA bundles. That does ipcomp, | Alexander Bluhm | |
and esp, and ah with one flow and three SAs in one step. Test transport mode, locally terminated tunnel and forwarding packets from and to tunnel. | |||
2017-05-04 | Start roff formatter modules for HTML and termininal output, | Ingo Schwarze | |
used by both the mdoc and man formatters, with the ultimate goal of reducing code duplication between the two macro formatters. Made possible by the parser unification. Add the first formatting function (for the .br request). | |||
2017-05-04 | enable brgphy, which appears in the edgerouter pro | Jonathan Matthew | |
2017-05-04 | Recognize various Cavium ThunderX cores. | Mark Kettenis | |
ok patrick@ | |||
2017-05-04 | Merge headers defining identifiers from sysctl.8 into sysctl.3. Shorten and | Theo Buehler | |
update their descriptions. In sysctl.8 refer to /etc/sysctl.conf in FILES. discussed with and ok jmc | |||
2017-05-04 | Report command failure back to vmctl reload, reset, load, log verbose. | Reyk Floeter | |
OK mlarkin@ | |||
2017-05-04 | If m is not a continuous mbuf cluster, m_pullup() in pr_input may | Alexander Bluhm | |
change the pointer. Then *mp keeps the invalid pointer and it might be used. Fix the potential use after free and also reset *mp in other places to have less dangling pointers to freed mbufs. OK mpi@ mikeb@ | |||
2017-05-04 | Implementation of the Flow Queue - Controlled Delay (FQ-CoDel) | Mike Belopuhov | |
The purpose of FQ-CoDel is to provide fair sharing of bandwidth between simultaneous connections and reduce latency differences among them. OK mpi, sthen, visa | |||
2017-05-04 | Parser reorg: | Ingo Schwarze | |
Generate the first node on the roff level: .br Fix some column numbers in diagnostic messages while here. | |||
2017-05-04 | Report error for vmctl commands that need root privileges. | Reyk Floeter | |
specifically: vmctl (load|reload|reset|log) Reported by Christian Barthel | |||
2017-05-04 | Document that -u wants to read from /dev/mem, so it needs kern.allowkmem=1. | Theo Buehler | |
Problem reported by jdd () cs ! toronto ! edu on bugs. ok brynet deraadt jmc | |||
2015-01-29 | reorg tbl(7) test suite | Ingo Schwarze | |
2017-05-04 | Remove side effects from assignment. Fixes warning with cppcheck. | Alexander Bluhm | |
No binary change. OK ratchov@ | |||
2017-05-04 | Introduce sstosa() for converting sockaddr_storage with a type safe | Alexander Bluhm | |
inline function instead of casting it to sockaddr. While there, use inline instead of __inline for all these conversions. Some struct sockaddr casts can be avoided completely. OK dhill@ mpi@ | |||
2017-05-04 | For TCP sockets netstat -A must print the address of the TCP protocol | Alexander Bluhm | |
control block. This is documented in fstat(1) and makes it possible to compare the values from both tools. OK sthen@ | |||
2017-05-04 | Reset the MLD default ip6_opts by using ip6_initpktopts(). This fixes a | Rafael Zalamena | |
problem with MLD packets being sent with hlim set to zero. with suggestion from and ok bluhm@ | |||
2017-05-04 | Fix the ca command so that certs it generates have RFC5280 conformant time. | Bob Beck | |
Problem noticed by Harald Dunkel <harald.dunkel@aixigo.de> | |||
2017-05-04 | Expand comment and bump copyright while here. | Antoine Jacoutot | |
2017-05-04 | Move tls_config_skip_private_key_check() out from under HIDDEN_DECLS. | Claudio Jeker | |
Even though this is not a real public interface we need the symbol in the shared library so that relayd can use it (needed for TLS key privsep) OK beck@ | |||
2017-05-04 | If iwm_nic_lock() cannot access the device then print "acquiring device failed" | Stefan Sperling | |
instead of "device timeout". The latter is printed by the Tx watchdog already. | |||
2017-05-04 | Add support for rdomains. | Reyk Floeter | |
This allows to configure VM interfaces and switches in individual rdomains. OK mlarkin@ | |||
2017-05-04 | Some new notifications, mainly for active pane and current window and | Nicholas Marriott | |
session: pane-mode-changed window-pane-changed client-session-changed session-window-changed From Joshua Brot. | |||
2017-05-04 | since a couple of people have asked, leave a comment explaining why we | Damien Miller | |
retain SSH v.1 support in the "delete all keys from agent" path. | |||
2017-05-04 | another tentacle: cipher_set_key_string() was only ever used for SSHv1 | Damien Miller | |