OpenZFS/src 2076569contrib/debian not-installed, etc Makefile.am

Remove /etc/sudoers.d/zfs

The smartctl exception in /etc/sudoers.d/zfs doesn't cover devices
like NVMe or symlinked devices.  Just get rid of it rather than
keep maintaining it.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Reviewed-by: Alexander Motin <alexander.motin at TrueNAS.com>
Signed-off-by: Tony Hutter <hutter2 at llnl.gov>
Closes #18626
DeltaFile
+0-9etc/sudoers.d/zfs
+0-6etc/Makefile.am
+1-4man/man8/zpool-iostat.8
+0-1rpm/generic/zfs.spec.in
+0-1contrib/debian/not-installed
+1-215 files

LLVM/project 9c1f9bbclang/lib/CIR/Dialect/Transforms/TargetLowering CIRABIRewriteContext.cpp, clang/test/CIR/Transforms/abi-lowering direct-flatten.cir coerce-record-to-record-via-memory.cir

[CIR] Implement Direct+canFlatten in CallConvLowering

CallConvLowering previously ignored the canFlatten flag on Direct
classifications: a Direct arg with a multi-field struct coerced type was
passed as a single struct argument rather than N scalar register arguments.
This is the register-passing pattern the x86-64 SysV ABI uses for structs
like struct { long a, b; }.

A new helper getFlattenedCoercedType centralizes the detection (Direct,
multi-field struct coercedType, canFlatten set).  The three lowering sites
are updated: buildNewArgTypes pushes one wire type per field; insertArgCoercion
reassembles the coerced struct from N scalar block args then coerces to the
original type if the two differ; rewriteCallSite extracts each field via
cir.extract_member.  The existing coerce-record-to-record-via-memory.cir
test gains can_flatten = false to opt into the single-arg path.
DeltaFile
+190-0clang/test/CIR/Transforms/abi-lowering/direct-flatten.cir
+134-16clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.cpp
+1-1clang/test/CIR/Transforms/abi-lowering/coerce-record-to-record-via-memory.cir
+325-173 files

LLVM/project a9b81adclang/lib/CIR/Dialect/Transforms/TargetLowering CIRABIRewriteContext.cpp, clang/test/CIR/Transforms/abi-lowering indirect-byval.cir

[CIR] Lower byval/byref args in CallConvLowering

ArgKind::Indirect arguments were hitting an errorNYI in
CIRABIRewriteContext.  Add the lowering: in the callee the block argument
type changes to !cir.ptr<T>, a load is inserted at entry so the body sees
the original value type, and llvm.byval or llvm.byref is attached based on
ownership.  At call sites, both byval and byref are lowered by allocating a
stack slot, copying the value in, and passing the pointer.

For byval, llvm.noalias and llvm.noundef are also added — llvm.noalias
because the call-site rewrite always produces a fresh alloca+store
(equivalent to -fpass-by-value-is-noalias), and llvm.noundef because the
copy is always fully defined.  byref carries only llvm.byref and llvm.align
since it does not assert exclusive ownership.
DeltaFile
+242-0clang/test/CIR/Transforms/abi-lowering/indirect-byval.cir
+135-55clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.cpp
+377-552 files

LLVM/project e58deb0clang/lib/CIR/Dialect/Transforms/TargetLowering CIRABIRewriteContext.cpp CIRABIRewriteContext.h, clang/test/CIR/Transforms/abi-lowering indirect-return-sret.cir

[CIR] Lower sret returns in CallConvLowering

Functions that return an aggregate by value classify their return as
ArgKind::Indirect, but CallConvLowering reached an errorNYI for that
case, so the whole CallConv pass refused to lower any struct-returning
function.

rewriteFunctionDefinition now recognizes an Indirect return: the wire
return type becomes void, a hidden sret pointer is prepended as block
argument 0, and every cir.return is routed through that pointer.  Rather
than storing the loaded return value through the sret pointer (a
byte-copy that breaks non-trivially-copyable types -- libstdc++'s SSO
std::string keeps a _M_p pointer into its own _M_local_buf, so a
byte-copy leaves the destination aliasing the source's dying stack
storage), insertSRetStores rewires the __retval alloca to the sret
pointer so construction flows directly into the caller's slot, matching
classic CodeGen's "construct into %agg.result" pattern.  CIRGen emits one
cir.load __retval / cir.return pair per return statement, all reading the
single __retval alloca, so the alloca is rewired once and every return is

    [18 lines not shown]
