OpenBSD cvs log

created 2018-12-03T16:37:09Z
begin 2018-11-19T00:00:00Z
end 2018-11-20T00:00:00Z
path src/sys
commits 7

date 2018-11-19T00:39:23Z
author dlg
files src/sys/net/ethertypes.h log diff annotate
message recent 802.1Q defines 88e7 for provider backbone bridging

date 2018-11-19T07:31:35Z
author kevlo
files src/sys/dev/usb/usbdevs log diff annotate
message Add ids for D-Link DWA-171 rev C1 and Xiaomi mini USB WiFi.

date 2018-11-19T07:32:29Z
author kevlo
files src/sys/dev/usb/usbdevs.h log diff annotate
src/sys/dev/usb/usbdevs_data.h log diff annotate
message regen

date 2018-11-19T10:15:04Z
author claudio
files src/sys/net/rtable.c log diff annotate
src/sys/netinet/in_proto.c log diff annotate
src/sys/netinet6/in6_proto.c log diff annotate
src/sys/netmpls/mpls_proto.c log diff annotate
src/sys/sys/domain.h log diff annotate
message Retire dom_rtkeylen from struct domain. Nothing is using this anymore.
It was used by the original patricia tree.
OK mpi@

date 2018-11-19T13:15:37Z
author visa
files src/sys/kern/sys_socket.c log diff annotate
src/sys/kern/uipc_socket.c log diff annotate
src/sys/kern/uipc_socket2.c log diff annotate
src/sys/sys/socketvar.h log diff annotate
message Utilize sigio with sockets.

OK mpi@

date 2018-11-19T16:12:06Z
author tedu
files src/sys/kern/kern_sysctl.c log diff annotate
src/sys/kern/uipc_syscalls.c log diff annotate
src/sys/sys/sysctl.h log diff annotate
message delete the dns jackport experiment. it has no future.

date 2018-11-19T19:19:24Z
author anton
files src/sys/dev/wscons/wsevent.c log diff annotate
src/sys/dev/wscons/wseventvar.h log diff annotate
src/sys/dev/wscons/wskbd.c log diff annotate
src/sys/dev/wscons/wsmouse.c log diff annotate
src/sys/dev/wscons/wsmux.c log diff annotate
message Utilize sigio with wscons. The old behavior of always making the process group
of the process who opens the device the default recipient of sigio is removed as
a side-effect of this change. Issuing ioctl(FIOSETOWN) is therefore mandatory in
order to receive sigio, which is more consistent with other subsystems
supporting sigio.

This change is all made possible by the new sigio(9) API and prevents wscons
from keeping a pointer to the recipient process. Usage of such pointer could
cause a panic since wscons is not inform on process deallocation, leaving a
dangling pointer behind.

ok mpi@ visa@