FreeBSD/src de68720cddl/lib/libzfs Makefile, cddl/lib/libzpool Makefile

zfs: fix SIMD defines to match OpenZFS HAVE_SIMD() macro

The OpenZFS merge 80aae8a3f8aa introduced HAVE_SIMD() which checks for
HAVE_TOOLCHAIN_* defines via simd_config.h.  The kernel module Makefile
was updated, but kern.pre.mk (static kernel build) and the libzpool/libzfs
Makefiles were missed, still using the old HAVE_SSE2 etc. names.  This
caused all vectorized raidz, fletcher, and blake3 implementations to be
compiled out.
DeltaFile
+5-3sys/conf/kern.pre.mk
+3-3cddl/lib/libzpool/Makefile
+3-2cddl/lib/libzfs/Makefile
+11-83 files

FreeBSD/doc eac263fdocumentation/content/en/books/fdp-primer/po-translations _index.adoc, documentation/content/en/books/fdp-primer/translations _index.adoc

books/fdp-primer: remove duplicate sentences

PR: 295678
DeltaFile
+3-3documentation/content/en/books/fdp-primer/po-translations/_index.adoc
+0-3documentation/content/en/books/fdp-primer/translations/_index.adoc
+3-62 files

FreeBSD/ports 1a3c52cdevel/glab distinfo Makefile

devel/glab: update to 1.106.0

Changes:        https://gitlab.com/gitlab-org/cli/-/releases
DeltaFile
+5-5devel/glab/distinfo
+2-2devel/glab/Makefile
+2-0devel/glab/pkg-plist
+9-73 files

FreeBSD/ports ae1cea4security/trivy distinfo Makefile

security/trivy: update to 0.72.0

Changes:        https://github.com/aquasecurity/trivy/releases
DeltaFile
+5-5security/trivy/distinfo
+1-1security/trivy/Makefile
+6-62 files

FreeBSD/ports 0b51336www/pydio-cells distinfo Makefile

www/pydio-cells: update to 5.0.2

Changelog: https://github.com/pydio/cells/releases/tag/v5.0.2
DeltaFile
+5-5www/pydio-cells/distinfo
+1-1www/pydio-cells/Makefile
+6-62 files

LLVM/project f298ab9llvm/lib/Target/AMDGPU SIFoldOperands.cpp, llvm/test/CodeGen/AMDGPU si-fold-reg-sequence.mir