DeltaFile
+259-26clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.cpp
+200-0clang/test/CIR/Transforms/abi-lowering/indirect-return-sret.cir
+3-4clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.h
+462-303 files

LLVM/project 2422988clang/lib/CIR/Dialect/Transforms/TargetLowering CIRABIRewriteContext.cpp CIRABIRewriteContext.h, clang/test/CIR/Transforms/abi-lowering expand-struct-arg.cir

[CIR] Implement ArgKind::Expand in CallConvLowering

ArgKind::Expand classifies a struct argument for flattening: each field
becomes a separate scalar argument at the ABI level.  Classic CodeGen
calls this "struct expansion" — used on targets like MIPS and some ARM
calling conventions.

CIRABIRewriteContext previously emitted errorNYI at both classification
sites.  The replacement covers three call paths.  In buildNewArgTypes,
the original struct type is replaced by one wire type per field.  In
insertArgCoercion, the single struct block argument is replaced by N
scalar block arguments and an alloca+get_member+store+load sequence at
the entry block reassembles them for body uses; a running block-argument
index (rather than classIdx + sretOffset) correctly tracks the expanded
slot count when multiple Expand args or sret+Expand combinations appear.
The Ignore-drop loop gains a classToBlockArg pre-computation so that
Ignore args following Expand args are erased at the correct index.  In
rewriteCallSite, cir.extract_member decomposes the struct operand into
its constituent fields, which become separate call arguments.

    [3 lines not shown]
DeltaFile
+174-62clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.cpp
+224-0clang/test/CIR/Transforms/abi-lowering/expand-struct-arg.cir
+2-2clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRABIRewriteContext.h
+400-643 files

FreeNAS/freenas 234e42fsrc/middlewared/middlewared/plugins rsync.py, src/middlewared/middlewared/plugins/rsync_ utils.py __init__.py

Remove old rsync code
DeltaFile
+0-654src/middlewared/middlewared/plugins/rsync.py
+0-9src/middlewared/middlewared/plugins/rsync_/utils.py
+0-0src/middlewared/middlewared/plugins/rsync_/__init__.py
+0-6633 files

FreeNAS/freenas e4cc003.github/workflows mypy.yml

Update mypy action
DeltaFile
+1-0.github/workflows/mypy.yml
+1-01 files

FreeNAS/freenas c5de194src/middlewared/middlewared/plugins/rsync validate.py task.py

Make rsync plugin typesafe
DeltaFile
+303-0src/middlewared/middlewared/plugins/rsync/validate.py
+201-0src/middlewared/middlewared/plugins/rsync/task.py
+107-0src/middlewared/middlewared/plugins/rsync/crud.py
+92-0src/middlewared/middlewared/plugins/rsync/__init__.py
+15-0src/middlewared/middlewared/plugins/rsync/utils.py
+718-05 files

FreeNAS/freenas 0a484ddsrc/middlewared/middlewared/api/v27_0_0 rsync_task.py, src/middlewared/middlewared/common/attachment __init__.py

Update rsync plugin usages
DeltaFile
+28-25src/middlewared/middlewared/common/attachment/__init__.py
+22-26src/middlewared/middlewared/service/generic_sharing_service.py
+19-21src/middlewared/middlewared/service/sharing_task_service_part.py
+13-5src/middlewared/middlewared/api/v27_0_0/rsync_task.py
+11-3src/middlewared/middlewared/utils/service/task_state.py
+5-5src/middlewared/middlewared/etc_files/cron.d/middlewared.mako
+98-854 files not shown
+114-9210 files

FreeNAS/freenas e0decb7src/middlewared/middlewared/common/attachment __init__.py, src/middlewared/middlewared/service generic_sharing_service.py sharing_task_service_part.py

Initial pass at making sharing task service typesafe
DeltaFile
+164-0src/middlewared/middlewared/service/generic_sharing_service.py
+140-0src/middlewared/middlewared/service/sharing_task_service_part.py
+23-9src/middlewared/middlewared/common/attachment/__init__.py
+9-2src/middlewared/middlewared/service/__init__.py
+3-0src/middlewared/middlewared/service/base.py
+3-0src/middlewared/middlewared/service/crud_service.py
+342-112 files not shown
+347-118 files

FreeBSD/ports 8ecbf82math/octave-forge Makefile

math/octave-forge: Add new optional dependency.

- New optional dependency math/octave-forge-dsppack.
- Update to 20260604.
DeltaFile
+3-2math/octave-forge/Makefile
+3-21 files

