FreeNAS/freenas d1fa6besrc/middlewared/middlewared/plugins/kmip zfs_keys.py

Fix `clear_sync_pending_zfs_keys`
DeltaFile
+1-1src/middlewared/middlewared/plugins/kmip/zfs_keys.py
+1-11 files

FreeNAS/freenas deed9dbsrc/middlewared/middlewared/plugins/kmip connection.py, src/middlewared/middlewared/pytest/unit/plugins/kmip test_connection.py

Fix `kmip_connection` error handling
DeltaFile
+18-0src/middlewared/middlewared/pytest/unit/plugins/kmip/test_connection.py
+1-2src/middlewared/middlewared/plugins/kmip/connection.py
+19-22 files

OPNSense/ports beaaefbsecurity/pecl-mcrypt distinfo Makefile, security/pecl-mcrypt/files patch-php84

security/pecl-mcrypt: update to 1.0.9
DeltaFile
+0-14security/pecl-mcrypt/files/patch-php84
+3-3security/pecl-mcrypt/distinfo
+1-2security/pecl-mcrypt/Makefile
+4-193 files

NetBSD/pkgsrc JXNt9whdoc CHANGES-2026

   Updated devel/py-setuptools_scm, textproc/py-regex
VersionDeltaFile
1.4660+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 4kWd1t8textproc/py-regex distinfo Makefile

   py-regex: updated to 2026.7.19

   2026.7.19

   Git issue 607: SIGSEGV: NULL pointer dereference in `basic_match()` when `(?R)`/`(?0)` recursion is used inside a fuzzy-matching quantifier
   Git issue 608: SIGSEGV: out-of-bounds read in `bytes1_char_at()` with `DOTALL` + a fuzzy constraint + `(?r)` reverse-direction matching
VersionDeltaFile
1.73+4-4textproc/py-regex/distinfo
1.77+2-2textproc/py-regex/Makefile
+6-62 files

NetBSD/pkgsrc VPbLha0devel/py-setuptools_scm distinfo PLIST

   py-setuptools_scm: updated to 10.2.1

   10.2.1 (2026-07-21)

   Fixed

   - Omit ``scm_version.json`` and ``scm_file_list.json`` from wheel ``.dist-info``
     while still including them in sdists for fallback discovery.
VersionDeltaFile
1.44+4-4devel/py-setuptools_scm/distinfo
1.16+4-1devel/py-setuptools_scm/PLIST
1.53+2-2devel/py-setuptools_scm/Makefile
+10-73 files

NetBSD/pkgsrc VL4fg6hdoc CHANGES-2026

   Updated finance/bitcoin, databases/postgresql-timescaledb
VersionDeltaFile
1.4659+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 4tLS3mUdatabases/postgresql-timescaledb distinfo Makefile

   postgresql-timescaledb: updated to 2.28.3

   2.28.3

   Bugfixes

   * Wrong result when evaluating a function returning NULL in the columnar query execution pipeline
   * Fix incorrect usage of sort transformation for sort key expressions with negative constants
   * Allow enabling and disabling triggers on hypertables with columnstore enabled
   * Fix columnstore sort pushdown to check for different query sort key collation
   * Fix potentially wrong results for stddev(float4) and stddev(float8) when used with avg() in the columnar query execution pipeline
   * Fix race condition when enabling compression on a hypertable
   * Batch filtering for compressed DML should respect collation
   * Direct delete failed to handle array predicates with NULL values and deleted more rows than intended
   * Reuse existing dimension_slice IDs when possible
   * Truncate constraint name before trying to rename
VersionDeltaFile
1.54+4-4databases/postgresql-timescaledb/distinfo
1.57+2-2databases/postgresql-timescaledb/Makefile
1.53+2-1databases/postgresql-timescaledb/PLIST
+8-73 files

LLVM/project 948c4a2llvm/lib/Target/AArch64/GISel AArch64InstructionSelector.cpp, llvm/test/CodeGen/AArch64/GlobalISel select-extract-vector-elt.mir

