NetBSD/src Ne899wusys/arch/macppc/dev obio.c obiovar.h

   support volume control buttons found on some(?) performas
VersionDeltaFile
1.56+51-2sys/arch/macppc/dev/obio.c
1.8+18-1sys/arch/macppc/dev/obiovar.h
+69-32 files

NetBSD/src sIL841bsys/compat/netbsd32 netbsd32_ioctl.c

   Explicitly cast IOCPARM_MAX to size_t - it can never be negative.
   Hopefully avoids build breakage by a signed vs. unsigned comparision warning
   on mips*64*.
VersionDeltaFile
1.125+3-3sys/compat/netbsd32/netbsd32_ioctl.c
+3-31 files

NetBSD/src bXZ5Kwysys/arch/macppc/dev obio.c, sys/arch/macppc/macppc autoconf.c

   On Xserve G4 fan 0 seems to cool the CPU, act accordingly.
VersionDeltaFile
1.55+17-19sys/arch/macppc/dev/obio.c
1.65+3-3sys/arch/macppc/macppc/autoconf.c
+20-222 files

LLVM/project 35ef43bllvm/lib/Transforms/Vectorize LoopVectorizationPlanner.h

Nit
DeltaFile
+2-4llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+2-41 files

LLVM/project cf06e35llvm/lib/Target/PowerPC PPCISelLowering.cpp PPCInstrVSX.td

[PowerPC] Decouple _Float16 ISel and AIX ABI routing from -mfloat16 flag
DeltaFile
+5-6llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+2-5llvm/lib/Target/PowerPC/PPCInstrVSX.td
+7-112 files

LLVM/project 07b3b88llvm/include/llvm/ADT SmallVector.h

