OpenBSD cvs log

created 2019-04-18T10:08:57Z
begin 2019-04-05T00:00:00Z
end 2019-04-06T00:00:00Z
path src/sys
commits 4

date 2019-04-05T06:14:13Z
author ratchov
files src/sys/dev/audio.c log diff annotate
message Try to start playback after play buffer pointers are advanced.

Allows playback to start automatically as soon as there's enough data,
even if the AUDIO_START ioctl is not called. This is mainly useful to
quickly test & debug low level drivers with simple shell commands.

date 2019-04-05T09:06:31Z
author deraadt
files src/sys/conf/GENERIC log diff annotate
message it is POOL_DEBUG disable time

date 2019-04-05T12:58:34Z
author bluhm
files src/sys/net/rtsock.c log diff annotate
message Broken userland software sets address bit in routing message without
providing a corresponding socket address. A stricter kernel check
returns EINVAL and the software does not work anymore. Relax the
check for OpenBSD 6.5 release so we have more time to find and fix
bugs in ports afterwards. This is a temporary workaround.
analysis sthen@; OK claudio@ jca@

date 2019-04-05T14:42:06Z
author bluhm
files src/sys/netinet/tcp_debug.c log diff annotate
message In debug mode print TCP flag names to console correctly.
from Mitchell Krome