Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-07 | delete #ifdef SYSV code, along with a beautiful #define bcopy memcpy | Theo de Raadt | |
2017-10-07 | bcopy() is expected to be overlap safe, so it implement it with memmove() | Philip Guenther | |
not memcpy(). 'oh oh' deraadt@ | |||
2017-10-07 | Prefer memset() over bzero() | Philip Guenther | |
ok deraadt@ mlarkin@ | |||
2017-10-07 | Format fktrace(2) arguments | Philip Guenther | |
ok millert@ | |||
2017-10-07 | Delete pointless casts from void* | Philip Guenther | |
ok otto@ millert@ | |||
2017-10-07 | Document tls_peer_cert_chain_pem(). | Joel Sing | |
ok beck@ | |||
2017-10-07 | kill reporting old signature schemes, they've been gone for long enough | Marc Espie | |
2017-10-07 | Adjust verbose message in case PKG_PATH is undefined. | Marc Espie | |
Problem noticed by anton@ | |||
2017-10-07 | The 'dumps' option only accepts a single device | Philip Guenther | |
ok deraadt@ jmc@ | |||
2017-10-07 | Add fktrace to the NAME section | Philip Guenther | |
ok jmc@ | |||
2017-10-07 | Fix cast-pasto's in comments | Philip Guenther | |
2017-10-07 | In "tty", permitting TIOCSTART is fine | Theo de Raadt | |
2017-10-07 | permit SYS___set_tcb, upcoming code will require this | Theo de Raadt | |
2017-10-07 | vmd: retain ownership on vm reboot | Mike Larkin | |
from Jesper Wallin, thanks! | |||
2017-10-06 | Unfortunately I removed too much in my previous commit and broke | Alexander Bluhm | |
divert-packet. Bring back the loop over the global list to find the divert socket. | |||
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 | The mount point flags were displayed in octal when printed by ddb. | Alexander Bluhm | |
All other bit fields use hex as well as the MNT_ constants. Change this to hex to make it cosistent and less confusing. OK krw@ | |||
2017-10-06 | Support %else in config files to match %if, from Brad Town in GitHub | Nicholas Marriott | |
issue 1071. | |||
2017-10-06 | missing quote in previous; | Jason McIntyre | |
2017-10-06 | Recalibrate TSC timecounter with HPET and PM timer | Mike Belopuhov | |
If frequency of an invariant (non-stop) time stamp counter is measured using an independent working timecounter that has a known frequency, we can assume that the measured TSC frequency is as good as the resolution of the timecounter that we use to perform the measurement. This lets us switch from this high quality but expensive source to the cheaper TSC without sacrificing precision on a wide range of modern CPUs. From Adam Steen <adam@adamsteen.com.au> with tweaks from reyk@ and myself. Tested by brynet@, sthen@ and others, OK mlarkin, sthen | |||
2017-10-06 | The problem when npppd receives a zero length 1701/udp packet seemed to | YASUOKA Masahiko | |
be fixed at 1.16, but it wasn't fixed. Fix it again. | |||
2017-10-06 | vmm: handle 32 bit guest w/PAE when guest enables PAE first then paging, | Mike Larkin | |
as 32 bit linux guests do. ok pd@ | |||
2017-10-06 | Revert previous video mode when setting GOP SetMode is failed. This | YASUOKA Masahiko | |
prevents the video output problem on ThinkPad X121e and so on. diff from Klemens Nanni, test by Andrew Daugherity | |||
2017-10-05 | vmm: add functions to decode %rflags and IA32_MISC_ENABLE MSR. | Mike Larkin | |
Debug builds only. | |||
2017-10-05 | Check the state value within the assert statement, do not set it. | Alexander Bluhm | |
found with grep 'KASSERT.* = '; OK kettenis@ | |||
2017-10-05 | When installing sets from disk, change the default answer for the question | Christian Weisgerber | |
"Is the disk partition already mounted?" from "no" to "yes". Agreed by many. | |||
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 | Check that the dropped during initialization message appears in | Alexander Bluhm | |
local and remote log files. | |||
2017-10-05 | When syslogd writes some startup errors to stderr or console, they | Alexander Bluhm | |
never appear in any log file. After initialization, write a summary into log files and to remote log host. So the problem shows up, when someone is looking at the persistent messages. Print the "dropped message" warning in a common function. OK sthen@ millert@ | |||
2017-10-05 | I have touched more than half the source code lines of syslogd(8). | Alexander Bluhm | |
Add my copyright explicitly. | |||
2017-10-05 | replace statically-sized arrays in ServerOptions with dynamic ones | Damien Miller | |
managed by xrecallocarray, removing some arbitrary (though large) limits and saving a bit of memory; "much nicer" markus@ | |||
2017-10-05 | clang does not search /usr/local; | Jason McIntyre | |
from janne johansson ok patrick | |||
2017-10-05 | tables.c was unhooked from the build a while ago. | Kenneth R Westerback | |
2017-10-05 | 'DENY' is a dhcpd-only thing. No need to parse it in | Kenneth R Westerback | |
dhclient.conf. | |||
2017-10-05 | Add -- to some key bindings so leading -s work. | Nicholas Marriott | |
2017-10-05 | Add support for the xterm(1) title stack, from Brad Town, GitHub issue | Nicholas Marriott | |
1075. | |||
2017-10-05 | %C is hashed; from klemens nanni | Jason McIntyre | |
ok markus | |||
2017-10-05 | Document that connect(2) and sendto(2) may return with errno | Alexander Bluhm | |
EADDRNOTAVAIL if local address is not available. OK deraadt@ millert@ | |||
2017-10-05 | Sync with libc malloc, doing delayed free double-free check always | Otto Moerbeek | |
2017-10-05 | fix the results file after I changed the test file | Peter Hessler | |
2017-10-05 | +bgpd | Peter Hessler | |
2017-10-05 | add regress tests for bgpd. | Peter Hessler | |
for now, only basic parsing is checked | |||
2017-10-05 | When writing batches of characters to the screen, we need to clear | Nicholas Marriott | |
padding or later UTF-8 characters could be displayed incorrectly. GitHub issue 1090. | |||
2017-10-05 | restore a block of code erroneously removed in r1.162 that causes a | Mike Larkin | |
warning during linux guest bootup relating to fpu save state size. | |||
2017-10-05 | update currency exchange rates; | Jason McIntyre | |
2017-10-05 | Update mvneta(4) to the way OpenBSD handles multicast and promiscuous | Patrick Wildt | |
mode bits. From Brad Smith. | |||
2017-10-05 | fix some spacing issues, wrong comments, and DPRINTFs that were in the | Mike Larkin | |
wrong place, no functional change. | |||
2017-10-05 | change DPRINTF format specifier from %lld to %llx for easier readability | Mike Larkin | |
2017-10-05 | Clean up some no longer needed includes left over from the locore/locore0 split. | Mike Larkin | |
ok tom, mpi, deraadt |