OpenBSD/src T1TnJrusys/dev/ic qwz.c qwzreg.h, sys/dev/pci if_qwz_pci.c

   sys/qwz: add 802.11n support

   Advertise HT capabilities and pass HT/QoS peer association.

   OK: stsp@
VersionDeltaFile
1.29+172-23sys/dev/ic/qwz.c
1.11+12-3sys/dev/pci/if_qwz_pci.c
1.15+8-1sys/dev/ic/qwzreg.h
+192-273 files

OpenBSD/src 0iunsyHsys/dev/pci if_qwx_pci.c

   Ask qwx(4) firmware to move into M3 state before resetting the device.

   From mglocker@ via qwz(4).
VersionDeltaFile
1.32+47-16sys/dev/pci/if_qwx_pci.c
+47-161 files

OpenBSD/src DYpSKq7sys/dev/ic qwx.c

   Reset unified_ready flag before sending WMI init command to qwx(4) firmware.

   From mglocker@ via qwz(4)
VersionDeltaFile
1.105+3-1sys/dev/ic/qwx.c
+3-11 files

OpenBSD/src eBrW0V0share/man/man5 bsd.port.mk.5

   man/bsd.port.mk.5: document check-shlib-syms

   OK: sthen@, tb@, gonzalo@
VersionDeltaFile
1.655+9-2share/man/man5/bsd.port.mk.5
+9-21 files

OpenBSD/src K9EM3Kbusr.sbin/bgpd chash.h chash.c

   Change CH_LOCATE equality function to be named _eq

   Reduce risk of using e.g. memcmp there. _eq returns 1 for match and
   0 for no match. Also make all arguemnts const. This makes it a bit
   unclear which argument is which. First argument is from the hash table
   the second argument is the arg passed to CH_LOCATE.

   OK tb@
VersionDeltaFile
1.8+6-6usr.sbin/bgpd/chash.h
1.13+5-5usr.sbin/bgpd/chash.c
1.146+3-3usr.sbin/bgpd/rde_attr.c
+14-143 files

OpenBSD/src EVwuzdgsys/dev/ic qwx.c qwxvar.h

   Avoid calling bus_dmamap_destroy() from interrupt context in qwx(4).

   Keep Rx TID DMA memory allocated until the interface goes down,
   rather than freeing DMA memory in interrupt context.

   Fixes splassert failures reported in dmesg because of qwx(4), such as:

   splassert: vm_map_assert_wrlock_ln: want 0 have 4
   splassert: uvm_mapent_alloc: want 0 have 4
   splassert: assertwaitok: want 0 have 4

   Root cause of problem in qwx(4) pointed out by kettenis@, who also
   reviewed several diffs until I arrived at a correct fix.

   ok kettenis@ phessler@
VersionDeltaFile
1.104+47-64sys/dev/ic/qwx.c
1.33+13-2sys/dev/ic/qwxvar.h
+60-662 files

OpenBSD/src BK45Vlyshare/man/man4 ix.4

   document E610 support in ix(4)
VersionDeltaFile
1.12+6-4share/man/man4/ix.4
+6-41 files

OpenBSD/src 86Js4Xksys/dev/pci ixgbe_e610.c ixgbe_type.h

   Add support for Intel E610 Ethernet devices to the ix(4) driver.

   Build fix for sparc64 and arm64 contributed by jmatthew@

   ok deraadt@
VersionDeltaFile
1.1+5,659-0sys/dev/pci/ixgbe_e610.c
1.42+1,958-3sys/dev/pci/ixgbe_type.h
1.226+175-8sys/dev/pci/if_ix.c
1.29+27-3sys/dev/pci/ixgbe.c
1.39+8-1sys/dev/pci/ixgbe.h
1.49+4-1sys/dev/pci/if_ix.h
+7,831-161 files not shown
+7,833-177 files

OpenBSD/src nMAEJJFsys/dev/pci pcidevs_data.h pcidevs.h

   regen
VersionDeltaFile
1.2125+21-1sys/dev/pci/pcidevs_data.h
1.2130+6-1sys/dev/pci/pcidevs.h
+27-22 files

OpenBSD/src 72b9WfOsys/dev/pci pcidevs

   add PCI IDs for Intel E610 products
VersionDeltaFile
1.2137+6-1sys/dev/pci/pcidevs
+6-11 files

OpenBSD/src wP3qTrTusr.sbin/bgpctl output.c

   Add filter_size to the total memory use for "Sets and filters"

   OK tb@
VersionDeltaFile
1.76+2-2usr.sbin/bgpctl/output.c
+2-21 files

OpenBSD/src 5B9vFoysys/sys namei.h

   0X20 -> 0x20, matching the other hex constants
VersionDeltaFile
1.54+2-2sys/sys/namei.h
+2-21 files

