OpenBSD cvs log

created 2019-07-09T07:22:40Z
begin 2019-06-26T00:00:00Z
end 2019-06-27T00:00:00Z
path src/sys
commits 7

date 2019-06-26T08:13:13Z
author claudio
files src/sys/net/if_mpe.c log diff annotate
src/sys/net/if_mpip.c log diff annotate
src/sys/net/if_mpw.c log diff annotate
message The MPLS edge devices get the packets from the MPLS stack which never
passed though pf_test(). So there is no need to try to call
pf_pkt_addr_changed() instead just check that the PF statekey is NULL.
Initial problem of not including pf.h found by jsg@
OK jsg@ sashan@

date 2019-06-26T09:05:36Z
author kettenis
files src/sys/dev/pci/drm/drm_mode_config.c log diff annotate
message Fix IPL of connector_list_lock.

ok jsg@

date 2019-06-26T09:36:06Z
author claudio
files src/sys/dev/usb/if_umb.c log diff annotate
src/sys/net/if_var.h log diff annotate
message Create IF_WWAN_DEFAULT_PRIORITY which is lower than
IF_WIRELESS_DEFAULT_PRIORITY and use it in umb(4) as default prio.
OK kettenis@, sthen@

date 2019-06-26T13:27:20Z
author millert
files src/sys/kern/kern_descrip.c log diff annotate
message Return EINVAL, not EBADF for fcntl(fd, F_GETLK) of a non-vnode.
Matches the recent F_SETLK change, POSIX and the man page.

date 2019-06-26T14:34:03Z
author jca
files src/sys/arch/sparc64/fpu/fpu_explode.c log diff annotate
message Fix sign handling in emulated FP operations on sparc64

Adapted from FreeBSD revision 146673 by Stephen Paskaluk and
stefanf@FreeBSD.

ok deraadt@

date 2019-06-26T17:04:55Z
author robert
files src/sys/kern/kern_pledge.c log diff annotate
message allow more video(4) ioctls for the video pledge (required by chromium)

ok deraadt@

date 2019-06-26T21:01:20Z
author kn
files src/sys/dev/pci/if_iwm.c log diff annotate
message Use timeout_add_msec(9)

To initiate LED blinking, simply kick of the timer after the blinking
rate's period rather than one tick to get red of the last hardclock(9)
based timeout in this driver. The now increased delay is compensated by
also turning on the LED immediately.

OK stsp