FreeBSD/ports 3d39dc9math Makefile, math/octave-forge-dsppack Makefile pkg-descr

math/octave-forge-dsppack: New port.

GUI tool for designing and analysing IIR/FIR digital filters:
magnitude, phase and pole-zero responses, stability analysis, audio
demo, and code export.
DeltaFile
+24-0math/octave-forge-dsppack/Makefile
+9-0math/octave-forge-dsppack/pkg-descr
+3-0math/octave-forge-dsppack/distinfo
+1-0math/Makefile
+37-04 files

LLVM/project 60bd8f8clang/lib/StaticAnalyzer/Checkers/WebKit MemoryUnsafeCastChecker.cpp, clang/test/Analysis/Checkers/WebKit memory-unsafe-cast.mm

[Webkit Checkers][SaferCpp] Detect base-to-derived downcasts laundered through void* in MemoryUnsafeCastChecker (#200294)

Adds a matcher for static_cast<Derived*>(static_cast<void*>(base)),
which previously evaded detection because the outer cast's immediate
source expression is void*, not Base*.

rdar://173770143

---------

Co-authored-by: Balázs Benics <benicsbalazs at gmail.com>
DeltaFile
+42-7clang/test/Analysis/Checkers/WebKit/memory-unsafe-cast.mm
+32-3clang/lib/StaticAnalyzer/Checkers/WebKit/MemoryUnsafeCastChecker.cpp
+74-102 files

LLVM/project bb180ddclang/lib/CodeGen/Targets WebAssembly.cpp, clang/test/CodeGen/WebAssembly wasm-arguments.c

[WebAssembly] Fix crash combining complex numbers and multivalue (#200514)

This fixes a crash in Clang when the `experimental-mv` ABI is used on
WebAssembly targets in conjunction with complex numbers as arguments.
There's no strict definition for what the multivalue ABI is at this
time, so the main goal is to just not crash for now.

Closes #70402
Closes #153567
DeltaFile
+12-8clang/lib/CodeGen/Targets/WebAssembly.cpp
+10-0clang/test/CodeGen/WebAssembly/wasm-arguments.c
+22-82 files

OpenBSD/ports xFciUQCdevel/intellij distinfo Makefile

   devel/intellij: update to 2026.1.3
VersionDeltaFile
1.85+2-2devel/intellij/distinfo
1.119+2-2devel/intellij/Makefile
+4-42 files

NetBSD/pkgsrc-wip a2fd22fwebkit-gtk60 distinfo, webkit-gtk60/patches patch-Source_JavaScriptCore_CMakeLists.txt patch-Source_WTF_wtf_glib_FileSystemGlib.cpp

webkit-gtk60: update to 2.52.4
DeltaFile
+48-0webkit-gtk60/patches/patch-Source_JavaScriptCore_CMakeLists.txt
+0-42webkit-gtk60/patches/patch-Source_WTF_wtf_glib_FileSystemGlib.cpp
+0-19webkit-gtk60/patches/patch-CMakeLists.txt
+0-17webkit-gtk60/patches/patch-Tools_PlatformGTK.cmake
+5-7webkit-gtk60/distinfo
+5-6webkit-gtk60/patches/patch-Source_WebCore_platform_graphics_x11_XErrorTrapper.h
+58-912 files not shown
+61-948 files

FreeBSD/src ad52456usr.bin/limits limits.c

limits: Fix pipebuf resource type

* pipebuf is a size but is listed as a count

PR:             295623
MFC after:      1 week
Fixes:          f54f41403d14 ("usr.bin/limits: support RLIMIT_PIPEBUF")
Reviewed by:    kib
Differential Revision:  https://reviews.freebsd.org/D57456
DeltaFile
+1-1usr.bin/limits/limits.c
+1-11 files

FreeBSD/src a85e390usr.sbin/etcupdate etcupdate.sh

etcupdate: Make diff -l actually work

While here, remove unnecessary blank lines.

MFC after:      1 week
Fixes:          6d65c91b9a47 ("etcupdate: fix arguments order of diff command")
Reviewed by:    Boris Lytochkin <lytboris at gmail.com>
Differential Revision:  https://reviews.freebsd.org/D57330
DeltaFile
+4-14usr.sbin/etcupdate/etcupdate.sh
+4-141 files

FreeBSD/src 823d00bcontrib/telnet/libtelnet getent.c, include stdlib.h

libc: Constify the getcap API

MFC after:      1 week
Inspired by:    NetBSD
Reviewed by:    kib
Differential Revision:  https://reviews.freebsd.org/D57252
DeltaFile
+10-8lib/libc/gen/getcap.c
+4-4lib/libc/gen/getcap.3
+1-6libexec/getty/subr.c
+3-3include/stdlib.h
+3-3usr.bin/cap_mkdb/cap_mkdb.c
+3-3contrib/telnet/libtelnet/getent.c
+24-275 files not shown
+31-3411 files

LLVM/project 70f7167libc/src/__support/threads raw_rwlock.h

[libc][rwlock] fix the race condition in waiter queue (#201629)

Fix #201615.

Fix the issue that non atomic operations race in waiting queue, which
causes missed futex wakeup signals.

Confirmed by TSAN:

```
==================
WARNING: ThreadSanitizer: data race (pid=388518)
  Write of size 4 at 0x7ffd21cf98e4 by thread T23:
    #0 __llvm_libc_23_0_0_git::RawRwLock::notify_pending_threads() ./libc/src/__support/threads/raw_rwlock.h:443:44
    #1 __llvm_libc_23_0_0_git::RawRwLock::unlock() ./libc/src/__support/threads/raw_rwlock.h:520:5
    #2 randomized_thread_operation(SharedData*) ./libc/test/integration/src/__support/threads/tsan_full_rwlock.cpp:104:18
    #3 thread_runner(void*) ./libc/test/integration/src/__support/threads/tsan_full_rwlock.cpp:148:5

  Previous atomic read of size 4 at 0x7ffd21cf98e4 by thread T4:

    [20 lines not shown]
DeltaFile
+10-7libc/src/__support/threads/raw_rwlock.h
+10-71 files

LLVM/project b19d459clang-tools-extra/clang-tidy/misc RedundantExpressionCheck.cpp, clang-tools-extra/docs ReleaseNotes.rst

[clang-tidy] avoid 64-bit truncation in redundant bitwise checks (#201363)

Fixes #201115
DeltaFile
+47-2clang-tools-extra/test/clang-tidy/checkers/misc/redundant-expression.cpp
+4-2clang-tools-extra/clang-tidy/misc/RedundantExpressionCheck.cpp
+4-0clang-tools-extra/docs/ReleaseNotes.rst
+55-43 files

OpenBSD/ports xfIUhVxprint/texlive/base/patches patch-texk_dvipdfm-x_configure, print/texlive/texmf/pkg PLIST-full PLIST-docs

   print/texlive: update to 2026.

   (and also the associated print/luametatex update)

   All deps build tested for fallout by myself and tb@. All seems well.

   OK tb@, thanks!
VersionDeltaFile
1.35+5,392-4,791print/texlive/texmf/pkg/PLIST-full
1.31+1,425-522print/texlive/texmf/pkg/PLIST-docs
1.36+1,325-232print/texlive/texmf/pkg/PLIST-main
1.22+308-346print/texlive/texmf/pkg/PLIST-context
1.1+97-0print/texlive/base/patches/patch-texk_dvipdfm-x_configure
1.22+78-19print/texlive/texmf/pkg/PLIST-buildset
+8,625-5,91022 files not shown
+8,838-6,03728 files

FreeBSD/src ba0d22elib/libarchive Makefile.inc

libarchive: Fix typo in sed command

MFC after:      1 week
Fixes:          eb3a0a74a069 ("libarchive: Clean up the build configuration")
Reported by:    Shawn Webb <shawn.webb at hardenedbsd.org>
DeltaFile
+1-1lib/libarchive/Makefile.inc
+1-11 files

LLVM/project 48d0cbdflang/lib/Semantics check-omp-structure.cpp check-omp-structure.h

[flang][OpenMP] Separate checks for type-parameter inquiry and subobject (#201324)

This will make it possible to diagnose these situations independently.
This isn't perfect, but will be improved gradually in the future.
DeltaFile
+49-28flang/lib/Semantics/check-omp-structure.cpp
+5-1flang/lib/Semantics/check-omp-structure.h
+54-292 files

LLVM/project 762b77alibcxx/include ios, libcxx/lib/abi CHANGELOG.TXT powerpc-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist

[libc++] Remove ios_base::__xindex_ from the ABI (#198994)

`__xindex_` is only ever used from the dylib from a single function. We
can simplify the code a bit by making the variable function-local and
avoiding exposing it to the ABI at all. This also fixes a TODO about
whether it's safe to use `atomic` with the GCC ABI: yes, since it's not
actually part of our ABI.
DeltaFile
+0-28libcxx/test/libcxx/transitive_includes/cxx26.csv
+15-1libcxx/lib/abi/CHANGELOG.TXT
+5-11libcxx/include/ios
+5-8libcxx/src/ios.cpp
+0-1libcxx/lib/abi/powerpc-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist
+0-1libcxx/lib/abi/powerpc64-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist
+25-507 files not shown
+25-5713 files

LLVM/project becc74fclang/docs ReleaseNotes.rst, clang/include/clang/Options Options.td

[RISCV] Clang flags for controlling zilsd alignment (#181439)

Called `-mzilsd-word-align` and `-mzilsd-strict-align`. These interact
with scalar/strict alignment, in hopefully a reasonable way.

They cause errors on rv64, where zilsd is not available.
DeltaFile
+30-0clang/lib/Driver/ToolChains/Arch/RISCV.cpp
+23-0clang/test/Driver/riscv-zilsd-word-align.c
+7-3llvm/lib/Target/RISCV/RISCVSubtarget.h
+5-0clang/docs/ReleaseNotes.rst
+2-2llvm/lib/Target/RISCV/RISCVFeatures.td
+4-0clang/include/clang/Options/Options.td
+71-57 files not shown
+78-1213 files

LLVM/project 6369f33offload/ci openmp-offload-amdgpu-libc-runtime.py

[CI][AMDGPU] Create scriptedbuilder for libc build (#201687)

Introduced a new scriptedbuilder for libc build. It will enable
developers to conveniently reproduce the same build by our bot:
https://lab.llvm.org/buildbot/#/builders/10

Tested locally, tests passed.
DeltaFile
+66-0offload/ci/openmp-offload-amdgpu-libc-runtime.py
+66-01 files

FreeBSD/ports eb44fd6editors/vscode pkg-plist distinfo, editors/vscode/files patch-remote_node__modules_nan_nan__callbacks__12__inl.h patch-node__modules_nan_nan__callbacks__12__inl.h

editors/vscode: Update to 1.123

While here:
- remove upstreamed patches for @vscode/deviceid module
- apply patches to address incompatibility between nan module and
  electron42 [1]

Changelog: https://code.visualstudio.com/updates/v1_123

Reported by:    GitHub (watch releases)
Obtained from:  https://github.com/nodejs/nan/pull/1015 [1]
DeltaFile
+332-0editors/vscode/files/patch-remote_node__modules_nan_nan__callbacks__12__inl.h
+332-0editors/vscode/files/patch-node__modules_nan_nan__callbacks__12__inl.h
+82-111editors/vscode/pkg-plist
+52-0editors/vscode/files/patch-remote_node__modules_nan_nan__implementation__12__inl.h
+52-0editors/vscode/files/patch-node__modules_nan_nan__implementation__12__inl.h
+13-13editors/vscode/distinfo
+863-12414 files not shown
+917-20920 files

FreeBSD/ports 9fbacc0emulators/open-simh Makefile distinfo

emulators/open-simh: Update to 4.1.0.20260507
DeltaFile
+9-3emulators/open-simh/Makefile
+3-3emulators/open-simh/distinfo
+1-0emulators/open-simh/pkg-plist
+13-63 files

LLVM/project 72c2f7eclang/lib/CodeGen HLSLBufferLayoutBuilder.cpp HLSLBufferLayoutBuilder.h, clang/lib/Sema SemaHLSL.cpp

[HLSL][CBuffer][Matrix] Honor row_major/column_major keyword in cbuffer layout (#201671)

fixes #201668

A per-declaration `row_major`/`column_major` keyword on a cbuffer matrix
was being dropped when building the cbuffer layout, so the layout struct
and the buffer-layout copy fell back to the translation-unit
`-fmatrix-memory-layout=`

Needed to fix the desugar in two places:
* HLSLBufferLayoutBuilder::layOutMatrix took a `const ConstantMatrixType
*` and called ConvertTypeForMem(QualType(MT, 0)), discarding the sugar.
It now takes the sugared QualType.
* SemaHLSL's host-layout struct construction called
getUnqualifiedDesugaredType() on each field, erasing the orientation
attribute. A getHostLayoutFieldType() helper now keeps the sugared type
for constant matrices while desugaring everything else.
DeltaFile
+41-0clang/test/CodeGenHLSL/cbuffer-matrix-layout-keyword.hlsl
+13-2clang/lib/Sema/SemaHLSL.cpp
+6-8clang/lib/CodeGen/HLSLBufferLayoutBuilder.cpp
+4-2clang/lib/CodeGen/HLSLBufferLayoutBuilder.h
+64-124 files