[LLVM|ADT] Fix shadowing warnings for SmallVector (#196907)

Fixes the following warning with `-Wshadow-field`.

```
Parameter 'Size' shadows member inherited from type 'SmallVectorBase<unsigned int>'
```
DeltaFile
+10-10llvm/include/llvm/ADT/SmallVector.h
+10-101 files

LLVM/project f0c84b3llvm/test/TableGen/GlobalISelCombinerEmitter match-table.td, llvm/utils/TableGen GlobalISelCombinerEmitter.cpp

[GlobalISel] Skip match table for opcodes with no combines (#196017)

Generate an opcode predicate for GICombiner matchers and use it to
return from tryCombineAll before setting up matcher state and executing
the match table.

The opcode list is collected from the generated rules, so the guard
stays in sync with the match table and avoids match-table overhead for
instructions the combiner cannot handle.

Improves CTMark geomean by -0.33% on stage1-aarch64-O0-g.

https://llvm-compile-time-tracker.com/compare.php?from=ed50ea52004259af958bb3e5636268342c49ee62&to=aea6e13cbc76c500a2e0aaedced716b9508811a7&stat=instructions%3Au

Also improves -O3 GISel geomean by -0.07%. Local results since this
config isn't available on llvm-compile-time-tracker:
```
                 instructions:u                 diff
                            old           new

    [12 lines not shown]
DeltaFile
+39-0llvm/utils/TableGen/GlobalISelCombinerEmitter.cpp
+18-1llvm/test/TableGen/GlobalISelCombinerEmitter/match-table.td
+57-12 files

LLVM/project c2b871bllvm/test/tools/llubi intr_fp_minmax.ll intr_fp_vector_reduce.ll, llvm/tools/llubi/lib Interpreter.cpp

[llubi] Upstream existing floating-point intrinsics (#196034)

This PR upstreams existing floating-point intrinsics in the out-of-tree
version of llubi. Including FP vector reduction, FP min/max operations,
etc. Some minor bugs from #188453 are also fixed.
DeltaFile
+376-66llvm/tools/llubi/lib/Interpreter.cpp
+122-0llvm/test/tools/llubi/intr_fp_minmax.ll
+82-0llvm/test/tools/llubi/intr_fp_vector_reduce.ll
+59-0llvm/test/tools/llubi/intr_fp_vector_reduce_nondet.ll
+40-0llvm/test/tools/llubi/intr_fp_fptoi_sat.ll
+35-0llvm/test/tools/llubi/intr_fp_is_fpclass.ll
+714-665 files not shown
+799-6611 files

OPNSense/core db0e57bsrc/etc/inc interfaces.inc, src/www interfaces.php

interfaces: bring back interface_dhcpv6_id() and improve use a bit #7647

Keep this as $default_id but allow the overrides already implemented.

PR: https://forum.opnsense.org/index.php?topic=51148.0
DeltaFile
+36-11src/etc/inc/interfaces.inc
+11-11src/www/interfaces.php
+47-222 files

FreeBSD/ports 6fafd42games/anki distinfo Makefile

games/anki: Update to 25.09.4

Changelogs since 25.09.2:

https://github.com/ankitects/anki/releases/tag/25.09.4
https://github.com/ankitects/anki/releases/tag/25.09.3

MFH:            2026Q2
(cherry picked from commit efaffca6dea405df8d28ec1fcd96547ea526de54)
DeltaFile
+5-5games/anki/distinfo
+2-4games/anki/Makefile
+7-92 files

LLVM/project 5470951mlir/include/mlir/Interfaces MemorySlotInterfaces.td MemorySlotInterfaces.h, mlir/lib/Interfaces MemorySlotInterfaces.cpp

[mlir][mem2reg] Promote memory slots through transparent view operations
DeltaFile
+109-0mlir/lib/Interfaces/MemorySlotInterfaces.cpp
+50-13mlir/lib/Transforms/Mem2Reg.cpp
+47-0mlir/include/mlir/Interfaces/MemorySlotInterfaces.td
+43-0mlir/include/mlir/Interfaces/MemorySlotInterfaces.h
+33-0mlir/test/Transforms/mem2reg.mlir
+23-0mlir/test/lib/Dialect/Test/TestOpDefs.cpp
+305-131 files not shown
+318-137 files

LLVM/project 3f091afmlir/include/mlir/Dialect/Tosa/Transforms Passes.td, mlir/lib/Dialect/Tosa/Transforms TosaDowngrade1p1To1p0.cpp CMakeLists.txt

[mlir][tosa] Add a pass to downgrade TOSA `1.1.draft` to `1.0` (#194971)

This commit adds a pass that will allow 1.1.draft operations to be
rewritten to their 1.0 counterparts where possible. The pass currently
covers the following operations:
- bool <-> fp32 casts via i8 bridge casts
- bool gather/scatter with i32 indices via i8 payload rewrites

Note that the downgrade is 'best-effort' and the pass does not perform
any validation itself. The validation pass should be run after
downgrading to check that the resulting IR was downgraded successfully.

Motivation: This decouples the target specification version in
legalizations and backends. Legalizations from higher level frameworks
may be updated to support producing TOSA 1.1.draft variants of
operations, while backends can still consume TOSA 1.0 IR after running
the downgrade pass.
DeltaFile
+162-0mlir/lib/Dialect/Tosa/Transforms/TosaDowngrade1p1To1p0.cpp
+118-0mlir/test/Dialect/Tosa/tosa-downgrade-1-1-to-1-0.mlir
+11-0mlir/include/mlir/Dialect/Tosa/Transforms/Passes.td
+1-0mlir/lib/Dialect/Tosa/Transforms/CMakeLists.txt
+292-04 files

NetBSD/pkgsrc EfKIlSIdoc CHANGES-2026

   doc: Updated mail/mew to 6.11
VersionDeltaFile
1.2972+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc flpR5ctmail/mew PLIST distinfo

   Mew 6.11 (2026-05-11)

   * Supporting coming Emacs 31.
   * Removing fallback code from the "submission" port to the "smtp" port.
   * `mew-smtp-port` is now defined as `"submission"` instead of `"smtp"`.
   * Remove STARTTLS parameters for non-STARTTLS connections with GnuTLS
     [#212](github.com/kazu-yamamoto/Mew/pull/212)
   * Fix: BIMI logo color
     [#210](github.com/kazu-yamamoto/Mew/pull/210)
   * Support "BIMI-Indicator:" Header
     [#208](github.com/kazu-yamamoto/Mew/pull/208)
   * Hiding UI- in Message Mode
     [#204](https://github.com/kazu-yamamoto/Mew/pull/204)
   * Fix master password issues / Add Asymmetric (public key) encryption support
     [#201](https://github.com/kazu-yamamoto/Mew/pull/201)
VersionDeltaFile
1.21+5-4mail/mew/PLIST
1.55+4-4mail/mew/distinfo
1.110+2-2mail/mew/Makefile
+11-103 files

LLVM/project 9da64e8llvm/test/CodeGen/AArch64 bf16-v8-instructions.ll bf16-instructions.ll, llvm/test/CodeGen/AMDGPU ctlz_zero_poison.ll ctlz_zero_undef.ll

Merge upstream/main into users/mariusz-sikora-at-amd/add-feature-buff
DeltaFile
+4,634-367llvm/test/CodeGen/RISCV/rvv/fixed-vectors-reduction-fp.ll
+3,073-1,259llvm/test/CodeGen/AArch64/bf16-v8-instructions.ll
+2,614-0llvm/test/CodeGen/AMDGPU/ctlz_zero_poison.ll
+0-2,614llvm/test/CodeGen/AMDGPU/ctlz_zero_undef.ll
+1,660-649llvm/test/CodeGen/AArch64/bf16-instructions.ll
+1,440-725llvm/test/CodeGen/AArch64/bf16-v4-instructions.ll
+13,421-5,6142,284 files not shown
+68,023-34,3632,290 files

LLVM/project b7f5647clang/lib/CodeGen CGExprScalar.cpp, clang/test/CodeGen arm-mfp8.c

[Clang] Fix incorrect type for `__mfp8` in `extractelement` codegen (#192977)

The codegen for extracting an element from an FP8 vector was emitting a
simple `extractelement` with `i8` type for the extracted element. The
`__mfp8` type is represented as `<1 x i8>` in LLVM IR. This codegen
created inconsistency in Clang - some `__mfp8` expressions would
correspond to LLVM IR values with `<1 x i8>` type and some to `i8` type.

It also caused an assertion failure when the extracted element was
passed as a function argument.

This patch fixes the issue by inserting the extracted element
into a `<1 x i8>`.
DeltaFile
+52-0clang/test/CodeGen/AArch64/fp8-extract.c
+4-8clang/test/CodeGen/arm-mfp8.c
+9-1clang/lib/CodeGen/CGExprScalar.cpp
+65-93 files

FreeBSD/ports 8c7b793archivers/p5-Archive-Tar distinfo Makefile

archivers/p5-Archive-Tar: update to 3.06
DeltaFile
+3-3archivers/p5-Archive-Tar/distinfo
+1-1archivers/p5-Archive-Tar/Makefile
+4-42 files

LLVM/project 5e7ce91mlir/include/mlir/Dialect/SPIRV/IR SPIRVCLOps.td, mlir/test/Dialect/SPIRV/IR ocl-ops.mlir

[mlir][SPIR-V] Add CL.{exp2,exp10,log2,log10} ops (#196869)
DeltaFile
+200-0mlir/test/Dialect/SPIRV/IR/ocl-ops.mlir
+84-0mlir/include/mlir/Dialect/SPIRV/IR/SPIRVCLOps.td
+8-0mlir/test/Target/SPIRV/ocl-ops.mlir
+292-03 files

LLVM/project 7aef15dllvm/lib/Target/AMDGPU SIInstrInfo.cpp AMDGPU.td

[AMDGPU] Add VMovB64 subtarget feature (#196340)
DeltaFile
+4-4llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+6-0llvm/lib/Target/AMDGPU/AMDGPU.td
+0-2llvm/lib/Target/AMDGPU/GCNSubtarget.h
+1-1llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
+11-74 files

LLVM/project 96313bcllvm/lib/Target/X86 X86InstrCompiler.td X86ISelLowering.cpp, llvm/test/CodeGen/X86 atomic-load-store.ll

[X86] Cast atomic vectors in IR to support floats (#148899)

This commit casts floats to ints in an atomic load during AtomicExpand
to support
floating point types. It also is required to support 128 bit vectors in
SSE/AVX.
DeltaFile
+98-288llvm/test/CodeGen/X86/atomic-load-store.ll
+15-0llvm/lib/Target/X86/X86InstrCompiler.td
+7-0llvm/lib/Target/X86/X86ISelLowering.cpp
+2-0llvm/lib/Target/X86/X86ISelLowering.h
+122-2884 files

LLVM/project e87ae8dllvm/lib/Target/X86 X86.h X86CodeGenPassBuilder.cpp, llvm/lib/Target/X86/GISel X86PreLegalizerCombiner.cpp

[GISel][X86] port X86PreLegalizerCombiner to npm (#182638)

Porting X86PreLegalizerCombiner to npm as part of
llvm/llvm-project#178192
DeltaFile
+59-29llvm/lib/Target/X86/GISel/X86PreLegalizerCombiner.cpp
+10-2llvm/lib/Target/X86/X86.h
+6-0llvm/lib/Target/X86/X86CodeGenPassBuilder.cpp
+2-2llvm/lib/Target/X86/X86TargetMachine.cpp
+1-0llvm/test/CodeGen/X86/GlobalISel/prelegalizer-combiner-sub.mir
+1-0llvm/lib/Target/X86/X86PassRegistry.def
+79-337 files not shown
+86-3313 files

LLVM/project 2726c0fllvm/test/Transforms/LoopVectorize reduction-inloop-min-max.ll runtime-check-readonly.ll, llvm/test/Transforms/LoopVectorize/AArch64 sve2-histcnt-too-many-deps.ll aarch64-predication.ll

[LV][NFC] Remove instcombine pass from RUN lines of simple tests (#196257)

Most of the work done by the instcombine pass on these files involves
canonicalising GEPs and shuffling code around. I don't believe there is
any value running instcombine in these cases.
DeltaFile
+27-27llvm/test/Transforms/LoopVectorize/PowerPC/vsx-tsvc-s173.ll
+16-15llvm/test/Transforms/LoopVectorize/AMDGPU/packed-math.ll
+11-11llvm/test/Transforms/LoopVectorize/AArch64/sve2-histcnt-too-many-deps.ll
+9-9llvm/test/Transforms/LoopVectorize/reduction-inloop-min-max.ll
+4-4llvm/test/Transforms/LoopVectorize/runtime-check-readonly.ll
+3-3llvm/test/Transforms/LoopVectorize/AArch64/aarch64-predication.ll
+70-692 files not shown
+76-758 files

LLVM/project 4211fdellvm/lib/Analysis IVDescriptors.cpp, llvm/lib/Transforms/Vectorize LoopVectorize.cpp VPlanRecipes.cpp

[LV] Handle FSub Partial Reductions (#191186)

Introduces a new RecurKind value 'FSub' in order to handle partial
reductions of floating point values.

This is done by following the existing method for integer partial
reductions, doing a positive accumulation followed by a final
subtraction in the middle block.
DeltaFile
+317-0llvm/test/Transforms/LoopVectorize/AArch64/partial-reduce-sub-epilogue-vec.ll
+139-0llvm/test/Transforms/LoopVectorize/AArch64/partial-reduce-sub.ll
+38-0llvm/test/Transforms/LoopVectorize/AArch64/partial-reduce-fsub-chained.ll
+31-5llvm/lib/Analysis/IVDescriptors.cpp
+18-6llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+10-2llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+553-135 files not shown
+577-1711 files

OPNSense/core 0f78f69src/opnsense/mvc/app/views/OPNsense/Kea leases4.volt

Fix typo in client_id
DeltaFile
+2-2src/opnsense/mvc/app/views/OPNsense/Kea/leases4.volt
+2-21 files

FreeBSD/ports 4fc6c5edevel/llvm12 Makefile, devel/llvm13 Makefile

devel/llvm??: Add Mips back to standard backends

I'd forgotten that STANDARD_BACKENDS is includes _FREEBSD_BACKENDS so
Mips dropped out of the list when it was removed from _FREEBSD_BACKENDS.

PR:             295111
Fixes:          2a7c0561200c ("all: drop support for FreeBSD 13, mips and risc64sf")
DeltaFile
+1-1devel/llvm12/Makefile
+1-1devel/llvm13/Makefile
+1-1devel/llvm14/Makefile
+1-1devel/llvm15/Makefile
+1-1devel/llvm16/Makefile
+1-1devel/llvm17/Makefile
+6-65 files not shown
+11-1111 files

NetBSD/pkgsrc 4MDsyPVdoc CHANGES-2026

   Updated security/sqlmap, benchmarks/sysbench
VersionDeltaFile
1.2971+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 7BgnpBebenchmarks/sysbench Makefile PLIST, benchmarks/sysbench/patches patch-m4_ax__check__docbook.m4 patch-tests_Makefile.am

   sysbench: updated to 1.0.20

   1.0.20
   * build/CI/packaging: Add arm64 to Travis CI matrix
   * build/CI/packaging: add Ubuntu Focal
   * build/CI/packaging: remove Fedora Rawhide from CI matrix
   * build/CI/packaging: fix regression tests to work with MySQL 8.0.19+
   * build/CI/packaging: fix macOS builds in Travis
   * build/CI/packaging: remove Ubuntu Disco (EOL)
VersionDeltaFile
1.1+38-0benchmarks/sysbench/patches/patch-m4_ax__check__docbook.m4
1.30+20-12benchmarks/sysbench/Makefile
1.1+27-0benchmarks/sysbench/patches/patch-tests_Makefile.am
1.5+13-1benchmarks/sysbench/PLIST
1.6+6-5benchmarks/sysbench/distinfo
1.7+2-7benchmarks/sysbench/options.mk
+106-251 files not shown
+107-267 files

NetBSD/pkgsrc pOeSd8Ysecurity/sqlmap PLIST distinfo

   sqlmap: updated to 1.10.5

   1.10.5
   Minor update
VersionDeltaFile
1.21+22-1security/sqlmap/PLIST
1.30+4-4security/sqlmap/distinfo
1.45+2-2security/sqlmap/Makefile
+28-73 files

OPNSense/core ba9ed8bsrc/etc/inc filter.inc interfaces.inc

backend: use bridges/bridged safe iteration

(cherry picked from commit 9cd352e408a0f2bb874ad3bd0035fb932f305c7b)
DeltaFile
+7-6src/etc/inc/filter.inc
+3-9src/etc/inc/interfaces.inc
+10-152 files

OPNSense/core 14eadfcsrc/etc/inc interfaces.inc

interafces: safe gres/gifs iteration

(cherry picked from commit 3d7cbd8079ddeb1febbad9cd1bd0467c6931e23e)
DeltaFile
+4-16src/etc/inc/interfaces.inc
+4-161 files