FreeBSD/ports a71f042devel/radicle distinfo Makefile.crates

devel/radicle: Update to 1.9.0
DeltaFile
+473-473devel/radicle/distinfo
+235-235devel/radicle/Makefile.crates
+3-4devel/radicle/Makefile
+711-7123 files

LLVM/project 5ff6c5ellvm/lib/Target/AMDGPU SIFoldOperands.cpp, llvm/test/CodeGen/AMDGPU si-fold-scalar-add-sub-imm.mir dagcombine-reassociate-multi-memop.ll

[AMDGPU] SIFoldOperands: constant-fold S_ADD/S_SUB with immediate operands (#198410)

Extend SIFoldOperands::tryConstantFoldOp to recognise three patterns
  * ADD/SUB(imm, imm) -> S_MOV_B32 (LHS +/- RHS)
  * ADD x, 0          -> COPY x   (Also `0 + x`)
  * SUB x, 0          -> COPY x   (SUB is not commutable)

Assisted-by: Claude Opus 4.7
DeltaFile
+161-0llvm/test/CodeGen/AMDGPU/si-fold-scalar-add-sub-imm.mir
+30-0llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
+1-1llvm/test/CodeGen/AMDGPU/dagcombine-reassociate-multi-memop.ll
+192-13 files

FreeNAS/freenas c3e10cesrc/middlewared/middlewared/plugins/container __init__.py lifecycle.py, src/middlewared/middlewared/test/integration/assets container.py

Sweep orphaned container runtime mounts at startup
DeltaFile
+36-159tests/api2/test_container.py
+132-0src/middlewared/middlewared/test/integration/assets/container.py
+127-0tests/api2/test_container_filesystem_child_mounts.py
+20-70tests/api2/test_container_acl.py
+9-0src/middlewared/middlewared/plugins/container/__init__.py
+8-0src/middlewared/middlewared/plugins/container/lifecycle.py
+332-2296 files

LLVM/project 8148e16llvm/lib/Target/X86 X86ISelLowering.cpp, llvm/test/CodeGen/X86 gfni-operand-and-fold.ll

[X86] Fold splat AND on VGF2P8AFFINEQB source (#193364)

Given that each row within `vgf2p8affineqb`'s matrix controls which
source bits are selected, zeroing the same bit within all rows treats
that corresponding source bit like it is zero. This means a AND of the
input by any splatted 8-bit values can be folded with the matrix. This
is patch:

- Can eliminate a constant and/or reduces the instruction count from 2
to 1.
- Only occurs when the matrix is constant, ensuring that it can't
increase the dependency chain.
- Don't occur if the AND is multi use well the splat isn't constant,
preventing additional operations.
- Work with both constant 8-bit splats and scalars value that where
splatted to a vector.
- Includes test coverage for positive cases (by constants, variable
scalars, non zero immediates) and negative (multi use, larger splats,
variable matrices).

Fixes #191325
DeltaFile
+179-0llvm/test/CodeGen/X86/gfni-operand-and-fold.ll
+60-0llvm/lib/Target/X86/X86ISelLowering.cpp
+239-02 files

LLVM/project ce7b6edclang/lib/Driver/ToolChains CommonArgs.cpp, clang/lib/Driver/ToolChains/Arch AMDGPU.cpp

[NFC][AMDGPU] Remove AMDGPU related code from generic TargetParser.cpp
DeltaFile
+659-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+1-643llvm/lib/TargetParser/TargetParser.cpp
+109-0llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+1-90llvm/include/llvm/TargetParser/TargetParser.h
+0-2clang/lib/Driver/ToolChains/Arch/AMDGPU.cpp
+1-1clang/lib/Driver/ToolChains/CommonArgs.cpp
+771-73627 files not shown
+797-76033 files

FreeNAS/freenas f5e1054tests/api2/zfs_tier test_set_tier_errors.py test_shares.py

More fixes
DeltaFile
+34-31tests/api2/zfs_tier/test_set_tier_errors.py
+20-12tests/api2/zfs_tier/test_shares.py
+12-11tests/api2/zfs_tier/test_smoke.py
+15-8tests/api2/zfs_tier/test_config.py
+16-0tests/api2/zfs_tier/conftest.py
+5-3tests/api2/zfs_tier/test_query_fields.py
+102-652 files not shown
+106-738 files

LLVM/project e0f8b79clang/test/CodeGen link-builtin-bitcode.c, clang/test/CodeGenOpenCL builtins-amdgcn.cl

[AMDGPU] Add three target features msad-insts, mqsad-pk-insts, and mqsad-insts (#198432)
DeltaFile
+43-7llvm/lib/Target/AMDGPU/AMDGPU.td
+29-0llvm/lib/TargetParser/TargetParser.cpp
+8-10clang/test/CodeGenOpenCL/builtins-amdgcn.cl
+5-7llvm/lib/Target/AMDGPU/VOP3Instructions.td
+11-0llvm/test/MC/AMDGPU/gfx12_5_generic_asm_vop3_err.s
+3-3clang/test/CodeGen/link-builtin-bitcode.c
+99-276 files not shown
+113-3512 files

LLVM/project fb4686bmlir/include/mlir/Interfaces MemorySlotInterfaces.td, mlir/lib/Transforms Mem2Reg.cpp

[mlir][mem2reg] fix 197158 by moving visitReplacedValues call
DeltaFile
+45-19mlir/lib/Transforms/Mem2Reg.cpp
+16-16mlir/include/mlir/Interfaces/MemorySlotInterfaces.td
+25-0mlir/test/Dialect/LLVMIR/mem2reg-dbginfo.mlir
+86-353 files

LLVM/project af0b42dlibc/src/__support/OSUtil/linux/syscall_wrappers link.h open.h

[libc] prefer *at syscalls in sys/stat wrappers (#197940)

- These changes flips the #ifdef order to prefer the *at syscalls over
normal ones.
- In modern architectures, *at system calls are preferred over normal
system calls cuz of safety issues.
- So by checking for ""*at"" system calls first, we ensure better
compatibility with modern systems.
- After then normal syscalls moved else or elif for support to older
ones.
  - From merged pr(#195792) and issue(#195620)

---------

Signed-off-by: udaykiriti <udaykiriti624 at gmail.com>
Co-authored-by: Jeff Bailey <jbailey at raspberryginger.com>
DeltaFile
+4-4libc/src/__support/OSUtil/linux/syscall_wrappers/link.h
+3-3libc/src/__support/OSUtil/linux/syscall_wrappers/open.h
+3-3libc/src/__support/OSUtil/linux/syscall_wrappers/access.h
+3-3libc/src/__support/OSUtil/linux/syscall_wrappers/readlink.h
+3-3libc/src/__support/OSUtil/linux/syscall_wrappers/rmdir.h
+3-3libc/src/__support/OSUtil/linux/syscall_wrappers/unlink.h
+19-196 files

LLVM/project e04895fllvm/test/CodeGen/X86 avgfloors.ll vector-shift-ashr-sub128.ll

[X86] Lower vector i8 ashr-by-1 using pavgb (#198487)

For vector i8 arithmetic shift right by 1, the current lowering produces
a 5-instruction sequence (psrlw + pand + xor + psubb plus a constant
load) with a 4-deep dependency chain.

This patch uses the identity

  ashr(x, 1) == avgceilu(x, -1) ^ (~x & 0x80)

to lower to ISD::AVGCEILU + a short fixup, producing 4 instructions on
SSE/AVX/AVX2 and 3 on AVX-512BW (after vpternlogd fusion of the AND/XOR
pair), with two parallel dependency chains instead of one long one.

The freeze on R is required because the target reads it twice, matching
the pattern of the existing `shl R, 1 -> add R, R` case in
LowerShiftByScalarImmediate.

Alive2 proof: https://alive2.llvm.org/ce/z/LbXPhE

Fixes #198061
DeltaFile
+258-288llvm/test/CodeGen/X86/avgfloors.ll
+69-135llvm/test/CodeGen/X86/vector-shift-ashr-sub128.ll
+34-57llvm/test/CodeGen/X86/vector-shift-ashr-256.ll
+28-44llvm/test/CodeGen/X86/vector_splat-const-shift-of-constmasked.ll
+23-45llvm/test/CodeGen/X86/vector-shift-ashr-128.ll
+8-15llvm/test/CodeGen/X86/vector-shift-ashr-512.ll
+420-5841 files not shown
+430-5847 files

LLVM/project 6fd09a5flang/lib/Lower/OpenMP OpenMP.cpp, flang/test/Lower/OpenMP declare-simd-interface-body.f90

[flang][OpenMP] Skip declare simd lowering for interface bodies (#197010)

When DECLARE SIMD appears in the specification part of an interface
body, the PFT records the directive as an evaluation of the enclosing
program unit rather than of the interface body's subprogram. Its clause
operands (linear/aligned/uniform) reference dummy arguments local to the
interface body, which have no address in the enclosing scope, causing a
crash.

Detect the mismatch by comparing the program unit containing the
directive with the procedure currently being lowered, and skip op
emission when they differ.

This handles both explicit declare simd(proc-name) and implicit forms in
any enclosing context.

Fixes #192581
DeltaFile
+32-0flang/test/Lower/OpenMP/declare-simd-interface-body.f90
+23-0flang/lib/Lower/OpenMP/OpenMP.cpp
+55-02 files

LLVM/project 9146776flang/test/Integration/OpenMP atomic-compare.f90, llvm/lib/Frontend/OpenMP OMPIRBuilder.cpp

[Flang] [OpenMP] atomic compare (#184761)

Support for `omp atomic compare` in flang. 
Multiple clauses like capture with compare are not supported

An issue for this was raised earlier at
[181116](https://github.com/llvm/llvm-project/issues/181116)

---------

Co-authored-by: Sunil Kuravinakop <kuravina at pe31.hpc.amslabs.hpecorp.net>
DeltaFile
+517-0mlir/test/Dialect/OpenMP/invalid.mlir
+359-0mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
+233-62llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+249-0flang/test/Integration/OpenMP/atomic-compare.f90
+209-0mlir/test/Target/LLVMIR/openmp-llvm.mlir
+171-0mlir/include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.td
+1,738-6213 files not shown
+2,285-13119 files

LLVM/project e32fc5dllvm/lib/CodeGen/SelectionDAG SelectionDAG.cpp

[SelectionDAG] Use getExtractSubvector. NFC (#198450)
DeltaFile
+1-2llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+1-21 files

FreeBSD/ports da39bb2devel/py-lxml distinfo Makefile

devel/py-lxml: update to 6.1.1

Changelog: https://github.com/lxml/lxml/releases/tag/lxml-6.1.1
DeltaFile
+3-3devel/py-lxml/distinfo
+1-1devel/py-lxml/Makefile
+4-42 files

LLVM/project 9ccaf83llvm/include/llvm/IR OptBisect.h

[LLVM] Add a function to reset the opt bisector (#197723)

For daemonized testing, we need to be able to reset the global opt
bisector between test runs. This PR just adds a small function to the
OptPassGate class to reset its state.
DeltaFile
+9-0llvm/include/llvm/IR/OptBisect.h
+9-01 files

LLVM/project 8f6ed9flldb/source/Target Target.cpp

[lldb] Fix possible invalidated iterator. (#198482)

The begin or end interator may be invalidated when a idx_pos in erased
from the vector.

Unblocks sanitised CI.
DeltaFile
+3-4lldb/source/Target/Target.cpp
+3-41 files

LLVM/project 38949dbllvm/lib/Target/AArch64 AArch64ISelLowering.cpp AArch64Arm64ECCallLowering.cpp, llvm/test/CodeGen/AArch64 arm64ec-exit-thunks.ll arm64ec-hybrid-patchable.ll

Revert "[AArch64] Copy x4/x5 vararg payload into the x64 stack in Arm64EC exit thunks" (#198540)

Reverts llvm/llvm-project#190933

Reported issues with an EXPENSIVE_CHECKS_BUILD. Reverting so this can be
fixed without undue time pressure.
DeltaFile
+6-208llvm/test/CodeGen/AArch64/arm64ec-exit-thunks.ll
+4-62llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+9-11llvm/test/CodeGen/AArch64/arm64ec-hybrid-patchable.ll
+1-9llvm/lib/Target/AArch64/AArch64Arm64ECCallLowering.cpp
+20-2904 files

LLVM/project 960ae6fclang/include/clang/Options FlangOptions.td, flang/include/flang/Frontend FrontendOptions.h

[Flang] Adding -ffree-line-length-<value> flag (#192941)

Added support for the `-ffree-line-length-<value>` flag in Flang, which
is equivalent to `-ffixed-line-length-<value>` but in free form.
This flag is supported by gfortran and can be used in some applications.

---------

Co-authored-by: Tarun Prabhu <tarunprabhu at gmail.com>
Co-authored-by: Andre Kuhlenschmidt <andre.kuhlenschmidt at gmail.com>
DeltaFile
+48-0flang/test/Driver/ffree-line-length.f90
+16-9flang/lib/Frontend/CompilerInvocation.cpp
+8-2flang/include/flang/Frontend/FrontendOptions.h
+5-1clang/include/clang/Options/FlangOptions.td
+5-0flang/lib/Parser/prescan.h
+4-0flang/lib/Parser/prescan.cpp
+86-124 files not shown
+90-1310 files

OpenBSD/ports t0J4LlXnet/nomadnet distinfo Makefile, net/nomadnet/pkg PLIST

   bump nomadnet to 1.1.0

   diff from jk (katagawa at mailbox dot org), thanks!
VersionDeltaFile
1.6+9-0net/nomadnet/pkg/PLIST
1.5+2-2net/nomadnet/distinfo
1.7+1-1net/nomadnet/Makefile
+12-33 files

FreeBSD/ports 4cc36f9www/grist-core Makefile distinfo, www/grist-core/files grist.in pkg-message.in

www/grist: added a web based spreadsheet with extended database capabilities
DeltaFile
+110-0www/grist-core/Makefile
+59-0www/grist-core/files/grist.in
+52-0www/grist-core/files/pkg-message.in
+26-0www/grist-core/files/grist.conf.sample
+5-0www/grist-core/distinfo
+3-0www/grist-core/pkg-descr
+255-03 files not shown
+258-29 files

LLVM/project 4cb4bbcclang/include/clang/Lex Lexer.h, clang/lib/Format FormatTokenLexer.cpp

[Clang] [NFC] Use `unique_ptr<Lexer>` everywhere (#198393)

Replace every instance of `new Lexer` with `make_unique<Lexer>` and
adjust `Lexer::Create_PragmaLexer()` to return a `std::unique_ptr<Lexer>` 
instead.

The Preprocessor was already storing a `unique_ptr<Lexer>`, so there’s
no need to change how that works.
DeltaFile
+7-6clang/lib/Lex/PPLexerChange.cpp
+5-6clang/lib/Lex/Lexer.cpp
+5-5clang/include/clang/Lex/Lexer.h
+5-3clang/lib/Format/FormatTokenLexer.cpp
+3-3clang/lib/Lex/Pragma.cpp
+2-2clang/lib/Frontend/FrontendAction.cpp
+27-251 files not shown
+29-267 files

FreeNAS/freenas b3bfd23src/middlewared/middlewared/plugins/container lifecycle.py, src/middlewared/middlewared/plugins/docker state_management.py

Restrict on-disk perms of internal container/apps dataset roots

The internal dataset trees that back containers
(/mnt/.truenas_containers/), Docker apps (/mnt/.ix-apps/), and the
per-container idmapped bind-mount parent (/run/truenas_containers/root/)
are implementation-detail paths that aren't intended to be inspected
directly by host users. They currently mount with the default of
drwxr-xr-x root:root (or 0755 from os.makedirs for the /run parent),
which is looser than necessary.

This PR pins those three directories to 0700 root:root and re-applies
the mode at the relevant entry points so the property is idempotent
across reboots and manual chmod drift.
DeltaFile
+191-142tests/api2/test_apps.py
+100-0tests/unit/test_filesystem_perms.py
+37-27src/middlewared/middlewared/plugins/container/lifecycle.py
+60-0tests/api2/test_container.py
+30-24src/middlewared/middlewared/plugins/docker/state_management.py
+53-0src/middlewared/middlewared/utils/filesystem/perms.py
+471-1933 files not shown
+532-2399 files

LLVM/project f6fb8f5lldb/test/API/functionalities/gdb_remote_client TestGDBRemoteClient.py

[lldb][windows] remove path separator replacement from TestGDBRemoteClient.py (#198537)

Since https://github.com/llvm/llvm-project/pull/197942, vRun packets use
the native path separators. TestGDBRemoteClient.py now fails on Windows
because it converts the path to POSIX style paths, which is a workaround
for what https://github.com/llvm/llvm-project/pull/197942 fixed.

rdar://177342572
DeltaFile
+3-6lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py
+3-61 files

FreeBSD/ports 3d5723c. UIDs, www/tt-rss pkg-plist Makefile

www/tt-rss: Run ttrssd as ttrssd user and move data to /var

- Create a ttrssd user and group to run ttrssd.
- Move log file to /var/log/tt-rss directorie.
- Move pid files to /var/run/tt-rss directorie.
- Move on disk data to /var/tt-rss/.

PR:             282245
Approved by:    maintainer
Differential Revision:  https://reviews.freebsd.org/D49128
DeltaFile
+27-18www/tt-rss/pkg-plist
+23-9www/tt-rss/files/ttrssd.in
+24-2www/tt-rss/Makefile
+12-0www/tt-rss/files/start.sh.in
+8-0www/tt-rss/files/config.php.in
+1-1UIDs
+95-302 files not shown
+97-328 files

LLVM/project 673b17ellvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp, llvm/test/CodeGen/AArch64 arm64-neon-v1i1-setcc.ll

[DAG] scalarizeExtractedBinOp - extract from non-constant one use buildvectors (#198013)

When attempting to scalarize a vector binop that has a single extract,
we currently only fold if either of the binop's operands is a constant
buildvector - but we can extract from non-constant buildvectors without
increasing instruction count as long as the vector binop was the only
use of the buildvector.

More yak shaving for #196493
DeltaFile
+44-60llvm/test/CodeGen/X86/ifma-combine-vpmadd52.ll
+25-27llvm/test/CodeGen/X86/masked_gather_scatter_widen.ll
+2-6llvm/test/CodeGen/X86/i128-add.ll
+3-4llvm/test/CodeGen/X86/known-signbits-vector.ll
+1-2llvm/test/CodeGen/AArch64/arm64-neon-v1i1-setcc.ll
+2-1llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+77-1006 files

LLVM/project bcfa53eflang/include/flang/Lower OpenACC.h, flang/lib/Lower OpenACC.cpp Bridge.cpp

[flang][acc] Handle Fortran do loops as acc loops in acc routine (#198420)

As was previously done for do loops in acc compute constructs in
https://github.com/llvm/llvm-project/issues/149614 , this PR does the
same for do loops in `acc routine`. The rules are follows:
- Do loops not marked with `acc loop` are considered `auto`
- Do concurrent loops are considered `independent`
- Any loops in an `acc routine seq` are considered `seq`

This ensures that the IV is correctly privatized and attached to acc
loop.
DeltaFile
+108-1flang/test/Lower/OpenACC/do-loops-to-acc-loops.f90
+81-24flang/lib/Lower/OpenACC.cpp
+8-0flang/include/flang/Lower/OpenACC.h
+4-3flang/lib/Lower/Bridge.cpp
+201-284 files

NetBSD/pkgsrc lWfkuRkx11/kitty distinfo go-modules.mk, x11/kitty/patches patch-kitty_disk-cache.c

   kitty: update to 0.47.0

   - A new Drag and drop kitten to allow drag and drop of files from
     your shell to any GUI program even across SSH
   - A new option palette_generate to automatically generate the 256
     color palette from the first 16 colors
   - For builtin key mappings automatically fallback to matching the
     US-PC layout key when the pressed key has no matches and is a
     non-English character
   - Allow drag and drop of windows to re-arrange them, move them to
     another tab/OS Window or detach them into a new OS Window. See
     toggle_window_title_bars to temporarily show window title bars to
     drag them around
   - Have scroll_line_up and scroll_line_down smooth scroll by default.
     Can be restored to old behavior by re-mapping without the smooth
     argument
   - Draw a progress bar at the top of the window when a program
     reports progress using the OSC 9;4 escape sequence, controlled by
     progress_bar

    [94 lines not shown]
VersionDeltaFile
1.42+65-52x11/kitty/distinfo
1.18+21-17x11/kitty/go-modules.mk
1.38+24-4x11/kitty/PLIST
1.1+16-0x11/kitty/patches/patch-kitty_disk-cache.c
1.88+4-5x11/kitty/Makefile
+130-785 files

NetBSD/pkgsrc Jn9AKOudoc CHANGES-2026

   doc: Updated lang/ruby40 to 4.0.4
VersionDeltaFile
1.3127+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc Ge3CUXzlang/ruby rubyversion.mk, lang/ruby40 distinfo PLIST

   lang/ruby40: update to 4.0.4

   pkgsrc change:

   * Fix rdoc problem on C locale, backported from rdoc-7.0.4.
     (So, no need to patch a template file to character entity reference.)

   Ruby 4.0.4 (2026-05-11)

   * Bug #21955: Fiber#transfer: machine stack not released when fiber
     terminates, causing FiberError: can't set a guard page
   * Bug #21964: Fiber stack acquire can expand unnecessarily
   * Bug #21971: Fix regexp performance regression for patterns starting with
     s/k
   * Bug #21961: Marshal.load freeze option fail to freeze linked strings
   * Bug #21959: rb_internal_thread_event_hooks_rw_lock is not reinitialized
     after fork causing deadlocks
   * Bug #21954: NoMethodError instead of Gem::LoadError on gem activation
     problem in Ruby 4.0.2

    [16 lines not shown]
VersionDeltaFile
1.1+15-0lang/ruby40/patches/patch-.bundle_gems_rdoc-7.0.3_lib_rdoc_parser_c.rb
1.8+5-5lang/ruby40/distinfo
1.323+4-4lang/ruby/rubyversion.mk
1.3+3-1lang/ruby40/PLIST
1.2+1-1lang/ruby40/patches/patch-.bundle_gems_rdoc-7.0.3_lib_rdoc_generator_template_aliki___header.rhtml
+28-115 files

FreeBSD/src 4f29251sys/net if_fwsubr.c

net: bandaid for plugging a fw_com leak in fwip_detach()

Adding a temporary workaround for plugging a fw_com upon if_fwip unloading.

Steps to reproduce(needs two hosts connected with firewire):

  while true; do
    ifconfig fwip0 10.0.0.5 up
    fwcontrol -r
    ping -c 10.0.0.3
    kldunload if_fwip
  done

There's a chance that the unloading of if_fwip.ko triggers following warning:

        Warning: memory type fw_com leaked memory on destroy (1 allocations, 64 bytes leaked).

commit d79b6b8ec267e7eef6e07cf4245159705e24acd5 (origin/main, origin/HEAD)

(cherry picked from commit 25a5bb7318052322190a2880e0e7ef18e06d54bd)
DeltaFile
+1-0sys/net/if_fwsubr.c
+1-01 files