OpenBSD cvs log

created 2021-03-14T01:05:03Z
begin 2021-03-10T00:00:00Z
end 2021-03-11T00:00:00Z
path src/sys
commits 9

date 2021-03-10T07:28:19Z
author deraadt
files src/sys/arch/powerpc/powerpc/pmap.c log diff annotate
message pmap_avail_setup() is the only place physmem is calculated, delete a bunch
of code which thinks it could be done elsewhere.
ok kurt

date 2021-03-10T10:21:47Z
author jsg
files src/sys/kern/exec_elf.c log diff annotate
src/sys/kern/kern_unveil.c log diff annotate
src/sys/kern/spec_vnops.c log diff annotate
src/sys/kern/subr_hibernate.c log diff annotate
src/sys/kern/subr_percpu.c log diff annotate
src/sys/kern/subr_pool.c log diff annotate
src/sys/kern/subr_witness.c log diff annotate
src/sys/kern/sys_futex.c log diff annotate
src/sys/kern/tty_tty.c log diff annotate
src/sys/kern/vfs_bio.c log diff annotate
src/sys/net/bridgestp.c log diff annotate
src/sys/net/ethertypes.h log diff annotate
src/sys/net/if.c log diff annotate
src/sys/net/if_bridge.h log diff annotate
src/sys/net/if_etherbridge.c log diff annotate
src/sys/net/if_gre.c log diff annotate
src/sys/sys/domain.h log diff annotate
src/sys/sys/exec_elf.h log diff annotate
src/sys/sys/ktrace.h log diff annotate
src/sys/sys/param.h log diff annotate
src/sys/sys/shm.h log diff annotate
src/sys/sys/sysctl.h log diff annotate
src/sys/sys/wait.h log diff annotate
message spelling

ok gnezdo@ semarie@ mpi@

date 2021-03-10T10:21:48Z
author jsg
files src/sys/net/if_gre.h log diff annotate
src/sys/net/if_pfsync.c log diff annotate
src/sys/net/if_pfsync.h log diff annotate
src/sys/net/if_sppp.h log diff annotate
src/sys/net/if_types.h log diff annotate
src/sys/net/if_veb.c log diff annotate
src/sys/net/if_wg.c log diff annotate
src/sys/net/ifq.h log diff annotate
src/sys/net/ofp.h log diff annotate
src/sys/net/pf.c log diff annotate
src/sys/net/pf_norm.c log diff annotate
src/sys/net/pfvar.h log diff annotate
src/sys/net/pipex.c log diff annotate
src/sys/net/radix.c log diff annotate
src/sys/net/route.c log diff annotate
src/sys/net/route.h log diff annotate
src/sys/net/rtable.c log diff annotate
src/sys/net/switchofp.c log diff annotate
src/sys/net/wg_cookie.c log diff annotate
src/sys/net80211/ieee80211_crypto_tkip.c log diff annotate
src/sys/net80211/ieee80211_input.c log diff annotate
src/sys/net80211/ieee80211_node.c log diff annotate
src/sys/net80211/ieee80211_output.c log diff annotate
src/sys/netinet/if_ether.h log diff annotate
src/sys/netinet/in.c log diff annotate
src/sys/netinet/in_pcb.c log diff annotate
src/sys/netinet/ip_carp.c log diff annotate
src/sys/netinet/ip_id.c log diff annotate
src/sys/netinet/ip_input.c log diff annotate
message spelling

ok gnezdo@ semarie@ mpi@

date 2021-03-10T10:21:49Z
author jsg
files src/sys/netinet/ip_ipsp.c log diff annotate
src/sys/netinet/ipsec_output.c log diff annotate
src/sys/netinet/tcp_input.c log diff annotate
src/sys/netinet/tcp_usrreq.c log diff annotate
src/sys/netinet6/icmp6.c log diff annotate
src/sys/netinet6/in6.c log diff annotate
src/sys/netinet6/in6.h log diff annotate
src/sys/netinet6/in6_src.c log diff annotate
src/sys/netinet6/ip6_id.c log diff annotate
src/sys/netinet6/ip6_input.c log diff annotate
src/sys/netinet6/ip6_mroute.c log diff annotate
src/sys/netinet6/ip6_output.c log diff annotate
src/sys/netinet6/ip6protosw.h log diff annotate
src/sys/netinet6/udp6_output.c log diff annotate
src/sys/netmpls/mpls.h log diff annotate
src/sys/netmpls/mpls_input.c log diff annotate
message spelling

ok gnezdo@ semarie@ mpi@

date 2021-03-10T12:49:24Z
author patrick
files src/sys/dev/acpi/acpireg.h log diff annotate
message Fix typo for ATS attribute member in IORT root complex struct.

date 2021-03-10T15:56:06Z
author kettenis
files src/sys/arch/arm64/arm64/locore.S log diff annotate
message Let MAIR comment catch up with reality.

date 2021-03-10T17:03:58Z
author deraadt
files src/sys/kern/uipc_syscalls.c log diff annotate
message The ktrace record for recvmsg/recvfrom could contain extract bits in
msg_flags (they get set internally). Correct the record to only contain
what the caller requested.

date 2021-03-10T21:49:55Z
author patrick
files src/sys/dev/acpi/acpiprt.c log diff annotate
src/sys/dev/acpi/acpipwrres.c log diff annotate
src/sys/dev/acpi/acpitz.c log diff annotate
src/sys/dev/acpi/atk0110.c log diff annotate
src/sys/dev/acpi/dsdt.c log diff annotate
src/sys/dev/acpi/dsdt.h log diff annotate
message Our ACPI namerefs are pointers to the byte structures for ACPI names.
These are not in a printable format, hence printing them as string is
wrong. Additionally, aml_searchrel()/aml_searchname() expect the name
to be passed in a printable format as well. Passing a nameref can lead
to an out-of-bounds read, and the comparison can fail. Hence make sure
that namerefs are passed to aml_getname() first, which returns printable
strings. Note that aml_getname() uses a static buffer, so there are a
few restrictions how the string can be used.

ok kettenis@

date 2021-03-10T22:20:44Z
author tobhe
files src/sys/dev/acpi/dsdt.c log diff annotate
message Handle named references in acpi_getdevlist(). Fixes a regression in acpitz
caused by the reference handling change from December.

ok kettenis@ patrick@