OpenBSD cvs log

created 2018-11-30T04:14:10Z
begin 2018-09-13T00:00:00Z
end 2018-09-14T00:00:00Z
path src/sys
commits 9

date 2018-09-13T03:38:15Z
author jsg
files src/sys/dev/pci/drm/i915/i915_gem.c log diff annotate
message avoid sequence-point warning with gcc 4.9
ok kettenis@

date 2018-09-13T03:45:08Z
author jsg
files src/sys/dev/pci/drm/i915/i915_gem_userptr.c log diff annotate
message drm/i915/userptr: reject zero user_size

From Matthew Auld
182e963432d867384f2e55487ec60ca7a9f99cd1 in linux 4.4.y/4.4.155
c11c7bfd213495784b22ef82a69b6489f8d0092f in mainline linux

date 2018-09-13T03:55:17Z
author jsg
files src/sys/dev/pci/drm/radeon/radeon_object.c log diff annotate
message drm/drivers: add support for using the arch wc mapping API.

From Dave Airlie
c59fdc4cfbda52ce081c59540762185d765c3369 in linux 4.4.y/4.4.155
7cf321d118a825c1541b43ca45294126fd474efa in mainline linux

date 2018-09-13T04:07:20Z
author miko
files src/sys/dev/pci/auich.c log diff annotate
src/sys/dev/pci/cmpci.c log diff annotate
src/sys/dev/pci/eap.c log diff annotate
src/sys/dev/pci/emuxki.c log diff annotate
message clarify that config_activate_children() is called unconditionally in *activate().

ok ratchov@

date 2018-09-13T07:49:33Z
author mestre
files src/sys/kern/kern_pledge.c log diff annotate
message When unveil(2) was introduced one break from SYS_access case was removed
here, this adds it back. Noticed by Coverity 1471854.

feedback from semarie@ OK deraadt@

date 2018-09-13T09:28:07Z
author kevlo
files src/sys/dev/ic/r92creg.h log diff annotate
src/sys/dev/ic/rtwn.c log diff annotate
src/sys/dev/pci/if_rtwn.c log diff annotate
message - There's no need to set R92C_HSSI_PARAM2_READ_EDGE for R92C_HSSI_PARAM2(0)
for rtl8188eu
- Fix typo in structure r92c_rom in comment: s/0x8192/0x8129/
- Add id member to struct r88e_rom which identifies eeprom
- Replace magic numbers with something more readable
- Cosmetic tweaking

ok stsp@

date 2018-09-13T09:32:27Z
author kettenis
files src/sys/dev/pci/drm/drm_irq.c log diff annotate
message In drm_wait_one_vblank() add a delay when we're "cold". Interrupts aren't
enabled at that point, so we cannot wait for one to happen. But having no
delay at all breaks detection of some output connectors.

Thanks to Philippe Meunier for tracking down the issue.

ok millert@, jsg@

date 2018-09-13T12:29:43Z
author mpi
files src/sys/netinet/ip_ipcomp.c log diff annotate
message Include the size of IPCOMP header when checking for compression.

Problem found and anaylyzed by Romain Gabet, ok markus@

date 2018-09-13T19:53:58Z
author bluhm
files src/sys/kern/uipc_mbuf.c log diff annotate
src/sys/net/pf.c log diff annotate
src/sys/net/pfvar.h log diff annotate
src/sys/netinet/in_pcb.c log diff annotate
src/sys/netinet/in_pcb.h log diff annotate
src/sys/netinet/raw_ip.c log diff annotate
src/sys/netinet/tcp_output.c log diff annotate
src/sys/netinet/udp_usrreq.c log diff annotate
src/sys/netinet6/raw_ip6.c log diff annotate
src/sys/netinet6/udp6_output.c log diff annotate
message Add reference counting for inet pcb, this will be needed when we
start locking the socket. An inp can be referenced by the PCB queue
and hashes, by a pf mbuf header, or by a pf state key.
OK visa@