OpenBSD cvs log

created 2020-01-31T15:05:49Z
begin 2020-01-27T00:00:00Z
end 2020-01-28T00:00:00Z
path src/sys
commits 11

date 2020-01-27T02:02:28Z
author krw
files src/sys/dev/ic/twevar.h log diff annotate
message Prototypes should not name the parameters.

date 2020-01-27T03:35:05Z
author krw
files src/sys/dev/ic/mpi.c log diff annotate
message Prototypes should not name the parameters.

date 2020-01-27T07:41:02Z
author krw
files src/sys/scsi/cd.c log diff annotate
src/sys/scsi/st.c log diff annotate
message Make the commonalities of cdminphys, sdminphys and stminphys more
obvious by consistently using the variable names and idiom of
sdminphys.

No functional change.

date 2020-01-27T11:00:44Z
author dlg
files src/sys/net/if_tun.c log diff annotate
message add some comments to tun_destroy, and try be a bit more paranoid.

date 2020-01-27T11:04:18Z
author jca
files src/sys/dev/acpi/acpisbs.c log diff annotate
message Send APM_POWER_CHANGE events to userland after refreshing battery info

Tested by and ok jcs@

date 2020-01-27T13:11:01Z
author sthen
files src/sys/dev/ic/adv.c log diff annotate
message Rename advminphys function to adv_minphys. The prototype and one usage were
changed in r1.40 but the function itself was missed. Unbreaks i386 build -
no other arch enables adv(4).

date 2020-01-27T15:41:42Z
author stsp
files src/sys/dev/usb/usbdevs log diff annotate
message add USB device ID for tp-link tl-wn823n

date 2020-01-27T15:42:23Z
author stsp
files src/sys/dev/usb/usbdevs.h log diff annotate
src/sys/dev/usb/usbdevs_data.h log diff annotate
message regen

date 2020-01-27T15:44:55Z
author stsp
files src/sys/dev/usb/if_urtwn.c log diff annotate
message Make urtwn(4) attach to tp-link tl-wn823n (RTL8192EU).
Tested by me; Hardware provided by Titus Richartz and Theo Richartz, thanks!

date 2020-01-27T17:13:33Z
author visa
files src/sys/dev/dt/dt_dev.c log diff annotate
message Improve use of SMR in dt(4) by changing the time when smr_barrier()
is invoked. This enables threads to continue gathering events without
interruption when another thread starts or stops recording.

OK mpi@

date 2020-01-27T19:16:43Z
author jcs
files src/sys/net/bpf.c log diff annotate
message update bpf_iflist in bpfsdetach instead of bpfdetach as some drivers
like USB only use the former and bpf_iflist was otherwise retaining
references to a freed bpf_if.

ok sashan