OpenBSD/src 49LEFVrlib/libcrypto/x509 x509_addr.c

   x509_addr: do not call memcmp() on NULL

   If the minimum length is 0, either a->data or b->data could be NULL, so
   do not call memcmp() and let the length comparison decide. Doing it this
   way preserves the RFC 3779, section 2.2.3.3 semantics and avoids the UB.

   A valid IPAddressFamily has an addressFamily element of 2 or 3 octets:
   2 octets for the AFI and 1 octet for the optional SAFI. The check as
   it is written compares the AFIs and, if they're equal, lets absent SAFI
   be smaller than any other SAFI. So IPv4 (0x0001) sorts before IPv4
   unicast (0x000101) and that in turn sorts before IPv6 (0x0002).

   Found by beck while breaking OpenSSL

   ok kenjiro
VersionDeltaFile
1.96+5-5lib/libcrypto/x509/x509_addr.c
+5-51 files

OpenBSD/src S7xm4S3usr.bin/ssh chacha.c

   chacha: avoid -Wunterminated-string-initialization warning

   The sizes of sigma[] and tau[] aren't used, so include a trailing NUL and
   thereby avoid upsetting modern compilers about use of dangerous, valid C.

   ok deraadt djm
VersionDeltaFile
1.3+3-3usr.bin/ssh/chacha.c
+3-31 files

OpenBSD/src 2INIgFfsys/kern kern_exec.c

   Intended behaviour should not have a XXX XXX XXX XXX
   ok beck
VersionDeltaFile
1.269+2-5sys/kern/kern_exec.c
+2-51 files

OpenBSD/src qorsBALsys/dev/pci/drm/amd/amdgpu vcn_v4_0.c

   drm/amdgpu/vcn4: Avoid overflow on msg bound check

   From Benjamin Cheng
   271cd5429513ff9b364a9bf8903e5b65b687eb25 in linux-6.18.y/6.18.32
   65bce27ea6192320448c30267ffc17ffa094e713 in mainline linux
VersionDeltaFile
1.12+3-1sys/dev/pci/drm/amd/amdgpu/vcn_v4_0.c
+3-11 files

OpenBSD/src SGqq9Pjsys/dev/pci/drm/amd/amdgpu vcn_v3_0.c

   drm/amdgpu/vcn3: Avoid overflow on msg bound check

   From Benjamin Cheng
   016b64a0313ea5346cf526e30c8d3e66aca10175 in linux-6.18.y/6.18.32
   e6e9faba8100628990cccd13f0f044a648c303cf in mainline linux
VersionDeltaFile
1.15+3-1sys/dev/pci/drm/amd/amdgpu/vcn_v3_0.c
+3-11 files

OpenBSD/src 9zRCz31sys/dev/pci/drm/amd/amdgpu amdgpu_vm.c amdgpu_vm.h

   drm/amdgpu: rework how we handle TLB fences

   From Alex Deucher
   f0d3bb6f5125c69ce872a7574afd6d9e1f7ea349 in linux-6.18.y/6.18.32
   69c5fbd2b93b5ced77c6e79afe83371bca84c788 in mainline linux
VersionDeltaFile
1.34+6-1sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
1.11+2-0sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.h
+8-12 files

OpenBSD/src tp1XdNJsys/dev/pci/drm/amd/amdgpu amdgpu_vm.c

   Revert "drm/amdgpu: don't attach the tlb fence for SI"

   From Prike Liang
   13e9ea445191390269a6f092d009b68e086e601b in linux-6.18.y/6.18.32
   9163fe4d790fb4e16d6b0e23f55b43cddd3d4a65 in mainline linux
VersionDeltaFile
1.33+1-3sys/dev/pci/drm/amd/amdgpu/amdgpu_vm.c
+1-31 files

OpenBSD/src LSkfKJZsys/dev/pci/drm/amd/amdgpu amdgpu_gmc.c

   drm/amdgpu: Fix validating flush_gpu_tlb_pasid()

   From Timur Kristof
   576b73b246564c8fa75572d45c1ed9b053b4be5b in linux-6.18.y/6.18.32
   e3a6eff92bbd960b471966d9afccb4d584546d17 in mainline linux
VersionDeltaFile
1.19+4-2sys/dev/pci/drm/amd/amdgpu/amdgpu_gmc.c
+4-21 files

OpenBSD/src pA8PZTPsys/dev/pci/drm/amd/amdgpu amdgpu_gmc.c

   drm/amdgpu: validate the flush_gpu_tlb_pasid()

   From Prike Liang
   fd78e63459ab6fe99b9fd026c420808d09eaa8be in linux-6.18.y/6.18.32
   f4db9913e4d3dabe9ff3ea6178f2c1bc286012b8 in mainline linux
VersionDeltaFile
1.18+4-0sys/dev/pci/drm/amd/amdgpu/amdgpu_gmc.c
+4-01 files

OpenBSD/src HlaK0jRsys/dev/pci/drm/amd/pm/powerplay/smumgr ci_smumgr.c

   drm/amdgpu/pm: align Hawaii mclk workaround with radeon

   From Alex Deucher
   f8f546883e8777493157ccc4fac5794c502fcbd2 in linux-6.18.y/6.18.32
   1987c79b4fe5789dfa14423e78b5c25f6acf3e9d in mainline linux
