Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-05 | further tweak the introductory text; ok gilles | Jason McIntyre | |
2018-07-05 | tweak previous; | Jason McIntyre | |
2018-07-05 | Serialize the sosplice taskq allocation. This prevents an unlikely | Visa Hankala | |
duplicate allocation that could happen in the future when each socket has a dedicated lock. Right now, the code path is serialized also by the NET_LOCK() (and the KERNEL_LOCK()). OK mpi@ | |||
2018-07-05 | Grab the KERNEL_LOCK() in kthread_create(9) to enable unlocked code | Visa Hankala | |
paths create kernel threads. This will be utilized by sosplice() for the taskq allocation. OK mpi@ | |||
2018-07-05 | backout r1.11 "Add retguard macros for kernel asm", ok deraadt | Stuart Henderson | |
after starting iked kernel enters ddb with: Stopped at aesni_ctr_enc+0xd8: int $3 | |||
2018-07-05 | RTM_BFD route messages are also a special case. suggested by claudio@, | Sebastian Benoit | |
ok phessler@ | |||
2018-07-05 | update the route message documentation | Sebastian Benoit | |
ok claudio@ | |||
2018-07-05 | not all route messages have a priority. Move the priority filter check | Sebastian Benoit | |
where it belongs. Problem spotted by by remi@ ok sthen@ claudio@ krw@ | |||
2018-07-05 | Enable bwfm(4). | Patrick Wildt | |
Requested by brad@ Tested by fcambus@ ok stsp@ | |||
2018-07-05 | Cast physical addresses to 64-bits so we can shift them by 32-bit on | Patrick Wildt | |
32-bit platforms without the compiler complaining. In the end the value will turn out as 0 anyway. Allows enabling bwfm(4) on 32-bit platforms. ok stsp@ | |||
2018-07-05 | fuse_set_signal_handlers(3) and fuse_remove_signal_handlers(3) should | helg | |
not replace any existing signal handlers. This makes it possible for FUSE file systems to install their own signal handlers. Bug reported by Bill Zissimopoulos. ok mpi@ | |||
2018-07-05 | Create new man page for fuse_set_signal_handlers(3) and | helg | |
fuse_remove_signal_handlers(3). ok mpi@ | |||
2018-07-05 | Simplify rde_softreconfig_in(). There is no need to run the prefix through | Claudio Jeker | |
the previous filter. path_update() and prefix_remove() are both smart enough to handle the various cases correctly. Should reduce reload time with large rulesets. OK phessler@ | |||
2018-07-05 | Add support for the VIA VX900 chipset in viapm(4). | Frederic Cambus | |
OK kettenis@ | |||
2018-07-05 | forgot to commit vmmvar.h needed by previous two commits, thanks ccardenas | Mike Larkin | |
for noticing. | |||
2018-07-05 | vmm(4): print guest vcpu mode and cpl in debug output if VM crashes | Mike Larkin | |
2018-07-05 | vmm(4): add some utility functions for checking vcpu cpl and mode | Mike Larkin | |
ok pd@, guenther@ | |||
2018-07-05 | Plug a vnode leak in namei(). If the file system is unmounted | Alexander Bluhm | |
during name lookup, the directory vnode was not released. Add a vrele() to the error return path. NetBSD has added a vput() there after we imported the check. OK krw@ visa@ | |||
2018-07-04 | It is possible for a memory write to not complete if no barrier exists | Dale Rahn | |
between the write and a wfi instruction. Make certain system state is coherent when waiting on interrupts. ok kettenis@ | |||
2018-07-04 | enable trunk(4) | kn | |
OK deraadt kettenis | |||
2018-07-04 | Properly pass around the PCI "chipset tag" in acpi(4) and refactor | Mark Kettenis | |
acpimcfg(4) to call an MD initialization functions that sets up a tag for PCI ECAM. ok guenther@, mlarkin@, krw@ | |||
2018-07-04 | ptrace debug support for arm64. | Dale Rahn | |
Single step is not yet supported but reading and setting registers are working as expected, breakpoints also are working. ok kettenis@ | |||
2018-07-04 | More whitespace. | rob | |
2018-07-04 | remove ambiguity; from ross l richardson | Jason McIntyre | |
2018-07-04 | deal with API rename: match_filter_list() => match_filter_blacklist() | Damien Miller | |
2018-07-04 | exercise new expansion behaviour of PubkeyAcceptedKeyTypes and, by | Damien Miller | |
proxy, test kex_assemble_names() ok markus@ | |||
2018-07-04 | repair PubkeyAcceptedKeyTypes (and friends) after RSA signature work - | Damien Miller | |
returns ability to add/remove/specify algorithms by wildcard. Algorithm lists are now fully expanded when the server/client configs are finalised, so errors are reported early and the config dumps (e.g. "ssh -G ...") now list the actual algorithms selected. Clarify that, while wildcards are accepted in algorithm lists, they aren't full pattern-lists that support negation. (lots of) feedback, ok markus@ | |||
2018-07-04 | Cleanup some whitespace. | rob | |
2018-07-04 | whitespace needed between macro args and punctuation; | Jason McIntyre | |
2018-07-04 | Relocate the update of br_offs from ber_read() to ber_readbuf() so ber_getc() | rob | |
can call ber_readbuf() in all cases. This resolves a problem previously encountered with SNMPv3 authentication, simplifies the code, and completes a full synchronization of all ber instances. Proposed by claudio@. Problematic use case in snmpd tested by sthen@ and me. ldap(s) appear happy as well. looks good to claudio@ | |||
2018-07-04 | Move allocation behind sanity check to address possible memory leak as | Patrick Wildt | |
seen by Coverity CID 1470240. Cast the ieee80211_frame struct pointer to uint8_t to address concerns raised by Coverity CID 1470239 and CID 1470237. ok stsp@ | |||
2018-07-04 | Do not try to unlock the fdplock() in an error path if it isn't held. | Martin Pieuchot | |
Found the hardway by mlarkin@, ok bluhm@ | |||
2018-07-04 | Add set-hook -R to run a hook immediately (useful to set multiple hooks | Nicholas Marriott | |
to the same thing). | |||
2018-07-04 | Add pane focus hooks. | Nicholas Marriott | |
2018-07-04 | minor tweaks to improve readability; | Jason McIntyre | |
ok rob reyk | |||
2018-07-04 | Avoid possible vfprintf NULL errors in ldap_unbind(). | rob | |
Ok benno@ | |||
2018-07-04 | Add accessors for grid linedata member, for some future work. From Dan | Nicholas Marriott | |
Aloni. | |||
2018-07-04 | Print the amount of bytes written, as intended, instead of -1 when | Martin Pieuchot | |
an error occurs. ok krw@ | |||
2018-07-04 | "proto" is optional; from matthew martin | Jason McIntyre | |
ok gilles | |||
2018-07-04 | When a VM stop request fails, set errno prior to calling warn() in order to | anton | |
display the correct error message. This is a pattern found elsewhere in vmctl. With input from deraadt@ and encouraged by mlarkin@ | |||
2018-07-04 | hook up recvmsg | anton | |
2018-07-04 | Add regress covering the recently fixed mbuf double free in rip6_usrreq(). | anton | |
2018-07-04 | hook up recvmsg | anton | |
2018-07-04 | Add regress covering the recently fixed mbuf double free in rip_usrreq(). | anton | |
2018-07-04 | Prevent a mbuf double free by not freeing it along the error-path in | anton | |
rip{6,}_usrreq() since soreceive() will free it. ok bluhm@ | |||
2018-07-04 | Fix a wrong memcmp in k7/k8 powernow code. | Mike Larkin | |
ok brynet | |||
2018-07-04 | Clean up some extern definitions and includes in hibernate MD code | Mike Larkin | |
2018-07-04 | Add HISTORY to ldap.1 | rob | |
Ok reyk@ | |||
2018-07-04 | Clean up some extern definitions and includes in hibernate MD code | Mike Larkin | |
2018-07-03 | list the ports for gre in udp, as per rfc8086 and iana assignments. | David Gwynne | |
ok benno@ deraadt@ |