FreeNAS/freenas 7e0dd34src/middlewared/middlewared/api/v26_0_0 zfs_resource_crud.py, src/middlewared/middlewared/plugins/zfs create_impl.py resource_crud.py

NAS-142994 / 26.0.0-RC.1 / add zfs.resource.create (by yocalebo) (#19584)

This adds zfs.resource.create, a from scratch replacement for
pool.dataset.create built on the three layer design already used by
destroy and query. The biggest simplification is in what we accept from
the API consumer. Instead of uppercase enum fields, INHERIT sentinel
strings, a sparse flag, and a translation table mapping api names to
real names, the consumer now sends native ZFS property names with
verbatim CLI values and we hand them straight to libzfs, so an omitted
property simply inherits and the returned entry shows what ZFS actually
canonicalized. The allowed property set from pool.dataset is carried
over as a single frozenset, and everything outside it, including the
encryption and sharing families, is denied with a message pointing at
the right API. Encryption roots are created through a typed sub model
that takes exactly one of a hex key, a passphrase, or generate_key,
derives keyformat itself, persists hex keys for the unlock and KMIP
flows, and never lets key material travel through generic properties.
All of the old product guardrails were carried over as small explicit
rule functions in create_rules.py, covering the thick volume 80 percent

    [13 lines not shown]
DeltaFile
+793-0tests/api2/test_zfs_resource_create.py
+531-0src/middlewared/middlewared/plugins/zfs/create_rules.py
+286-28src/middlewared/middlewared/plugins/zfs/resource_crud.py
+175-8src/middlewared/middlewared/api/v26_0_0/zfs_resource_crud.py
+128-0src/middlewared/middlewared/plugins/zfs/create_impl.py
+41-13tests/api2/test_zfs_resource_destroy.py
+1,954-491 files not shown
+1,975-617 files

FreeNAS/freenas da874dcsrc/middlewared/middlewared/plugins/pool_ snapshot.py, src/middlewared/middlewared/plugins/zettarepl_ snapshot_removal_date.py

NAS-142997 / 27.0.0-BETA.1 / Remove dead code in `annotate_snapshots` (#19582)

The only two callers always set `pop_user_props` to `True`
DeltaFile
+4-7src/middlewared/middlewared/plugins/zettarepl_/snapshot_removal_date.py
+2-2src/middlewared/middlewared/plugins/pool_/snapshot.py
+6-92 files

FreeNAS/freenas 1544049src/middlewared/middlewared/utils/directoryservices krb5_conf.py

Remove useless comment
DeltaFile
+0-2src/middlewared/middlewared/utils/directoryservices/krb5_conf.py
+0-21 files

LLVM/project 1b4fc7bllvm/lib/CodeGen/SelectionDAG SelectionDAGBuilder.cpp, llvm/lib/Target/NVPTX NVPTXIntrinsics.td NVPTXISelDAGToDAG.cpp

[SDAG][NVPTX] Support cache hints on atomic operations (#214918)

Support cache hints on atomic loads/stores, these have the same support
as normal loads/stores.
Support cache hints on atomicrmw. These will drop everything except for
.level::cache_hint.
Cmpxchg doesn't support cache hints, should drop all.

AI assisted
DeltaFile
+217-15llvm/test/CodeGen/NVPTX/cache-hint-sm-version.ll
+100-60llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
+76-38llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
+45-15llvm/test/CodeGen/NVPTX/cache-hint-atomics.ll
+30-0llvm/test/CodeGen/NVPTX/cache-hint-invalid.ll
+13-4llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+481-1326 files

NetBSD/src NucVzU1sys/arch/hpcmips/vr flash_vrip.c, sys/arch/mips/cavium/dev octeon_gmxreg.h

   s/maximun/maximum/, s/maximam/maximum/ and s/maximimum/maximum/ in comments
   and log messages.
VersionDeltaFile
1.16+5-5sys/arch/hpcmips/vr/flash_vrip.c
1.13+4-4usr.sbin/wsmoused/selection.c
1.158+3-3usr.sbin/syslogd/syslogd.c
1.287+3-3sys/netipsec/key.c
1.8+3-3sys/arch/mips/cavium/dev/octeon_gmxreg.h
+18-185 files

LLVM/project 835747fllvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU AMDGPULowerKernelAttributes.cpp R600Subtarget.h

AMDGPU: Move flat work group size constants to AMDGPUTargetParser (#220346)

getMinFlatWorkGroupSize and getMaxFlatWorkGroupSize are constants that
do not depend on the subtarget. Move them from IsaInfo to
AMDGPUTargetParser so they can be queried without an MCSubtargetInfo.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+0-9llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+9-0llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+2-2llvm/tools/llvm-calc-occupancy/llvm-calc-occupancy.cpp
+2-2llvm/lib/Target/AMDGPU/R600Subtarget.h
+2-2llvm/lib/Target/AMDGPU/GCNSubtarget.h
+1-1llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
+16-161 files not shown
+16-187 files

FreeNAS/freenas 0759bddsrc/middlewared/middlewared/api/v27_0_0 zfs_resource_crud.py, src/middlewared/middlewared/plugins/zfs create_impl.py resource_crud.py

NAS-142994 / 27.0.0-BETA.1 / add zfs.resource.create (#19580)

This adds zfs.resource.create, a from scratch replacement for
pool.dataset.create built on the three layer design already used by
destroy and query. The biggest simplification is in what we accept from
the API consumer. Instead of uppercase enum fields, INHERIT sentinel
strings, a sparse flag, and a translation table mapping api names to
real names, the consumer now sends native ZFS property names with
verbatim CLI values and we hand them straight to libzfs, so an omitted
property simply inherits and the returned entry shows what ZFS actually
canonicalized. The allowed property set from pool.dataset is carried
over as a single frozenset, and everything outside it, including the
encryption and sharing families, is denied with a message pointing at
the right API. Encryption roots are created through a typed sub model
that takes exactly one of a hex key, a passphrase, or generate_key,
derives keyformat itself, persists hex keys for the unlock and KMIP
flows, and never lets key material travel through generic properties.
All of the old product guardrails were carried over as small explicit
rule functions in create_rules.py, covering the thick volume 80 percent

    [7 lines not shown]
DeltaFile
+793-0tests/api2/test_zfs_resource_create.py
+531-0src/middlewared/middlewared/plugins/zfs/create_rules.py
+285-27src/middlewared/middlewared/plugins/zfs/resource_crud.py
+174-8src/middlewared/middlewared/api/v27_0_0/zfs_resource_crud.py
+128-0src/middlewared/middlewared/plugins/zfs/create_impl.py
+41-13tests/api2/test_zfs_resource_destroy.py
+1,952-481 files not shown
+1,973-607 files

FreeNAS/freenas 0db5a3fsrc/middlewared/middlewared/plugins/iscsi_ lio.py

Update how we tell LIO that an extent has resized.
DeltaFile
+2-2src/middlewared/middlewared/plugins/iscsi_/lio.py
+2-21 files

FreeNAS/freenas 39e372asrc/middlewared/middlewared/api/v27_0_0 iscsi_global.py

Allow iSCSI mode=2
DeltaFile
+1-1src/middlewared/middlewared/api/v27_0_0/iscsi_global.py
+1-11 files

FreeNAS/freenas 86d6c0bsrc/middlewared/middlewared/plugins/iscsi_ alua.py extents.py, src/middlewared/middlewared/utils/lio config.py

Add middleware support for LIO ALUA HA

Wire up the middleware side of LIO ALUA high-availability: load
lio_ha.ko with per-node addresses on service start, manage ALUA
state across failover events, clean up STANDBY configfs on pool
export, and add pre-flight validation that targets have static
initiator ACLs before ALUA can be enabled.

For each target, create a portal-less phantom TPG carrying the peer
node's controller group so that a single RTPG response from any
connected port lists both ALUA groups.  Write tpgt_N/rtpi explicitly
before enable so that relative target port IDs in RTPG match the
tag formula (portal.tag on Node A, portal.tag + 32000 on Node B)
rather than being auto-assigned sequentially by the kernel.

ALUA group states are driven by role and ha_state:

  MASTER  + synced        local=OPTIMIZED     remote=NONOPTIMIZED
  MASTER  + connected     local=OPTIMIZED     remote=TRANSITIONING

    [4 lines not shown]
DeltaFile
+537-135src/middlewared/middlewared/utils/lio/config.py
+214-2src/middlewared/middlewared/plugins/iscsi_/lio.py
+87-71src/middlewared/middlewared/plugins/iscsi_/fs_attachment_delegate.py
+89-58src/middlewared/middlewared/plugins/iscsi_/target_to_extent.py
+59-47src/middlewared/middlewared/plugins/iscsi_/extents.py
+62-9src/middlewared/middlewared/plugins/iscsi_/alua.py
+1,048-3228 files not shown
+1,232-37114 files

LLVM/project be44dfeutils/bazel/llvm-project-overlay/lld/test BUILD.bazel, utils/bazel/llvm-project-overlay/lld/test/COFF BUILD.bazel

[bazel] Add support for lld tests (#220311)
DeltaFile
+94-0utils/bazel/llvm-project-overlay/lld/test/BUILD.bazel
+38-0utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+29-0utils/bazel/llvm-project-overlay/lld/test/MachO/BUILD.bazel
+23-0utils/bazel/llvm-project-overlay/lld/test/COFF/BUILD.bazel
+23-0utils/bazel/llvm-project-overlay/lld/test/ELF/BUILD.bazel
+23-0utils/bazel/llvm-project-overlay/lld/test/wasm/BUILD.bazel
+230-01 files not shown
+245-07 files

LLVM/project 87d1135llvm/lib/CodeGen MachineModuleSlotTracker.cpp, llvm/lib/IR AsmWriter.cpp

Revert "[IR] Use persistent metadata IDs for printing" (#220334)

This reverts commit 85e903099313aa5ea98d175698aaa40e27a0d743.

The change breaks MSVC builds because an inline SmallPtrSet operation
requires a complete DILocation type. It also causes expensive-check
builds to report that the DXIL pretty-printer modifies its input
without reporting it.

Revert while fixes and test coverage are prepared.

Buildbot failure:
https://lab.llvm.org/buildbot/#/builders/2/builds/60795
Buildbot failure:
https://lab.llvm.org/buildbot/#/builders/187/builds/23268
DeltaFile
+178-236llvm/lib/IR/AsmWriter.cpp
+0-124llvm/unittests/IR/AsmWriterTest.cpp
+56-57llvm/lib/CodeGen/MachineModuleSlotTracker.cpp
+29-78llvm/unittests/MIR/MachineMetadata.cpp
+14-92llvm/lib/Target/DirectX/DXILPrettyPrinter.cpp
+0-94llvm/test/Other/print-persistent-metadata-ids.ll
+277-68169 files not shown
+506-1,23875 files

LLVM/project ff7e21dlldb/docs/resources lldbgdbremote.md, lldb/source/Plugins/Process/wasm ProcessWasm.cpp

[lldb] Drop the trailing separator from the qWasmGlobal instance suffix (#220338)

The instance suffix was spelled ";instance:<id>;", which ends a packet
with a separator that separates nothing. Spell it ";instance:<id>" and
avoid the redundant semicolon.
DeltaFile
+3-3lldb/test/API/functionalities/gdb_remote_client/TestWasm.py
+2-2lldb/docs/resources/lldbgdbremote.md
+1-1lldb/source/Plugins/Process/wasm/ProcessWasm.cpp
+6-63 files

FreeBSD/ports 8d731c8security/vuxml/vuln 2026.xml

security/vuxml: Document remaining Erlang/OTP vulnerabilities

Upstream published 16 advisories alongside OTP 29.0.6, 28.5.0.6 and
27.3.4.17. CVE-2026-75538 already had an entry; add a combined one for
the other 15, which share the same affected packages and fixed versions.
Most are in the inets httpd and httpc implementations: HTTP request
smuggling, two mod_auth authentication bypasses and several denial of
service issues, plus unbounded integer conversion in stdlib, snmp and
eldap.

Also add the now-published GHSA reference to the CVE-2026-75538 entry.
DeltaFile
+86-0security/vuxml/vuln/2026.xml
+86-01 files

LLVM/project 137ffadllvm/lib/Target/AMDGPU SIInsertWaitcnts.cpp

clang-format
DeltaFile
+8-8llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
+8-81 files

LLVM/project 2ca9363llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer VecUtils.h, llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes BundleVec.cpp

[SandboxVectorizer] Hoist getInsertPointAfterInstrs into VecUtils

Move BottomUpVec.cpp's file-local getInsertPointAfterInstrs() into
VecUtils, next to the getLowest()/getLastPHIOrSelf() primitives it's
built from. It has no BottomUpVec-specific state; the next commit adds a
second caller in LoadStoreVec.

Not hoisting BottomUpVec::createPack() itself here: it asserts a single
common scalar type (VecUtils::getCommonScalarType), which doesn't fit
LoadStoreVec's mixed-type ("enable-diff-types") requirement. That needs
its own extended packer, kept local to LoadStoreVec.cpp rather than
force-fitting the shared version.

No functional change: check-llvm Transforms/SandboxVectorizer passes
(28/28).

Co-Authored-By: Claude Opus 5 <noreply at anthropic.com>
DeltaFile
+87-0llvm/unittests/Transforms/Vectorize/SandboxVectorizer/VecUtilsTest.cpp
+6-18llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/BundleVec.cpp
+13-0llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/VecUtils.h
+106-183 files

LLVM/project f204c0dclang/include/clang/AST DeclBase.h, clang/lib/Sema SemaCoroutine.cpp SemaDeclCXX.cpp

[Clang] Fix a number of issues involving expansion statements (#217110)

This fixes a number of problems around expansion statements, most of
which arise from the fact that we check if `CurContext` is a
`FunctionDecl` (which it isn't inside of an expansion statement) and
then complain that we're not inside a function (even though we are).

I also updated `DeclContext::isFunctionOrMethod()` to return true for
`CXXExpansionStmtDecl`. That helper already does this for other
`DeclContext`s that aren’t functions or Objective-C methods, but which
to my understanding can only occur in one (e.g. `CapturedDecl` is an
example of this I believe).
DeltaFile
+200-0clang/test/SemaCXX/cxx2c-expansion-stmts.cpp
+24-6clang/lib/Sema/SemaDeclCXX.cpp
+26-0clang/include/clang/AST/DeclBase.h
+7-9clang/lib/Sema/SemaCoroutine.cpp
+16-0clang/test/SemaCXX/cxx2c-expansion-stmts-warnings.cpp
+4-8clang/test/SemaCXX/expansion-statements-local-extern-decls.cpp
+277-236 files not shown
+288-3312 files

FreeBSD/ports 67de2b9databases/couchdb3 Makefile

databases/couchdb3: Bump PORTREVISION after erlang-runtime28 update

(cherry picked from commit ee1a7d634d3872a322d40e1981c73fac6ed25f07)
DeltaFile
+1-1databases/couchdb3/Makefile
+1-11 files

LLVM/project 8d1b38fllvm/lib/Target/PowerPC PPCISelLowering.cpp, llvm/test/CodeGen/PowerPC ppc32-f128-abi.ll

Fix `fp128` reaching `llvm_unreachable` on 32-bit PowerPC (#216613)

`fp128` is a legal type that is passed in vector registers when `vsx` is
enabled on 32-bit PowerPC: the switch statement didn't account for that,
causing an LLVM assertion.

Fixes #213355

cc @folkertdev
DeltaFile
+9-0llvm/test/CodeGen/PowerPC/ppc32-f128-abi.ll
+1-4llvm/lib/Target/PowerPC/PPCISelLowering.cpp
+10-42 files

FreeBSD/ports ee1a7d6databases/couchdb3 Makefile

databases/couchdb3: Bump PORTREVISION after erlang-runtime28 update
DeltaFile
+1-1databases/couchdb3/Makefile
+1-11 files

LLVM/project 107f244libcxx/include/__memory assume_aligned.h, lld/test/MachO U-dynamic-lookup.s

Merge branch 'main' into users/hidekisaito/vopd-same-parity-drain
DeltaFile
+80-110llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCLFIRewriter.cpp
+9-0llvm/docs/LangRef.md
+4-4lld/test/MachO/U-dynamic-lookup.s
+6-0llvm/test/Bitcode/attributes.ll
+2-1libcxx/include/__memory/assume_aligned.h
+2-0llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+103-1156 files

FreeBSD/ports b8ecea7databases/couchdb3 Makefile pkg-plist

databases/couchdb3: Resolve bundled OTP versions dynamically in PLIST_SUB

The release bundles erts and 13 OTP applications from
lang/erlang-runtime28, and pkg-plist pinned each of their versioned
directory names. Six of the last eight plist commits were pure OTP
rename churn, the largest touching 610 lines, while the 3.5.2 update
itself touched 23.

Derive the versions from the installed runtime at plist-generation time
instead. The package file list is unchanged: resolving the tokenized
plist with the versions this build staged reproduces the previous
pkg-plist byte for byte, so no PORTREVISION bump is needed.

An erlang-runtime28 update now needs only a PORTREVISION bump. Note
this reads ${LOCALBASE}/lib/erlang28 rather than the staged release,
because generate-plist runs before do-install; it holds as long as the
release copies erts and the OTP applications unmodified.

CouchDB's own rebar dependencies stay pinned deliberately - they move

    [6 lines not shown]
DeltaFile
+622-622databases/couchdb3/pkg-plist
+14-1databases/couchdb3/Makefile
+636-6232 files

LLVM/project 7a3c125llvm/lib/Target/AMDGPU SIInsertWaitcnts.cpp, llvm/test/CodeGen/AMDGPU buffer-fat-pointer-atomicrmw-fmin.ll buffer-fat-pointer-atomicrmw-fmax.ll

[AMDGPU][SIInsertWaitcnts] Fix soft wait removal with loop-carried deps

The code that checked if a soft waitcnt (such as the one insterted by
a release fence on LDS) was redundant didn't correctly account for the
fact that that, for example, the previous iteration of a loop could
have introduced memory traffic that needs to be waited on. This bug
appeared to be fairly rare in practice (probably due to the
instruction scheduler shuffling around code in t bad form) but it can
happen.

The fix is that, instad of immediately erasing "redundant" waits, we
add them to a set of waits to be erased, and then remove them from the
set if they prove to be truly redundant.

This has the side effect of fixing a correctness issue around the CAS
loops we emit on gfx1250 - the global_inv we emit after the
`s_loadcnt 0x0` is itself a `loadcnt`-able event, and so needs to be
forced to completion before the next iteration of the CAS loop.


    [5 lines not shown]
DeltaFile
+43-11llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
+41-0llvm/test/CodeGen/AMDGPU/local-atomicrmw-fsub.ll
+31-0llvm/test/CodeGen/AMDGPU/local-atomicrmw-fmin.ll
+31-0llvm/test/CodeGen/AMDGPU/local-atomicrmw-fmax.ll
+20-8llvm/test/CodeGen/AMDGPU/buffer-fat-pointer-atomicrmw-fmin.ll
+20-8llvm/test/CodeGen/AMDGPU/buffer-fat-pointer-atomicrmw-fmax.ll
+186-278 files not shown
+229-3114 files

NetBSD/pkgsrc 9OTfUyqdoc CHANGES-2026

   doc: Updated mail/imapfilter to 2.8.5
VersionDeltaFile
1.5743+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc NFEun9mmail/imapfilter Makefile distinfo

   imapfilter: Update to 2.8.5. From Kogule Ryo in PR pkg/60582

   IMAPFilter 2.8.5 - Mar 8, 2026
     - Re-added OAuth2 example in the sample extend file

   IMAPFilter 2.8.4 - Mar 7, 2026
     - Bug fix; minor incompatibility with Lua 5.5

   IMAPFilter 2.8.3 - Apr 27, 2025
     - Include body transfer encoding in fetch_structure() return value.
     - Bug fix; minor incompatibility with Lua 5.3 and 5.4

   IMAPFilter 2.8.2 - Dec 26, 2023
     - Add IMAP support for UTF-8 (RFC 6855) when "charset" is set to "UTF-8"
     - Don't use FETCH FAST macro use for better compatibility
     - Bug fix; recovery mechanism error on Lua 5.1

   IMAPFilter 2.8.1 - Jan 8, 2023
     - Add support for non-write actions on read-only mailboxes.

    [14 lines not shown]
VersionDeltaFile
1.31+4-4mail/imapfilter/distinfo
1.53+2-3mail/imapfilter/Makefile
+6-72 files

FreeNAS/freenas dc5997asrc/middlewared/middlewared/api/v27_0_0 zfs_resource_crud.py

docstring lines must end with a period
DeltaFile
+2-2src/middlewared/middlewared/api/v27_0_0/zfs_resource_crud.py
+2-21 files

LLVM/project 81dc060llvm/docs LangRef.md

[LangRef] Add hybrid_patchable attribute description (#219806)
DeltaFile
+9-0llvm/docs/LangRef.md
+9-01 files

FreeNAS/freenas 2945554src/middlewared/middlewared/api/v27_0_0 zfs_resource_crud.py, src/middlewared/middlewared/plugins/zfs resource_crud.py create_impl.py

type the create properties and let the schema own the allowed set
DeltaFile
+35-78src/middlewared/middlewared/plugins/zfs/create_rules.py
+68-15src/middlewared/middlewared/api/v27_0_0/zfs_resource_crud.py
+0-47src/middlewared/middlewared/plugins/zfs/create_impl.py
+12-12src/middlewared/middlewared/plugins/zfs/resource_crud.py
+6-8tests/api2/test_zfs_resource_create.py
+121-1605 files

LLVM/project 91bd18ellvm/lib/Bitcode/Reader BitcodeReader.cpp, llvm/test/Bitcode attributes.ll

[IR] Support hybrid_patchable attribute in bitcode reader (#219804)

Missing in #92965.
DeltaFile
+6-0llvm/test/Bitcode/attributes.ll
+2-0llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+8-02 files

LLVM/project 5f3e8f3libcxx/include/__memory assume_aligned.h

[libc++] Add _LIBCPP_NO_SANITIZE for std::__assume_aligned (#220296)

std::assume_aligned takes void* from __builtin_assume_aligned and
converts it _Tp* that causes cfi-unrelated-cast to consider it a
downcast leading to CFI checks. Since std::find_if calls
std::assume_aligned on __last, it will lead to a CFI check that
dereferences __last causing a failure. Based on discussion, we can just
add _LIBCPP_NO_SANITIZE for cfi-unrelated-cast because the check rejects
well-defined behavior.

Fix: https://github.com/llvm/llvm-project/issues/219306
DeltaFile
+2-1libcxx/include/__memory/assume_aligned.h
+2-11 files