[AMDGPU] Fix SIFoldOperands crash on REG_SEQUENCE with physical register (#206976)

The getRegSeqInit function crashes on REG_SEQUENCE instructions with
physical register inputs.

Since both optimizations that use getRegSeqInit do not need to handle
such REG_SEQUENCE instructions, this patch changes the function to
return nullptr which signals that the optimization should not happen.
DeltaFile
+21-0llvm/test/CodeGen/AMDGPU/si-fold-reg-sequence.mir
+2-0llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
+23-02 files

LLVM/project a5864f9flang/lib/Lower/OpenMP Utils.cpp, flang/test/Lower/OpenMP non-rectangular-collapse.f90 non-rectangular-collapse2.f90

[Flang][OpenMP] Emit TODO for non-rectangular collapsed loop nests (#205558)

Non-rectangular loop nests (where an inner loop bound depends on an
outer IV) with collapse currently generate incorrect code that segfaults
at runtime, since OpenMPIRBuilder's collapseLoops assumes rectangular
iteration spaces.

Added a check during lowering to detect the non-rectangular case and
emit a clear "not yet implemented" error instead of silently producing
broken code.

minimal reproducer : 
```
program repro
implicit none
integer, parameter :: N = 10
integer :: arr(N,N), i, j

arr = 0

    [23 lines not shown]
DeltaFile
+32-0flang/lib/Lower/OpenMP/Utils.cpp
+23-0flang/test/Lower/OpenMP/non-rectangular-collapse.f90
+22-0flang/test/Lower/OpenMP/non-rectangular-collapse2.f90
+22-0flang/test/Lower/OpenMP/non-rectangular-collapse3.f90
+99-04 files

OpenBSD/src GOEIFzTusr.bin/tmux layout-set.c layout.c

   Change layout sets to build the layout using the new mechanics, from
   Dane Jensen.
VersionDeltaFile
1.37+151-173usr.bin/tmux/layout-set.c
1.84+23-16usr.bin/tmux/layout.c
1.355+4-4usr.bin/tmux/window.c
1.35+4-4usr.bin/tmux/layout-custom.c
1.1385+4-3usr.bin/tmux/tmux.h
1.43+2-2usr.bin/tmux/spawn.c
+188-2026 files

LLVM/project 9b3d68fclang/test/CodeGen atomic-auto-type.c

[Clang] Add FileCheck lines to atomic-auto-type codegen test (#206749)

Follow-up to #197874. The codegen test was missing FileCheck lines,
making it a no-op. Add checks that verify both __auto_type _Atomic and
_Atomic __auto_type produce correct allocas and stores.


Follow up to comment from:
https://github.com/llvm/llvm-project/pull/197874#discussion_r3496368126
DeltaFile
+40-10clang/test/CodeGen/atomic-auto-type.c
+40-101 files

OPNSense/core 10a2749src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes PortField.php, src/opnsense/mvc/tests/app/models/OPNsense/Base/FieldTypes PortFieldTest.php

mvc: PortField now rejects whitespaces in port ranges during validation (#10478)
DeltaFile
+31-19src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/PortField.php
+14-0src/opnsense/mvc/tests/app/models/OPNsense/Base/FieldTypes/PortFieldTest.php
+45-192 files

LLVM/project fe7e78cllvm/include/llvm/Support VersionTuple.h, llvm/unittests/Support VersionTupleTest.cpp

[Support] Fix VersionTuple DenseMapInfo conformance (#206872)

In C++ standard library (and many other programming languages standard
libraries), if two values are equal, they should return the same hash.
This requirement is pretty common so associative containers can quickly
find values that might be equal by calculating the hash, and if that
requirement is not hold, associative containers might not work as
expected.

The documentation of `DenseMapInfo` does not specify the same
requirement, as far as I can see, but its usage on `DenseMap` relies on
it, or objects that compare equal might end up in different buckets and
will not be correctly found.

`DenseMapInfo<VersionTuple>` implementation of `getHashValue` was
implementing its own logic for hashing, but delegating to `VersionTuple`
for equality. `VersionTuple` equality partially compares its scalar
member variables, skipping some boolean member variables, but the
`getHashValue` implementation was using those boolean member variables

    [11 lines not shown]
DeltaFile
+19-0llvm/unittests/Support/VersionTupleTest.cpp
+1-11llvm/include/llvm/Support/VersionTuple.h
+20-112 files

LLVM/project 39b92b2clang/lib/Driver/ToolChains CommonArgs.cpp, clang/test/Driver amdgpu-mcpu.cl hip-sanitize-options.hip

clang/AMDGPU: Stop passing redundant -target-cpu to cc1

Now that the exact target is encoded in the triple's subarch field,
-target-cpu is redundant. This avoids polluting the resultant IR with
unwanted "target-cpu" attributes. The net result is the desired codegen
when compiling libraries for a major subarch and linking it into a
program compiled for a specific arch. e.g., compiling for "gfx9-generic"
would pollute the IR with "target-cpu"="gfx9-generic", so codegen
would ultimately be performed for the generic target even after
linking into the concrete gfx9 cpu. The specialization will now be
achieved by merging the triples without the linker or optimization
passes needing to fixup function attributes.
DeltaFile
+62-62clang/test/Driver/amdgpu-mcpu.cl
+26-26clang/test/Driver/hip-sanitize-options.hip
+20-10clang/lib/Driver/ToolChains/CommonArgs.cpp
+12-16clang/test/Driver/hip-rdc-device-only.hip
+24-0clang/test/Preprocessor/amdgpu-subarch-cc1-target-cpu.cl
+10-10clang/test/Driver/amdgpu-xnack-sramecc-flags.c
+154-12427 files not shown
+214-21133 files

LLVM/project ea20fb2clang/lib/Basic/Targets AMDGPU.h AMDGPU.cpp, clang/test/Misc/target-invalid-cpu-note amdgcn.c

clang/AMDGPU: Validate -target-cpu in cc1 is valid for the subarch

Restrict the reported list of valid target-cpus based on the triple's
subarch. This is more consistent with how other targets validate the
target CPU name. Currently we have split handling validating the target
name for the triple in both the driver and here. The driver based diagnostic
seems to be an amdgpu-ism in 2 different places (though there is one arm
validation emitting the same diagnostic). In the future we could probably
drop those.
DeltaFile
+55-0clang/test/Misc/target-invalid-cpu-note/amdgcn.c
+6-5clang/lib/Basic/Targets/AMDGPU.h
+1-1clang/lib/Basic/Targets/AMDGPU.cpp
+62-63 files

LLVM/project f3a4a34llvm/test/CodeGen/AMDGPU directive-amdgcn-target-legacy-triples.ll directive-amdgcn-target.ll

AMDGPU: Migrate target id tests to use new subarch triples
DeltaFile
+239-0llvm/test/CodeGen/AMDGPU/directive-amdgcn-target-legacy-triples.ll
+0-239llvm/test/CodeGen/AMDGPU/directive-amdgcn-target.ll
+12-10llvm/test/CodeGen/AMDGPU/target-id-xnack-always-on.ll
+11-11llvm/test/CodeGen/AMDGPU/tid-mul-func-xnack-all-any.ll
+11-11llvm/test/CodeGen/AMDGPU/tid-mul-func-xnack-all-not-supported.ll
+11-11llvm/test/CodeGen/AMDGPU/tid-mul-func-xnack-all-off.ll
+284-2829 files not shown
+380-37815 files

LLVM/project fd98a6bllvm/unittests/CodeGen AMDGPUMetadataTest.cpp, llvm/unittests/CodeGen/GlobalISel GISelMITest.cpp

AMDGPU: Migrate unittests to subarch triples

Replace specifying a processor name with the triple
subarch.

The register-limit helpers in AMDGPUUnitTests.cpp that enumerate every
valid CPU via fillValidArchListAMDGCN still pass the CPU explicitly, as
does the MC Disassembler smoke test (its C disassembler API derives the
subtarget from the CPU, not the triple subarch).

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+6-6llvm/unittests/Target/AMDGPU/DwarfRegMappings.cpp
+6-6llvm/unittests/MC/AMDGPU/DwarfRegMappings.cpp
+3-3llvm/unittests/CodeGen/AMDGPUMetadataTest.cpp
+2-2llvm/unittests/Target/AMDGPU/AMDGPUUnitTests.cpp
+2-2llvm/unittests/CodeGen/GlobalISel/GISelMITest.cpp
+2-2llvm/unittests/MC/AMDGPU/Disassembler.cpp
+21-2110 files not shown
+33-3316 files

LLVM/project 0707796llvm/test/CodeGen/AMDGPU target-cpu.ll

AMDGPU: Rewrite target-cpu test for new subarches

The function subtargets should now be a valid subtarget for
the top-level subarch.
DeltaFile
+52-74llvm/test/CodeGen/AMDGPU/target-cpu.ll
+52-741 files

LLVM/project ab5ba03clang/lib/Basic OffloadArch.cpp, clang/lib/Driver Driver.cpp

clang: Start using new amdgpu subarch triples

Fixup invocations using --target=amdgcn + -mcpu to introduce
the subarch in the triple.

For offload toolchains, a single toolchain is constructed for the
top level amdgpu architecture, and the effective triple is used for
target specific tool invocations.

The specifics of the resource directory layout are tbd. This does
try to find resources in the subarch named directory. The paths
are searched at toolchain creation time, so that does not work
when there are multiple subarches.

Fixes #154925
DeltaFile
+234-2clang/lib/Basic/OffloadArch.cpp
+59-59clang/test/Driver/offload-arch-translation-amdgpu.cu
+43-43clang/test/Driver/hip-phases.hip
+33-33clang/test/Driver/hip-binding.hip
+49-15clang/lib/Driver/ToolChains/CommonArgs.cpp
+43-12clang/lib/Driver/Driver.cpp
+461-164103 files not shown
+1,251-491109 files

LLVM/project 27f26dbllvm/docs AMDGPUUsage.rst, llvm/lib/TargetParser AMDGPUTargetParser.cpp Triple.cpp

AMDGPU: Introduce amdgpu triple arch

Move towards using the triple for representing incompatible
ISA changes. Use the subarch field to represent the various
incompatible cases. Previously we pretended a single triple arch
was universally compatible, and only distinguished by function
level subtargets. Move towards using distinct triples to enable
more sophisticated toolchain handling in the future, like proper
runtime library linking.

Introduce a new subarch per unique ISA, but also introduce
"major subarches" which are compatible by a set of covered
minor ISA versions. These map to the existing generic targets.
There are a few placeholder subarch entries, which currently
have missing backing generic arches for codegen.

This should be the preferred triple arch name going forward,
but is treated as an alias of amdgcn. This does not yet change
clang to emit the new triples.

    [2 lines not shown]
DeltaFile
+553-439llvm/docs/AMDGPUUsage.rst
+417-0llvm/unittests/TargetParser/TargetParserTest.cpp
+239-11llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+177-0llvm/test/CodeGen/AMDGPU/target-id-from-triple.ll
+147-15llvm/lib/TargetParser/Triple.cpp
+138-12llvm/unittests/TargetParser/TripleTest.cpp
+1,671-47772 files not shown
+2,507-68378 files

LLVM/project 6ce05adlibcxx/cmake/caches AndroidNDK.cmake, libcxx/vendor/android android_assertion_handler.in

[libc++] Add Android assertion handler (#198831)

We're in the process of increasing the use of libc++ hardening in
Android. The handlers we're using deviate from the defaults in two ways:

- All handlers are `nomerge` for better postmortem crash attribution
- `_LIBCPP_VERBOSE_ABORT` is wrapped by a `NOINLINE` function to reduce
  binary size overhead slightly (on x86_64, the diff is ~9B per call
  to _LIBCPP_VERBOSE_ABORT).

This patch introduces a custom handler for Android with these properties.
DeltaFile
+58-0libcxx/vendor/android/android_assertion_handler.in
+1-0libcxx/cmake/caches/AndroidNDK.cmake
+59-02 files

LLVM/project b1b9198flang/lib/Semantics resolve-names.cpp, flang/test/Semantics stmt-func04.f90 bug121973.f90

[flang] Implement check for statement function dummy argument names (#204417)

Implement F2023 19.4.2 conformance check for statement function dummy
argument names

Fixes: #203820 

F2023 19.4.2 permits a statement function dummy argument to share its
name with an **accessible** identifier only when that identifier is a scalar
variable.  Flang previously accepted all such clashes silently.

```fortran
subroutine s
  real :: arr(10)
  real :: ok
  f(arr) = arr + 1   ! error: arr is an array
  h(ok)  = ok + 1    ! ok: scalar variable shadowing is permitted
end subroutine
```

Assisted-by: Claude
DeltaFile
+119-0flang/test/Semantics/stmt-func04.f90
+26-0flang/lib/Semantics/resolve-names.cpp
+1-0flang/test/Semantics/bug121973.f90
+146-03 files

OpenBSD/ports crrbqTAmeta/tor-browser Makefile, www/tor-browser Makefile.inc

   Tor Browser: update to 15.0.17
VersionDeltaFile
1.126+4-4www/tor-browser/browser/distinfo
1.72+2-2www/tor-browser/noscript/distinfo
1.131+2-2meta/tor-browser/Makefile
1.79+1-1www/tor-browser/noscript/Makefile
1.128+1-1www/tor-browser/Makefile.inc
+10-105 files

LLVM/project 0ca111allvm/test/CodeGen/AArch64 machine-cp-spill-chain-across-call.mir

Revert "[MCP] Add test case to demonstrate issue with spill copy elimination (NFC)" (#207025)

Reverts llvm/llvm-project#206855
DeltaFile
+0-53llvm/test/CodeGen/AArch64/machine-cp-spill-chain-across-call.mir
+0-531 files

LLVM/project a811d8fllvm/test/tools/llvm-pdbutil dbi-section-contribs-ver60-yaml.test dbi-section-contribs-v2-yaml.test, llvm/tools/llvm-pdbutil YAMLOutputStyle.cpp llvm-pdbutil.cpp

[llvm-pdbutil] Include DBI section contribs in YAML (#191624)

The DBI section contribs stream is required for line information in
WinDBG and VS - otherwise, you can't set line breakpoints. With this PR,
we generate and parse it in yaml2pdb/pdb2yaml.

LLVM can't generate the `SectionContrib2` (`SC2`) record, so we don't
support this in yaml2pdb. At least in my small test, MSVC didn't
generate that record either.
DeltaFile
+193-0llvm/test/tools/llvm-pdbutil/dbi-section-contribs-ver60-yaml.test
+36-0llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
+31-4llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
+28-0llvm/tools/llvm-pdbutil/PdbYaml.cpp
+25-0llvm/test/tools/llvm-pdbutil/dbi-section-contribs-v2-yaml.test
+20-0llvm/tools/llvm-pdbutil/PdbYaml.h
+333-43 files not shown
+340-49 files

FreeNAS/freenas 8d9278bsrc/middlewared/middlewared/plugins/audit audit.py, src/middlewared/middlewared/plugins/zfs_ utils.py

NAS-141620 / 25.10.5 / Fix dataset alert quota (by yocalebo) (#19239)

The UX hard-codes the default thresholds for dataset alerts to 80 and 95
and this matched what we did in our quota alert. However, this regressed
in 7f2a017cc59709defd05501740d8dd4525aac839 which coupled the quota
alert with our audit dataset. This reverts those changes and decouples
them so they're handled correctly. Essentially the default values for
the audit dataset do not match any non-audit dataset default values. The
audit alert tests come back clean.

Original PR: https://github.com/truenas/middleware/pull/19238

Co-authored-by: Caleb St. John <30729806+yocalebo at users.noreply.github.com>
DeltaFile
+20-4src/middlewared/middlewared/plugins/zfs_/utils.py
+1-1src/middlewared/middlewared/plugins/audit/audit.py
+21-52 files

LLVM/project 8e07732llvm/test/Transforms/SLPVectorizer non-power-of-2-buildvector.ll

Update for comments
DeltaFile
+23-23llvm/test/Transforms/SLPVectorizer/non-power-of-2-buildvector.ll
+23-231 files

FreeBSD/ports 90b0544filesystems/gvfs Makefile, filesystems/gvfs/files patch-use_fuser

filesystems/gvfs: Use fuser(1) in place of lsof(1) by default

- Import patch accepted upstream to allow using fuser(1) to check
  for busy mountpoints [1]
- Add option to allow choosing between fuser and lsof (fuser by
  default

This removes an hard dependency on lsof for this very commonly used
port.

[1] https://gitlab.gnome.org/GNOME/gvfs/-/merge_requests/321

Reviewed by:            gnome (fluffy)
Approved by:            gnome (fluffy)
Differential Revision:  https://reviews.freebsd.org/D56224
DeltaFile
+128-0filesystems/gvfs/files/patch-use_fuser
+12-3filesystems/gvfs/Makefile
+140-32 files

NetBSD/pkgsrc-wip 4f0f7bfavr-libc PLIST options.mk, avr-libc/patches patch-doc_api_Makefile.in

avr-libc: Update to 2.3.2

Remove option "doc" (hard to maintain and broken most of the time).
DeltaFile
+963-1,147avr-libc/PLIST
+0-95avr-libc/options.mk
+18-1avr-libc/COMMIT_MSG
+0-16avr-libc/patches/patch-doc_api_Makefile.in
+2-6avr-libc/Makefile
+3-4avr-libc/distinfo
+986-1,2692 files not shown
+988-1,2758 files

FreeNAS/freenas 428b787

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 07c3214

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 3cffbbesrc/middlewared/middlewared/alert/source quota.py, src/middlewared/middlewared/plugins/audit audit.py

NAS-141620 / 27.0.0-BETA.1 / Fix dataset alert quota (#19238)

The UX hard-codes the default thresholds for dataset alerts to 80 and 95
and this matched what we did in our quota alert. However, this regressed
in 7f2a017cc59709defd05501740d8dd4525aac839 which coupled the quota
alert with our audit dataset. This reverts those changes and decouples
them so they're handled correctly. Essentially the default values for
the audit dataset do not match any non-audit dataset default values. The
audit alert tests come back clean.
DeltaFile
+20-4src/middlewared/middlewared/plugins/zfs_/utils.py
+0-2src/middlewared/middlewared/alert/source/quota.py
+1-1src/middlewared/middlewared/plugins/audit/audit.py
+21-73 files