NetBSD/pkgsrc sSwssAXdoc CHANGES-2026

   doc: Updated lang/ghc98 to 9.8.2nb3
VersionDeltaFile
1.854+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 6XXuKQBlang/ghc98 distinfo Makefile, lang/ghc98/patches patch-libraries_text_cbits_measure__off.c

   ghc98: remove AVX workaround for NetBSD 11+

   Problem has been fixed as part of PR 57661.

   Bump PKGREVISION.
VersionDeltaFile
1.2+13-6lang/ghc98/patches/patch-libraries_text_cbits_measure__off.c
1.19+2-2lang/ghc98/distinfo
1.13+2-2lang/ghc98/Makefile
+17-103 files

NetBSD/pkgsrc-wip 0486c05urlwatch Makefile

wip/urlwatch: depends on misc/py-platformdirs
DeltaFile
+1-0urlwatch/Makefile
+1-01 files

FreeBSD/ports fe2c97acomms/py-streamdeck distinfo Makefile

comms/py-streamdeck: Update to version 0.9.8

ChangeLog:
https://github.com/abcminiuser/python-elgato-streamdeck/blob/0.9.8/CHANGELOG

Approved by:    eduardo (mentor, implicit)
MFH:            2026Q1

(cherry picked from commit 12d307f3fb3fbd93c2747b14df5e62543ed33e4e)
DeltaFile
+3-3comms/py-streamdeck/distinfo
+1-1comms/py-streamdeck/Makefile
+4-42 files

LLVM/project 28d900allvm/include/llvm/CodeGen SelectionDAGNodes.h, llvm/lib/CodeGen/SelectionDAG InstrEmitter.cpp SelectionDAGDumper.cpp

Add SDNodeFlag::NoConvergent
DeltaFile
+6-1llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+3-0llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
+3-0llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
+12-13 files

FreeBSD/src a2a9a77crypto/heimdal/kdc mit_dump.c

heimdal: Pass the correct pointer to realloc when growing a string buffer

The realloc in my_fgetln was trying to grow the pointer to the string
buffer, not the string buffer itself.

In function 'my_fgetln',
    inlined from 'mit_prop_dump' at crypto/heimdal/kdc/mit_dump.c:156:19:
crypto/heimdal/kdc/mit_dump.c:119:13: error: 'realloc' called on unallocated object 'line' [-Werror=free-nonheap-object]
  119 |         n = realloc(buf, *sz + (*sz >> 1));
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
crypto/heimdal/kdc/mit_dump.c: In function 'mit_prop_dump':
crypto/heimdal/kdc/mit_dump.c:139:11: note: declared here
  139 |     char *line = NULL;
      |           ^~~~

Reviewed by:    rmacklem, cy
Fixes:          a93e1b731ae4 ("heimdal-kadmin: Add support for the -f dump option")
Differential Revision:  https://reviews.freebsd.org/D54933

(cherry picked from commit 03d8ac948b1ad9c419b294c3129b7da58d818363)
DeltaFile
+1-1crypto/heimdal/kdc/mit_dump.c
+1-11 files

FreeBSD/src fc0c921sys/dev/iicbus iicbb.c

iicbb: Fix gcc12 complaint

So gcc12 doesn't understand that t->udelay is >= 1, so thinks that noack
might be unset sometimes. While we specifically constrain this on direct
assignment, there's a sysctl that might not. This is likely also a bug.
Instead of uglifying everything by using MAX(1, sc->udelay), I rewrote
the for loop as a do-while loop (which arguably dictates intent better
because this code clearly assumes it will be executed once).

Sponsored by:           Netflix

(cherry picked from commit 4b301f7e7ab43bb61561786c2ab33f3a3c4a725d)
DeltaFile
+4-3sys/dev/iicbus/iicbb.c
+4-31 files

LLVM/project 2fefdd2llvm/test/CodeGen/AMDGPU isel-amdgcn-cs-chain-intrinsic-w32.ll isel-amdgcn-cs-chain-intrinsic-w64.ll

[AMDGPU] Allo hoising of V_READFIRSTLANE_B32 for uniform operand