VersionDeltaFile
1.7+4-4sys/dev/pci/drm/amd/pm/powerplay/smumgr/ci_smumgr.c
+4-41 files

OpenBSD/src 1yLEHLcsys/dev/pci/drm/amd/pm/powerplay/smumgr ci_smumgr.c

   drm/amdgpu/pm: add missing revision check for CI

   From Alex Deucher
   6fed6e9f10622db34a18ee6ce155cbe0fa211b23 in linux-6.18.y/6.18.32
   2a561b361b7681509710f3cfc3d95d54c87ac69f in mainline linux
VersionDeltaFile
1.6+3-2sys/dev/pci/drm/amd/pm/powerplay/smumgr/ci_smumgr.c
+3-21 files

OpenBSD/src yR4k88jsys/dev/pci/drm/amd/amdgpu sdma_v4_0.c

   drm/amdgpu/sdma4: replace BUG_ON with WARN_ON in fence emission

   From John B. Moore
   0b91ea46bb68abf98a082bf239092253bbd6aaa2 in linux-6.18.y/6.18.32
   78d2e624fa073c14970aa097adcf3ea31c157a66 in mainline linux
VersionDeltaFile
1.20+2-2sys/dev/pci/drm/amd/amdgpu/sdma_v4_0.c
+2-21 files

OpenBSD/src fYf4SCVsys/dev/pci/drm/amd/amdkfd kfd_priv.h kfd_device_queue_manager.c

   drm/amdkfd: Make all TLB-flushes heavy-weight

   From Felix Kuehling
   6fbd52d210c15f3987e04d8fa2cf6ca3ace2d0d8 in linux-6.18.y/6.18.32
   9b4e3495d1bd2469bf94b74930c153c2d534ddb7 in mainline linux
VersionDeltaFile
1.23+3-3sys/dev/pci/drm/amd/amdkfd/kfd_priv.h
1.23+3-3sys/dev/pci/drm/amd/amdkfd/kfd_device_queue_manager.c
1.25+2-2sys/dev/pci/drm/amd/amdkfd/kfd_chardev.c
1.27+2-2sys/dev/pci/drm/amd/amdkfd/kfd_svm.c
+10-104 files

OpenBSD/src SQWpfABsys/dev/pci/drm/amd/amdgpu gfx_v9_0.c

   drm/amdgpu/gfx9: drop unnecessary 64-bit fence flag check in KIQ

   From John B. Moore
   71614ab2a683490bf7f43bf25afcf0d2a57a8403 in linux-6.18.y/6.18.32
   7bbfb2559bcec39d1a4e1182d931a2046112c352 in mainline linux
VersionDeltaFile
1.34+0-3sys/dev/pci/drm/amd/amdgpu/gfx_v9_0.c
+0-31 files

OpenBSD/src cS8NAZNsys/dev/pci/drm/amd/amdgpu amdgpu_gart.c

   drm/amdgpu: zero-initialize GART table on allocation

   From Philip Yang
   b17175d0a375b3ed5e81597dac4983fdb46e478d in linux-6.18.y/6.18.32
   e6c2e6c2e1fa066968a16aca1cb66cd1bdde7741 in mainline linux
VersionDeltaFile
1.10+10-3sys/dev/pci/drm/amd/amdgpu/amdgpu_gart.c
+10-31 files

OpenBSD/src reQ5s07sys/dev/pci/drm/radeon ci_dpm.c

   drm/radeon: add missing revision check for CI

   From Alex Deucher
   264ee64cf86794353e4fcb363282e3f9cf5249b3 in linux-6.18.y/6.18.32
   17223816498f7b117d138d18eb0eba63604dc74e in mainline linux
VersionDeltaFile
1.12+6-3sys/dev/pci/drm/radeon/ci_dpm.c
+6-31 files

OpenBSD/src pf7tAHMsys/dev/pci/drm drm_gem.c

   drm: Set old handle to NULL before prime swap in change_handle

   From Francis, David
   672464dd53231509c9c771110798c56d4660e19e in linux-6.18.y/6.18.32
   5e28b7b94408897e41c63477aabc9e1db439bc8c in mainline linux
VersionDeltaFile
1.31+24-1sys/dev/pci/drm/drm_gem.c
+24-11 files

OpenBSD/src JtnbyNPsys/dev/pci/drm/amd/amdkfd kfd_chardev.c kfd_priv.h

   drm/amdkfd: validate SVM ioctl nattr against buffer size

   From Alysa Liu
   db9530a9873a7c85d2266a922589ebcf427fa631 in linux-6.18.y/6.18.32
   045e0ff208f0838a246c10204105126611b267a1 in mainline linux
VersionDeltaFile
1.24+24-2sys/dev/pci/drm/amd/amdkfd/kfd_chardev.c
1.22+3-0sys/dev/pci/drm/amd/amdkfd/kfd_priv.h
+27-22 files