summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-07delete #ifdef SYSV code, along with a beautiful #define bcopy memcpyTheo de Raadt
2017-10-07bcopy() is expected to be overlap safe, so it implement it with memmove()Philip Guenther
not memcpy(). 'oh oh' deraadt@
2017-10-07Prefer memset() over bzero()Philip Guenther
ok deraadt@ mlarkin@
2017-10-07Format fktrace(2) argumentsPhilip Guenther
ok millert@
2017-10-07Delete pointless casts from void*Philip Guenther
ok otto@ millert@
2017-10-07Document tls_peer_cert_chain_pem().Joel Sing
ok beck@
2017-10-07kill reporting old signature schemes, they've been gone for long enoughMarc Espie
2017-10-07Adjust verbose message in case PKG_PATH is undefined.Marc Espie
Problem noticed by anton@
2017-10-07The 'dumps' option only accepts a single devicePhilip Guenther
ok deraadt@ jmc@
2017-10-07Add fktrace to the NAME sectionPhilip Guenther
ok jmc@
2017-10-07Fix cast-pasto's in commentsPhilip Guenther
2017-10-07In "tty", permitting TIOCSTART is fineTheo de Raadt
2017-10-07permit SYS___set_tcb, upcoming code will require thisTheo de Raadt
2017-10-07vmd: retain ownership on vm rebootMike Larkin
from Jesper Wallin, thanks!
2017-10-06Unfortunately I removed too much in my previous commit and brokeAlexander Bluhm
divert-packet. Bring back the loop over the global list to find the divert socket.
2017-10-06Kill 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-06Use the modern POSIX idiom "-exec ... {} +" instead of find|xargs andChristian Weisgerber
combine the two find(1) invocations into one. From Klemens Nanni; ok tb@
2017-10-06The 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-06Support %else in config files to match %if, from Brad Town in GitHubNicholas Marriott
issue 1071.
2017-10-06missing quote in previous;Jason McIntyre
2017-10-06Recalibrate TSC timecounter with HPET and PM timerMike 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-06The problem when npppd receives a zero length 1701/udp packet seemed toYASUOKA Masahiko
be fixed at 1.16, but it wasn't fixed. Fix it again.
2017-10-06vmm: 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-06Revert previous video mode when setting GOP SetMode is failed. ThisYASUOKA Masahiko
prevents the video output problem on ThinkPad X121e and so on. diff from Klemens Nanni, test by Andrew Daugherity
2017-10-05vmm: add functions to decode %rflags and IA32_MISC_ENABLE MSR.Mike Larkin
Debug builds only.
2017-10-05Check the state value within the assert statement, do not set it.Alexander Bluhm
found with grep 'KASSERT.* = '; OK kettenis@
2017-10-05When installing sets from disk, change the default answer for the questionChristian Weisgerber
"Is the disk partition already mounted?" from "no" to "yes". Agreed by many.
2017-10-05Add support for the "TEMPer1F_H1V1.5F" USB temperature and humidityStefan Sperling
sensor to the ugold(4) driver. Patch by Jan Klemkow Tested by Remi Locherer ok mpi@ patrick@
2017-10-05Check that the dropped during initialization message appears inAlexander Bluhm
local and remote log files.
2017-10-05When syslogd writes some startup errors to stderr or console, theyAlexander 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-05I have touched more than half the source code lines of syslogd(8).Alexander Bluhm
Add my copyright explicitly.
2017-10-05replace statically-sized arrays in ServerOptions with dynamic onesDamien Miller
managed by xrecallocarray, removing some arbitrary (though large) limits and saving a bit of memory; "much nicer" markus@
2017-10-05clang does not search /usr/local;Jason McIntyre
from janne johansson ok patrick
2017-10-05tables.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 inKenneth R Westerback
dhclient.conf.
2017-10-05Add -- to some key bindings so leading -s work.Nicholas Marriott
2017-10-05Add support for the xterm(1) title stack, from Brad Town, GitHub issueNicholas Marriott
1075.
2017-10-05%C is hashed; from klemens nanniJason McIntyre
ok markus
2017-10-05Document that connect(2) and sendto(2) may return with errnoAlexander Bluhm
EADDRNOTAVAIL if local address is not available. OK deraadt@ millert@
2017-10-05Sync with libc malloc, doing delayed free double-free check alwaysOtto Moerbeek
2017-10-05fix the results file after I changed the test filePeter Hessler
2017-10-05+bgpdPeter Hessler
2017-10-05add regress tests for bgpd.Peter Hessler
for now, only basic parsing is checked
2017-10-05When writing batches of characters to the screen, we need to clearNicholas Marriott
padding or later UTF-8 characters could be displayed incorrectly. GitHub issue 1090.
2017-10-05restore a block of code erroneously removed in r1.162 that causes aMike Larkin
warning during linux guest bootup relating to fpu save state size.
2017-10-05update currency exchange rates;Jason McIntyre
2017-10-05Update mvneta(4) to the way OpenBSD handles multicast and promiscuousPatrick Wildt
mode bits. From Brad Smith.
2017-10-05fix some spacing issues, wrong comments, and DPRINTFs that were in theMike Larkin
wrong place, no functional change.
2017-10-05change DPRINTF format specifier from %lld to %llx for easier readabilityMike Larkin
2017-10-05Clean up some no longer needed includes left over from the locore/locore0 split.Mike Larkin
ok tom, mpi, deraadt