readfirstlane can be moved across control flow for uniform inputs.
The MachineInstr::NoConvergent attribute allows hoisting
which is otherwise prohibited for a convergent instruction.
DeltaFile
+82-82llvm/test/CodeGen/AMDGPU/isel-amdgcn-cs-chain-intrinsic-w32.ll
+52-52llvm/test/CodeGen/AMDGPU/isel-amdgcn-cs-chain-intrinsic-w64.ll
+24-24llvm/test/CodeGen/AMDGPU/llvm.amdgcn.make.buffer.rsrc.ll
+33-0llvm/test/CodeGen/AMDGPU/readanylane.ll
+16-16llvm/test/CodeGen/AMDGPU/isel-amdgpu-cs-chain-intrinsic-dyn-vgpr-w32.ll
+5-5llvm/test/CodeGen/AMDGPU/dag-preserve-disjoint-flag.ll
+212-1799 files not shown
+241-18515 files

LLVM/project 0c07203llvm/test/Transforms/LowerMatrixIntrinsics multiply-fused-dominance.ll

[Matrix] Add test where pointer phi currently blocks tiling.

Add a test with a phi node currently unnecessarily preventing tiling.
DeltaFile
+49-0llvm/test/Transforms/LowerMatrixIntrinsics/multiply-fused-dominance.ll
+49-01 files

FreeBSD/src 4bfb7cfusr.bin/runat runat.c

runat: Add -h to manipulate a symlink's named attribute dir

Lionel Cons <lionelcons1972 at gmail.com> requested
that a new option be added to runat(1) so that it could
be used to manipulate named attributes associated with
a symbolic link and not the file the symbolic link refers to).

This patch adds the option -h/--nofollow to do this.

Requested by:   Lionel Cons <lionelcons1972 at gmail.com>
Reviewed by:    kib
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D55023
DeltaFile
+28-7usr.bin/runat/runat.c
+28-71 files

LLVM/project c3a2597compiler-rt/lib/scudo/standalone primary64.h

