OpenBSD cvs log

created 2024-11-23T22:04:06Z
begin 2024-11-19T00:00:00Z
end 2024-11-20T00:00:00Z
path src/sys
commits 7

date 2024-11-19T02:11:03Z
author dlg
files src/sys/net/if_pfsync.c log diff annotate
message fix tcpdump on pfsync interfaces.

after the last rewrite i was showing bpf ip packets, not the pfsync
payload like the PFSYNC DLT expected.

this also lets bpf see packets being processed by pfsync input
handling, so if you want to see only what's being sent you'll need
to filter by direction.

reported by Marc Boisis

date 2024-11-19T02:31:35Z
author jcs
files src/sys/dev/pci/nvme_pci.c log diff annotate
message kill our kids before we die, or there will be panic

dlg concurs

date 2024-11-19T05:49:27Z
author anton
files src/sys/arch/amd64/amd64/db_disasm.c log diff annotate
message Teach ddb how to disassemble endbr64.

With input on prefix handling and ok jsg@

date 2024-11-19T06:18:26Z
author jsg
files src/sys/uvm/uvm_extern.h log diff annotate
message remove forward declaration of struct mount

unneeded after uvm_vnp_sync() prototype moved to vnode.h in 2014

date 2024-11-19T09:39:57Z
author stsp
files src/sys/dev/pci/if_ice.c log diff annotate
message implement ice_add_rx_lldp_filter()

date 2024-11-19T09:41:32Z
author stsp
files src/sys/dev/pci/if_ice.c log diff annotate
src/sys/dev/pci/if_icevar.h log diff annotate
message gather ice(4) hardware counters for debugging

date 2024-11-19T23:26:35Z
author dlg
files src/sys/net/bpf.c log diff annotate
src/sys/net/bpfdesc.h log diff annotate
message use a tailq for the global list of bpf_if structs.

this replaces a hand rolled list that's been here since 1.1.

ok claudio@ kn@ tb@