OpenBSD cvs log

created 2021-01-23T22:02:44Z
begin 2021-01-16T00:00:00Z
end 2021-01-17T00:00:00Z
path src/sys
commits 8

date 2021-01-16T05:08:19Z
author jsg
files src/sys/dev/pci/pcidevs log diff annotate
message add devices mostly from x1 nano jcs@ has

date 2021-01-16T05:09:02Z
author jsg
files src/sys/dev/pci/pcidevs.h log diff annotate
src/sys/dev/pci/pcidevs_data.h log diff annotate
message regen

date 2021-01-16T06:41:09Z
author jsg
files src/sys/dev/usb/usbdevs log diff annotate
message add Intel AX201 Bluetooth

date 2021-01-16T06:42:01Z
author jsg
files src/sys/dev/usb/usbdevs.h log diff annotate
src/sys/dev/usb/usbdevs_data.h log diff annotate
message regen

date 2021-01-16T07:02:39Z
author jsg
files src/sys/dev/pci/azalia_codec.c log diff annotate
message recognise Realtek ALC287

date 2021-01-16T07:58:12Z
author claudio
files src/sys/netinet/ip_output.c log diff annotate
message Extend IP_MULTICAST_IF to take either an address (struct in_addr), a
struct ip_mreq or a struct ip_mreqn. Using struct ip_mreqn allows to
pass a interface index instead of specifying the multicast interface
via its IP address. This is also the API implemented by Linux and
FreeBSD and should help porting software.
OK bluhm@ phessler@ robert@

date 2021-01-16T13:09:46Z
author bluhm
files src/sys/net/pf.c log diff annotate
message The sysctl variable net.inet.ip.forwarding is checked before
ip_input() passes the packet to ip_forward(). But with an af-to
rule, pf(4) calls ip_forward() directly. Check the forwarding
sysctl also in pf to get consistent behavior. This requires to set
both ip and ip6 forwarding to get packet flow in both directions
over af-to rules.
OK kn@

date 2021-01-16T18:32:47Z
author mpi
files src/sys/uvm/uvm_fault.c log diff annotate
message Move `access_type' to the fault context.

Fix a regression where the valye wasn't correctly overwritten for wired
mapping, introduced in previous refactoring.

ok mvs@