[scudo] Add resident pages info to getStats (#178969)

Adding resident pages field to the primary allocator's getStats function
makes it consistent with the secondary allocator's getStats function.
DeltaFile
+6-1compiler-rt/lib/scudo/standalone/primary64.h
+6-11 files

FreeBSD/ports 12d307fcomms/py-streamdeck distinfo Makefile

comms/py-streamdeck: Update to version 0.9.8

ChangeLog:
https://github.com/abcminiuser/python-elgato-streamdeck/blob/0.9.8/CHANGELOG

Approved by:    eduardo (mentor, implicit)
MFH:            2026Q1
DeltaFile
+3-3comms/py-streamdeck/distinfo
+1-1comms/py-streamdeck/Makefile
+4-42 files

LLVM/project b737725llvm/include/llvm/Transforms/IPO Attributor.h, llvm/lib/Passes PassBuilderPipelines.cpp

Attributor: Add -light otions to -attributor-enable flag

Add light, module-light, and cgscc-light options. This just
supplements the existing flag to use the light variants of the
pass in place of the full versions.

Way back when attributor-light was added in 400fde92963588ae2b,
there was no way to change the pass pipeline to use it. There
were some benchmarks posted, but I don't see precisely how it
was benchmarked in the pipeline.

I'm also surprised this option is only additive, and doesn't remove
FunctionAttrs. If this is to be the option to drive the enablement,
I would expect it to not run the old passes.
DeltaFile
+24-0llvm/test/Other/opt-pipeline-attributor-enable.ll
+10-0llvm/lib/Passes/PassBuilderPipelines.cpp
+5-1llvm/include/llvm/Transforms/IPO/Attributor.h
+39-13 files

OpenZFS/src 7e33476config kernel-mm-page-flags.m4, include/os/linux/kernel/linux dcache_compat.h

Fix build for Linux 6.18 with PowerPC/RISC-V kernels. (#18145)

The macro 'flush_dcache_page(...)' modifies the page flags, but in Linux
6.18 the type of the page flags changed from 'unsigned long' to the
struct type 'memdesc_flags_t' with a single member 'f' which is the page
flags field.

Signed-off-by: Erik Larsson <catacombae at gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Reviewed-by: Tino Reichardt <milky-zfs at mcmilk.de>
Reviewed-by: Tony Hutter <hutter2 at llnl.gov>
DeltaFile
+27-0config/kernel-mm-page-flags.m4
+15-4include/os/linux/kernel/linux/dcache_compat.h
+42-42 files

LLVM/project e8f22b8llvm/lib/Target/AMDGPU AMDGPURegBankLegalize.cpp, llvm/test/CodeGen/AMDGPU llvm.is.fpclass.ll llvm.is.fpclass.f16.ll

[AMDGPU][GlobalISel] Add COPY_SCC_VCC combine for VCC-SGPR-VGPR pattern

Eliminate VCC->SGPR->VGPR bounce created by UniInVcc when the uniform boolean
result is consumed by a VALU instruction that requires the input in VGPRs.
DeltaFile
+83-207llvm/test/CodeGen/AMDGPU/llvm.is.fpclass.ll
+43-103llvm/test/CodeGen/AMDGPU/llvm.is.fpclass.f16.ll
+30-50llvm/test/CodeGen/AMDGPU/GlobalISel/regbanklegalize-eliminate-copy-scc-vcc.mir
+60-0llvm/lib/Target/AMDGPU/AMDGPURegBankLegalize.cpp
+216-3604 files

LLVM/project d31b259llvm/test/CodeGen/AMDGPU/GlobalISel regbanklegalize-eliminate-copy-scc-vcc.mir

[AMDGPU][NFC] Pre-commit test for COPY_SCC_VCC combine
DeltaFile
+333-0llvm/test/CodeGen/AMDGPU/GlobalISel/regbanklegalize-eliminate-copy-scc-vcc.mir
+333-01 files

LLVM/project 7a2d46cllvm/lib/IR AutoUpgrade.cpp, llvm/test/Verifier issue176674.ll issue176674_1.ll

Revert "[AutoUpgrade] Prevent deletion of call if uses still exist (#177606)" (#179340)

This reverts commit 3007e2f050bd36e5e8dab68a5c9abbfbf4561314 (#177606)

Buildbot:

```
Step 2 (annotate) failure: 'python ../sanitizer_buildbot/sanitizers/zorg/buildbot/builders/sanitizers/buildbot_selector.py' (failure)
...
[9/137] Linking CXX shared module unittests/Passes/Plugins/TestPlugin.so
[10/137] Linking CXX executable bin/llvm-config
[11/137] Building CXX object lib/IR/CMakeFiles/LLVMCore.dir/AutoUpgrade.cpp.o
[12/137] Linking CXX static library lib/libLLVMCore.a
[13/137] Generating VCSVersion.inc
[14/135] Linking CXX executable bin/apinotes-test
[15/135] Linking CXX executable bin/llvm-cxxmap
[16/135] Linking CXX executable bin/llvm-bcanalyzer
[17/135] Linking CXX executable bin/llvm-ctxprof-util
[18/135] Linking CXX executable bin/llvm-objcopy

    [6 lines not shown]
DeltaFile
+25-40llvm/lib/IR/AutoUpgrade.cpp
+0-9llvm/test/Verifier/issue176674.ll
+0-9llvm/test/Verifier/issue176674_1.ll
+25-583 files

LLVM/project c6086ddllvm/lib/Target/RISCV RISCVTargetObjectFile.cpp RISCVTargetObjectFile.h, llvm/test/CodeGen/RISCV macho-relocs.ll

[RISC-V][Mach-O] Add codegen support for Mach-O object format. (#178263)

This commit enables code generation for RISC-V targeting Mach-O:

- Implement RISCVMachOTargetObjectFile::getNameWithPrefix method to
handle Mach-O symbol naming requirements.
- Use shouldAssumeDSOLocal() in RISCVTargetLowering::lowerGlobalAddress
instead of isDSOLocal() for proper Mach-O semantics in global address
lowering. Note that this is a NFC for RISCV when targeting ELF.
- Add comprehensive tests for various relocation types (direct globals,
GOT-based addressing, static vs PIC models).
- Test function calls, tail calls, and various symbol reference patterns
including addends and subtractions.

This patch is based on code originally written by Tim Northover.
DeltaFile
+96-0llvm/test/CodeGen/RISCV/macho-relocs.ll
+9-0llvm/lib/Target/RISCV/RISCVTargetObjectFile.cpp
+3-0llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
+2-1llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+110-14 files

LLVM/project 1b30f93clang/include/clang/Analysis/Analyses ThreadSafetyTraverse.h

[ThreadSafety] Make header compile standalone. NFC.
DeltaFile
+1-0clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
+1-01 files

FreeBSD/ports d4bb455emulators/86Box distinfo Makefile

emulators/86Box: Update to version 5.3

ChangeLog:      https://86box.net/2025/12/21/86box-v5-3.htmlA
Approved by:    eduardo (mentor, implicit)
MFH:            2026Q1

(cherry picked from commit 618c8e365d2a447cd05a465a0394a7548042e1be)
DeltaFile
+3-3emulators/86Box/distinfo
+1-1emulators/86Box/Makefile
+4-42 files

FreeBSD/ports 618c8e3emulators/86Box distinfo Makefile

emulators/86Box: Update to version 5.3

ChangeLog:      https://86box.net/2025/12/21/86box-v5-3.htmlA
Approved by:    eduardo (mentor, implicit)
MFH:            2026Q1
DeltaFile
+3-3emulators/86Box/distinfo
+1-1emulators/86Box/Makefile
+4-42 files

LLVM/project 03f53bcllvm/lib/MC MCAsmInfoGOFF.cpp, llvm/lib/Target/SystemZ SystemZAsmPrinter.cpp SystemZAsmPrinter.h

Implement lowerConstant for z/OS
DeltaFile
+48-0llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
+1-1llvm/lib/MC/MCAsmInfoGOFF.cpp
+1-0llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
+50-13 files

LLVM/project af836ffllvm/include/llvm/CodeGen SelectionDAGNodes.h TargetLowering.h, llvm/lib/CodeGen/GlobalISel IRTranslator.cpp

[CodeGen] Add getTgtMemIntrinsic overload for multiple memory operands (NFC) (#175843)

There are target intrinsics that logically require two MMOs, such as
llvm.amdgcn.global.load.lds, which is a copy from global memory to LDS,
so there's both a load and a store to different addresses.

Add an overload of getTgtMemIntrinsic that produces intrinsic info in a
vector, and implement it in terms of the existing (now protected)
overload.

GlobalISel and SelectionDAG paths are updated to support multiple MMOs.
The main part of this change is supporting multiple MMOs in
MemIntrinsicNodes.

Converting the backends to using the new overload is a fairly mechanical step
that is done in a separate change in the hope that that allows reducing merging
pains during review and for downstreams. A later change will then enable
using multiple MMOs in AMDGPU.
DeltaFile
+86-32llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+64-25llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+38-29llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+19-28llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
+20-3llvm/include/llvm/CodeGen/TargetLowering.h
+17-3llvm/include/llvm/CodeGen/SelectionDAG.h
+244-1204 files not shown
+250-12410 files

FreeBSD/src b941d1csys/dev/sym sym_hipd.c

sym(4): Map HCB memory as uncacheable also on x86

As part of making the chip-specific mix and match of different accesses
(DMA/bus space) work as desired, the intent is to map the HCB memory as
uncacheable. Prior to VM_MEMATTR_*, the !x86 way of indicating this to
bus_dmamem_alloc(9) was BUS_DMA_COHERENT. Then later on in 2db99100a4,
BUS_DMA_NOCACHE was hooked up to VM_MEMATTR_UNCACHEABLE for x86. As it
turns out, still as of today bus_dmamem_alloc(9) differs in this regard
across architectures. On arm, it still supports BUS_DMA_COHERENT only
for requesting uncacheable DMA and x86 still uses BUS_DMA_NOCACHE only.
On arm64 and riscv, BUS_DMA_COHERENT seems to effectively be an alias
for BUS_DMA_NOCACHE.

Thus, allocate the HCB memory with BUS_DMA_COHERENT | BUS_DMA_NOCACHE,
so we get uncacheable memory on all architectures including x86 and so
loads and stores from/to HCB won't get reordered. However, even on x86
we still need to use at least compiler barriers to achieve the desired
program order.


    [10 lines not shown]
DeltaFile
+19-27sys/dev/sym/sym_hipd.c
+19-271 files

LLVM/project 4b893d2mlir/include/mlir/Dialect/Tensor/IR TensorOps.td, mlir/lib/Dialect/Tensor/IR TensorOps.cpp

[mlir][tensor] Emit diagnostics for unranked tensor reshape ops instead of asserting (#179005)

This PR updates tensor.expand_shape and tensor.collapse_shape ODS
definitions to require ranked tensor operands/results by switching from
AnyTensor to AnyRankedTensor.

Fixes https://github.com/llvm/llvm-project/issues/178228
DeltaFile
+16-0mlir/test/Dialect/Tensor/invalid.mlir
+6-3mlir/lib/Dialect/Tensor/IR/TensorOps.cpp
+3-3mlir/include/mlir/Dialect/Tensor/IR/TensorOps.td
+25-63 files

FreeBSD/ports f6e450csecurity/zeek distinfo Makefile

security/zeek: security/zeek: Update to 8.0.6

    https://github.com/zeek/zeek/releases/tag/v8.0.6

This release fixes the following potential DoS vulnerability:

 - Zeek's HTTP analyzer can be tricked into interpreting Transfer-Encoding
   or Content-Length headers set in MIME entities within HTTP bodies
   and change the analyzer behavior.

This release fixes the following bugs:

 - A missing state check was added to the finalize_redis hook in
   the Redis analyzer

 - A bug was fixed when attempting to append a vector to itself
   that would cause an infinite loop.

 - A memory leak was fixed that occurred when looping over tables

    [5 lines not shown]
DeltaFile
+3-3security/zeek/distinfo
+1-1security/zeek/Makefile
+4-42 files

FreeBSD/src bfbcd31sys/dev/sym sym_hipd.c

Revert "sym(4): Employ memory barriers also on x86"

The problem will be avoided in a different way.

This reverts commit e769bc77184312b6137a9b180c97b87c0760b849.
DeltaFile
+26-14sys/dev/sym/sym_hipd.c
+26-141 files

FreeBSD/ports 9c6e7f3lang/python314 Makefile

lang/python314: limit compileall to MAKE_JOBS_NUMBER

This seems to help with cross-builds (qemu) for RISC-V machines.

Obtained from:          Siva Mahadevan
Differential Revision:  https://reviews.freebsd.org/D55050

(cherry picked from commit c1d4c7da048b60be5d2d2c5ef47653ac34c3bb35)
DeltaFile
+2-1lang/python314/Makefile
+2-11 files

LLVM/project 3c67dcbllvm/lib/Target/AMDGPU SIInsertWaitcnts.cpp

[AMDGPU][SIInsertWaitcnts][NFC] Replace Wait.combined() with simple assignment (#179142)

Wait is initialized with all ~0s and by the time it reaches the updated
line it still holds the same value. So Wait.combined(AllZeroWait) is
effectively combining all ~0s with AllZeroWait and given that combined()
returns the min() of the two it should always return AllZeroWait.

So this patch replaces the assignment with `= AllZeroWait` to make it
easier to read.
DeltaFile
+1-1llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
+1-11 files

FreeNAS/freenas 16ea4f2src/middlewared/middlewared/plugins/directoryservices_ secrets.py

NAS-139603 / 26.0.0-BETA.1 / Fix DS secrets handling regression (#18141)

This commit fixes a regression introduced when adding `cluster`
parameter to directory services for stateful failover.
DeltaFile
+5-4src/middlewared/middlewared/plugins/directoryservices_/secrets.py
+5-41 files