OpenBSD cvs log

created 2024-06-12T05:59:30Z
begin 2024-06-09T00:00:00Z
end 2024-06-10T00:00:00Z
path src/sys
commits 5

date 2024-06-09T03:12:59Z
author jsg
files src/sys/arch/amd64/include/i82489var.h log diff annotate
message remove unused prototypes and pin number defines

date 2024-06-09T03:21:54Z
author jsg
files src/sys/dev/ic/ufshci.c log diff annotate
message remove prototypes for functions removed in rev 1.34

date 2024-06-09T05:18:12Z
author jsg
files src/sys/dev/pci/fms.c log diff annotate
src/sys/dev/pci/if_em_hw.h log diff annotate
src/sys/dev/pci/igc_api.h log diff annotate
src/sys/dev/pci/igc_mac.h log diff annotate
src/sys/dev/pci/igc_nvm.h log diff annotate
src/sys/dev/pci/igc_phy.h log diff annotate
src/sys/dev/pci/ixgbe.h log diff annotate
message remove prototypes with no matching function

date 2024-06-09T16:25:28Z
author jan
files src/sys/dev/pv/if_vio.c log diff annotate
src/sys/net/if.h log diff annotate
src/sys/net/if_vlan.c log diff annotate
message Introduce IFCAP_VLAN_HWOFFLOAD for vio(4).

Add IFCAP_VLAN_HWOFFLOAD to signal hardware like vio(4) can handle
checksum or TSO offloading with inline VLAN tags.

tested by Mark Patruck, sf@ and bluhm@

ok sf@ and bluhm@

date 2024-06-09T21:15:29Z
author jca
files src/sys/arch/alpha/include/cpu.h log diff annotate
src/sys/arch/amd64/include/cpu.h log diff annotate
src/sys/arch/arm/include/cpu.h log diff annotate
src/sys/arch/hppa/include/cpu.h log diff annotate
src/sys/arch/i386/include/cpu.h log diff annotate
src/sys/arch/m88k/include/cpu.h log diff annotate
src/sys/arch/mips64/include/cpu.h log diff annotate
src/sys/arch/powerpc64/include/cpu.h log diff annotate
src/sys/arch/sh/include/cpu.h log diff annotate
message Add a compiler barrier where missing in CPU_BUSY_CYCLE() implems

Having differences between architectures is asking for problems. And
adding a barrier here just makes sense in most cases. This is also what
cpu_relax() provides in Linux land.

ok kettenis@ claudio@