OpenBSD cvs log

created 2019-06-12T22:41:20Z
begin 2019-05-03T00:00:00Z
end 2019-05-04T00:00:00Z
path src/sys
commits 4

date 2019-05-03T01:41:35Z
author jsg
files src/sys/dev/pci/drm/i915/intel_fbdev.c log diff annotate
message Revert "drm/i915/fbdev: Actually configure untiled displays"

From Dave Airlie
2bc7ce32eb21b094b3ae3e489017fabfe72b4dda in linux 4.19.y/4.19.38
9fa246256e09dc30820524401cdbeeaadee94025 in mainline linux

date 2019-05-03T14:24:13Z
author visa
files src/sys/kern/vfs_vops.c log diff annotate
message Make VOP_ADVLOCK() safe to use without kernel lock

All non-dummy implementations of VOP_ADVLOCK() rely on lf_advlock()
which is now safe to use without the kernel lock. Because VOP_ADVLOCK()
does not make the vnode dirty, it is unnecessary to keep track of
in-flight vnode lock operations and the updating of vnode->v_inflight
can be dropped from VOP_ADVLOCK(). This makes VOP_ADVLOCK() safe to use
without the kernel lock.

OK tedu@ mpi@

date 2019-05-03T16:53:07Z
author bluhm
files src/sys/net/if_bridge.c log diff annotate
message An if_put() was missing in one branch of bridge_process(). This
caused a hanging "ifconfig bridge0 destroy" and a subsequent uvm
fault.
reported and tested by Hrvoje Popovski; OK visa@

date 2019-05-03T18:39:08Z
author mpi
files src/sys/net/bridgestp.c log diff annotate
message Add missing bridge_getbif(), reported by jsg@.