[AArch64][GlobalISel] Select vector element extract into GPR (#210030)

Prototyping a new minimal type-based approach to RegBankSelect (#199040)
for compile-time purposes exposed various gaps in instruction selection
when not using the existing RegBankSelect pass. These manifested as new
fallbacks when compiling the IR dataset from [1].

This patch teaches instruction selection to handle extracts of scalar
i8/i16/i32 into GPR directly. This will prevent new fallbacks being
introduced when a new type-based RBS pass is added.

The test cases are extracted from [1].

Assisted-by: codex

[1] https://davemgreen.github.io/gisel.html
DeltaFile
+92-0llvm/test/CodeGen/AArch64/GlobalISel/select-extract-vector-elt.mir
+29-7llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp
+121-72 files

NetBSD/pkgsrc ixQsmQAfinance/bitcoin distinfo Makefile, finance/bitcoin/patches patch-src_txmempool.h patch-src_node_txorphanage.cpp

   bitcoin: updated to 31.1

   31.1

   This release includes new features, various bug fixes and performance
   improvements, as well as updated translations.
VersionDeltaFile
1.28+4-7finance/bitcoin/distinfo
1.107+2-3finance/bitcoin/Makefile
1.2+1-1finance/bitcoin/patches/patch-src_txmempool.h
1.2+1-1finance/bitcoin/patches/patch-src_node_txorphanage.cpp
1.2+1-1finance/bitcoin/patches/patch-src_txrequest.cpp
+9-135 files

LLVM/project ca52c1bllvm/lib/Transforms/Scalar LoopInterchange.cpp, llvm/test/Transforms/LoopInterchange transform-stop-partway.ll pr57148.ll

[LoopInterchange] Prevent the transformation stage from stopping partway (#205564)

As mentioned in #205562, there are cases where the transformation stage
in LoopInterchange stops partway through, and the output IR ends up
partially modified rather than interchanged. Notably, the interchange is
recognized as having succeeded internally even in such cases. Apparently
this happens not to cause any miscompiles at the moment, but it is
clearly dangerous.

This patch removes the early exit in the transformation phase. We cannot
simply remove it, which checks for the presence of a unique successor of
the inner loop header, because there is a case where the header actually
has multiple successors. To avoid that situation, this patch changes the
code to call SplitBlock on the inner loop header unconditionally.

The test changes fall into two categories: some are simply due to newly
added redundant BBs. In the others, the expected interchanges are now
applied as intended, whereas previously the transformation failed and
the interchanges were not applied before this patch.
DeltaFile
+20-39llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+15-19llvm/test/Transforms/LoopInterchange/transform-stop-partway.ll
+18-14llvm/test/Transforms/LoopInterchange/pr57148.ll
+12-14llvm/test/Transforms/LoopInterchange/pr43326-ideal-access-pattern.ll
+11-13llvm/test/Transforms/LoopInterchange/interchanged-loop-nest-3.ll
+11-9llvm/test/Transforms/LoopInterchange/guarded-inner-loop.ll
+87-1083 files not shown
+101-1169 files

LLVM/project cfc9216llvm/lib/Transforms/InstCombine InstCombineCompares.cpp, llvm/test/Transforms/InstCombine icmp-gep.ll

[InstCombine] Optimize GEP comparisons with constant offsets (#208547)

https://alive2.llvm.org/ce/z/dCmoVn

In a GEP comparison with the same base like

    %1 = gep i8, @base, i64 a
    %2 = gep i8, @base, i64 b
    %cmp = icmp ... %1, %2

When we know that the offsets cross the base's alignment boundary the
same
number of times, it means that either both of them will overflow, or
none of
them will. In these cases we can turn the comparison into offset
comparison:

    %cmp = icmp ... a, b
DeltaFile
+140-0llvm/test/Transforms/InstCombine/icmp-gep.ll
+28-7llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
+168-72 files

LLVM/project b0c2dc0flang/include/flang/Lower DirectivesCommon.h, flang/test/Lower/OpenMP wsloop-select-case.f90 wsloop-computed-goto.f90

[flang][PFT-to-MLIR] allocate missing body blocks in `createEmptyRegionBlocks` (#210950)

Problem
-------
Under -mmlir --wrap-unstructured-constructs-in-execute-region, branch
lowering hit a null Evaluation::block for body statements inside an
OpenMP loop. genMultiwayBranch tripped

Bridge.cpp: Assertion `block && "missing multiway branch block"' failed

and genFIR(SelectCaseStmt) tripped

    Bridge.cpp: Assertion `e->block && "missing CaseStmt block"' failed

The wrap machinery decides an unstructured DO/IF is wrappable and stops
propagating its isUnstructured flag to the enclosing OpenMPConstruct.
The OMP construct's isUnstructured stays false, so the top-level
createEmptyBlocks treats it as a structured directive with nested
evaluations — it allocates only the OMP construct's first-nested block

    [17 lines not shown]
DeltaFile
+49-0flang/test/Lower/OpenMP/wsloop-select-case.f90
+39-0flang/test/Lower/OpenMP/wsloop-computed-goto.f90
+8-1flang/include/flang/Lower/DirectivesCommon.h
+96-13 files

FreeNAS/freenas ef21662src/middlewared/middlewared/plugins/kmip zfs_keys.py, tests/api2 test_kmip.py

Fix KMIP in-memory cache being wiped after every push
DeltaFile
+27-1tests/api2/test_kmip.py
+4-2src/middlewared/middlewared/plugins/kmip/zfs_keys.py
+31-32 files

LLVM/project e878b12llvm/lib/Target/AMDGPU AMDGPULowerKernelArguments.cpp, llvm/test/CodeGen/AMDGPU lower-kernargs.ll

[AMDGPU] Do not copy noundef onto a widened kernarg load (#211181)

Sub-dword args are widened to an i32 load whose extra bits belong to a
sibling kernarg or padding, so noundef on the original arg does not
cover the full loaded value

Only copy it when the load type matches the argument type, mirroring the
existing range/nofpclass guards
DeltaFile
+23-2llvm/test/CodeGen/AMDGPU/lower-kernargs.ll
+1-1llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
+24-32 files

LLVM/project ff90624llvm/test/Transforms/InstCombine vec_shuffle-inseltpoison.ll vec_shuffle.ll, llvm/test/Transforms/PhaseOrdering/AArch64 interleavevectorization.ll

[InstCombine] foldVectorBinop - don't fold length changing shuffles across binops (#211115)

As discussed on #210948 - the "Op(shuffle(V1, Mask), shuffle(V2, Mask))
-> shuffle(Op(V1, V2), Mask)" fold should only occur in InstCombine if
the shuffle is "like for like" and not length changing.

Leave the more general fold to an upcoming VectorCombine patch which can
handle the cost:benefit analysis, including multiuse shuffles.
DeltaFile
+72-32llvm/test/Transforms/PhaseOrdering/AArch64/interleavevectorization.ll
+48-32llvm/test/Transforms/PhaseOrdering/X86/fmaddsub.ll
+18-12llvm/test/Transforms/PhaseOrdering/X86/addsub-inseltpoison.ll
+18-12llvm/test/Transforms/PhaseOrdering/X86/addsub.ll
+4-3llvm/test/Transforms/InstCombine/vec_shuffle-inseltpoison.ll
+4-3llvm/test/Transforms/InstCombine/vec_shuffle.ll
+164-941 files not shown
+165-957 files

LLVM/project c75267cclang/include/clang/Basic BuiltinsAMDGPUDocs.td BuiltinsAMDGPU.td, clang/test/CodeGenOpenCL builtins-amdgcn-gfx13.cl

[AMDGPU] Builtins and intrinsics for v_cvt_scalef32_pk32_(fp|bf)6_f32 (#210713)

- builtins with documentation
- instructions
- new subtarget feature only for gfx13
- GlobalISel RegBankLegalize rules
- tests
DeltaFile
+646-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cvt.scalef32.pk.gfx13.ll
+48-0clang/test/CodeGenOpenCL/builtins-amdgcn-gfx13.cl
+31-0clang/include/clang/Basic/BuiltinsAMDGPUDocs.td
+12-0clang/include/clang/Basic/BuiltinsAMDGPU.td
+10-0llvm/include/llvm/IR/IntrinsicsAMDGPU.td
+6-0llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
+753-07 files not shown
+768-713 files

LLVM/project 9925bcfllvm/lib/Target/RISCV RISCVISelLowering.cpp

[RISCV][NFC] Fix  WADD comment typo. (#211177)
DeltaFile
+1-1llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+1-11 files

FreeNAS/freenas b16be45src/middlewared/middlewared/plugins/kmip zfs_keys.py, tests/api2 test_kmip.py

Fix clear_sync_pending_zfs_keys
DeltaFile
+31-0tests/api2/test_kmip.py
+1-1src/middlewared/middlewared/plugins/kmip/zfs_keys.py
+32-12 files

NetBSD/pkgsrc AxfRKQhdoc CHANGES-2026

   Updated shells/dash, shells/bash-completion
VersionDeltaFile
1.4658+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 6tkZnWxshells/bash-completion PLIST distinfo, shells/bash-completion/patches patch-Makefile.in

   bash-completion: updated to 2.18.0

   2.18.0

   This release comes with notable changes to the directories used for
   looking up and sourcing completion recipes and helpers, allowing for
   more flexibility and customization and fewer conflicts between things
   shipping with bash-completion and third party/upstream/origin packages.

   Files that come with bash-completion itself are located in directories
   reserved for that use, their names ending with `-core` and
   `-fallback`. Packages should continue install their files in the same
   `completions` and `helpers` dirs like before; these directories
   precede the bash-completion "core" ones in lookup order.

   A new concept of `startup` dirs has been introduced. Files from these
   directories are sourced eagerly on bash-completion startup. This
   replaces and allows for more flexibility than using the deprecated
   `/etc/bash_completion.d` directory for this purpose.
VersionDeltaFile
1.10+1,105-1,069shells/bash-completion/PLIST
1.12+5-5shells/bash-completion/distinfo
1.2+4-4shells/bash-completion/PLIST.NetBSD
1.4+4-4shells/bash-completion/patches/patch-Makefile.in
1.17+2-3shells/bash-completion/Makefile
+1,120-1,0855 files

OPNSense/core e8ab74dsrc/etc/inc interfaces.inc, src/etc/inc/plugins.inc.d core.inc

interfaces: resolve VLAN devices indirectly via interfaces_configure()

This also adds device creation for parents so that we ca naturally
resolve QinQ and VLANs on bridges.
DeltaFile
+41-34src/etc/inc/interfaces.inc
+11-14src/opnsense/scripts/interfaces/reconfigure_vlans.php
+2-1src/etc/inc/plugins.inc.d/core.inc
+54-493 files

NetBSD/pkgsrc WiWRLPWshells/dash distinfo Makefile

   dash: updated to 0.5.13.5

   0.5.13.5
   Unknown changes
VersionDeltaFile
1.20+4-4shells/dash/distinfo
1.21+2-2shells/dash/Makefile
+6-62 files

FreeNAS/freenas e991443src/middlewared/middlewared/test/integration/assets kmip.py, tests/api2 test_kmip.py

KMIP integration tests
DeltaFile
+636-8tests/api2/test_kmip.py
+18-13src/middlewared/middlewared/test/integration/assets/kmip.py
+654-212 files

LLVM/project 06e24fallvm/lib/Target/AArch64 AArch64SMEAttributes.cpp

[AArch64][SME] Scan function attributes once in SMEAttrs (NFC) (#210924)

Profiling sqlite on aarch64-O3 shows ~0.5% of compile-time is spent in
the SMEAttrs constructor, mostly from the inliner's areInlineCompatible
and getInlineCallPenalty hooks.

SMEAttrs does 14 string attribute lookups. Invert this to instead walk
the function attributes once and build the mask with a StringSwitch.

Improves CTMark geomean -0.20%, sqlite -0.40%.

https://llvm-compile-time-tracker.com/compare.php?from=4aa1590ad66a1bff9b3c74b4a2c7366473015b4c&to=37796f0f92101225e2fb5b6924acfdb5cba1b672&stat=instructions%3Au

Assisted-by: codex
DeltaFile
+26-28llvm/lib/Target/AArch64/AArch64SMEAttributes.cpp
+26-281 files

LLVM/project 6e85639llvm/lib/Support Parallel.cpp

[Support] parallelFor: enable caller participation

`parallelFor` dispatches its work to the thread pool and blocks the calling
thread in the `TaskGroup` destructor until the workers finish. The caller
thus stays idle instead of joining the work as modern parallel libraries do,
and `numactl -C 0-7 ld.lld --threads=8` ends up slower than
`numactl -C 0-8 ld.lld --threads=8`.

Run one worker on the calling thread instead. This requires that no
`parallelFor` body reads `getThreadIndex()`, which is unset on the caller;
the last such user is removed by #209687.

In the jobserver mode: only pool workers acquire job slots, so a
jobserver-limited process may briefly exceed its granted concurrency by
one thread. This is acceptable, better than pessimizing the common
non-jobserver case, and parallelFor is unused by jobserver users.

Pull Request: https://github.com/llvm/llvm-project/pull/209690
DeltaFile
+4-1llvm/lib/Support/Parallel.cpp
+4-11 files

LLVM/project 7c72a11llvm/include/llvm/Support PerThreadBumpPtrAllocator.h Parallel.h, llvm/lib/DWARFLinker/Parallel DWARFLinkerTypeUnit.cpp

PerThreadBumpPtrAllocator: remove dependency on getThreadIndex (#209687)

PerThreadAllocator, only used by DWARFLinker, indexes a fixed
getThreadCount()-sized array by `getThreadIndex()`, so it only works on
ThreadPoolExecutor threads (and asserts elsewhere). It false-shares
adjacent threads' bump pointers.

Instead, create each thread's sub-allocator lazily on first use, keyed
by a process-unique instance id in a thread-local cache, with the
instance owning the heap-allocated sub-allocators. This drops the
getThreadIndex()/getThreadCount() dependence, unblocking the caller
participation change for `parallelFor`.

mlir::ThreadLocalCache solves the same problem by keying a per-thread
map on the instance pointer and reclaiming a thread's slot when an instance
dies, but costs a map lookup and shared_ptr bookkeeping per allocation; instances
here are few and short-lived, so an id-indexed vector is cheaper. The counter
behind claimPerThreadAllocatorId is defined out of line in Allocator.cpp
so Windows DLLs cannot duplicate it and alias two instances' sub-allocators.

Aided by Claude Fable 5
DeltaFile
+63-32llvm/include/llvm/Support/PerThreadBumpPtrAllocator.h
+26-1llvm/unittests/Support/PerThreadBumpPtrAllocatorTest.cpp
+0-20llvm/include/llvm/Support/Parallel.h
+10-0llvm/lib/Support/Allocator.cpp
+0-6llvm/lib/Support/Parallel.cpp
+1-0llvm/lib/DWARFLinker/Parallel/DWARFLinkerTypeUnit.cpp
+100-596 files

LLVM/project 2394411llvm/lib/Transforms/Scalar LoopInterchange.cpp

address review
DeltaFile
+1-1llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+1-11 files

LLVM/project 73ea53dllvm/lib/Transforms/Scalar LoopInterchange.cpp, llvm/test/Transforms/LoopInterchange transform-stop-partway.ll pr57148.ll

[LoopInterchange] Prevent the transformation stage from stopping partway
DeltaFile
+19-38llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+15-19llvm/test/Transforms/LoopInterchange/transform-stop-partway.ll
+18-14llvm/test/Transforms/LoopInterchange/pr57148.ll
+12-14llvm/test/Transforms/LoopInterchange/pr43326-ideal-access-pattern.ll
+11-13llvm/test/Transforms/LoopInterchange/interchanged-loop-nest-3.ll
+11-9llvm/test/Transforms/LoopInterchange/guarded-inner-loop.ll
+86-1073 files not shown
+100-1159 files

NetBSD/pkgsrc dgTZI9kdoc CHANGES-2026

   Updated devel/pkgconf, lang/py-pydemumble, misc/py-tibs
VersionDeltaFile
1.4657+4-1doc/CHANGES-2026
+4-11 files