OpenBSD cvs log

created 2021-06-12T19:21:50Z
begin 2021-06-07T00:00:00Z
end 2021-06-08T00:00:00Z
path src/sys
commits 5

date 2021-06-07T00:04:20Z
author krw
files src/sys/arch/amd64/stand/efiboot/efiboot.c log diff annotate
src/sys/arch/amd64/stand/efiboot/efidev.c log diff annotate
src/sys/arch/amd64/stand/efiboot/efipxe.c log diff annotate
src/sys/arch/amd64/stand/efiboot/efirng.c log diff annotate
src/sys/arch/amd64/stand/efiboot/exec_i386.c log diff annotate
message Replace all uses of 'EFI_CALL(func, params)' with
the expansion 'func(params)'.

Allows upcoming removal of eficall.h.

date 2021-06-07T09:10:32Z
author mpi
files src/sys/kern/sys_socket.c log diff annotate
src/sys/kern/uipc_socket2.c log diff annotate
src/sys/sys/socketvar.h log diff annotate
message Kill SS_ASYNC and only check SB_ASYNC when async signals are wanted.

This socket flag was redundant with the socket buffer one.

ok mvs@

date 2021-06-07T13:38:58Z
author krw
files src/sys/arch/amd64/stand/efiboot/efidev.c log diff annotate
src/sys/arch/arm64/stand/efiboot/efidev.c log diff annotate
message "intrisic" -> "intrinsic" in a couple of comments.

date 2021-06-07T13:55:54Z
author dv
files src/sys/arch/amd64/amd64/vmm.c log diff annotate
src/sys/dev/dt/dt_prov_static.c log diff annotate
message vmm(4): add dt tracepoints for guest entry/exit

To aid in development and debugging, this adds a tracepoint prior
to vm entry and after vm exit. It captures the vcpu and run params
plus the exit code, but dt(4)/btrace(8) will need some future work
to leverage those args.

The location of the tracepoint might change in the future, but for
now this solves my issues trying to use printf's to debug vmcs state
corruption.

ok mpi@

date 2021-06-07T21:18:31Z
author krw
files src/sys/arch/armv7/stand/efiboot/efiboot.c log diff annotate
src/sys/arch/armv7/stand/efiboot/efidev.c log diff annotate
src/sys/arch/armv7/stand/efiboot/efipxe.c log diff annotate
message Replace all uses of 'EFI_CALL(func, params)' with
the expansion 'func(params)'.

Allows upcoming removal of eficall.h.

Tested & ok patrick@