OpenBSD cvs log

created 2023-07-23T23:05:30Z
begin 2023-07-21T00:00:00Z
end 2023-07-22T00:00:00Z
path src/sys
commits 5

date 2023-07-21T02:19:49Z
author jcs
files src/sys/dev/i2c/ietp.c log diff annotate
message add missing newline on successful attachment, spotted by bmercer

remove duplicate prefixes on unsuccessful attachment, wrap at 80,
other minor nits

date 2023-07-21T04:04:51Z
author guenther
files src/sys/arch/amd64/amd64/cpu.c log diff annotate
src/sys/arch/amd64/amd64/identcpu.c log diff annotate
src/sys/arch/amd64/amd64/locore0.S log diff annotate
src/sys/arch/amd64/include/specialreg.h log diff annotate
message Rename ARCH_CAPABILITIES_* #defined to ARCH_CAP_*
Provide more ARCH_CAP_* defines per June 2023 SDM

ok jsg@ deraadt@

date 2023-07-21T04:04:52Z
author guenther
files src/sys/arch/i386/i386/cpu.c log diff annotate
src/sys/arch/i386/i386/locore0.S log diff annotate
src/sys/arch/i386/include/specialreg.h log diff annotate
message Rename ARCH_CAPABILITIES_* #defined to ARCH_CAP_*
Provide more ARCH_CAP_* defines per June 2023 SDM

ok jsg@ deraadt@

date 2023-07-21T22:24:41Z
author bluhm
files src/sys/net/if_loop.c log diff annotate
message Do not dump corrupted packets on loopback bpf.

lo(4) used to dump to bpf only for output. It seems that when
if_bpf_mtap() was introduced, this changed and lo(4) dumps an
additional truncated packet. The default bpf_mtap_ether() is not
suitable for lo(4).

Install a dummy lo_bpf_mtap() to suppress bpf on input.

OK mvs@

date 2023-07-21T22:29:12Z
author bluhm
files src/sys/.gitignore log diff annotate
message Bring src/sys/.gitignore in sync with src/.gitignore.

OK tobhe@