FreeBSD/ports c93cd44sysutils/xbatt distinfo Makefile

Revert "sysutils/xbatt: Update to 1.3"

Upsteam admits xbatt 1.3 does not work under FreeBSD.

This reverts commit 403637c28a5a20e47c6b349044d1430486c41326.
DeltaFile
+3-5sysutils/xbatt/Makefile
+3-3sysutils/xbatt/distinfo
+6-82 files

FreeNAS/freenas 2cb062asrc/middlewared/middlewared/test/integration/utils alert.py, tests/api2 test_alert_oneshot.py test_alert_classes.py

Alert integration tests
DeltaFile
+454-10tests/api2/test_alert.py
+183-0tests/api2/test_alert_service.py
+121-5src/middlewared/middlewared/test/integration/utils/alert.py
+0-84tests/api2/test_070_alertservice.py
+38-22tests/api2/test_alert_classes.py
+47-0tests/api2/test_alert_oneshot.py
+843-1213 files not shown
+883-1429 files

LLVM/project cf2a098flang/include/flang/Semantics openmp-modifiers.h, flang/lib/Semantics check-omp-variant.cpp check-omp-structure.h

[flang][OpenMP] Remove OmpVerifyModifiers

Verification of clause modifiers is now done in a single place.
The OmpVerifyModifiers function was left in place, but was reduced
to always return "true".

Remove the definition and all calls to it.

The large amount of apparent changes is mostly due to unindenting
and reformatting previously indented code.
DeltaFile
+175-265flang/lib/Semantics/check-omp-structure.cpp
+44-49flang/lib/Semantics/check-omp-loop.cpp
+0-6flang/include/flang/Semantics/openmp-modifiers.h
+0-2flang/lib/Semantics/check-omp-variant.cpp
+0-2flang/lib/Semantics/check-omp-structure.h
+219-3245 files

LLVM/project c0b8044flang/include/flang/Parser openmp-utils.h, flang/lib/Semantics check-omp-structure.cpp

[flang][OpenMP] Implement verification of modifier sets

Modifier sets and modifier groups are the modifier analogues of clause
sets and clause groups. In the OpenMP specification, modifier groups
have properties that are independent of the clause on which a member of
the group is specified, whereas modifier sets are local to clauses.

The implementation of modifier groups is identical to that of groups,
the only exception is that modifier sets don't have names that are
usable in diagnostic messages.
DeltaFile
+676-590llvm/lib/Frontend/OpenMP/OMPDescriptors.inc
+58-0flang/lib/Semantics/check-omp-structure.cpp
+47-0llvm/include/llvm/Frontend/OpenMP/OMPDescriptors.h
+32-1llvm/lib/Frontend/OpenMP/OMPDescriptors.cpp
+17-0llvm/include/llvm/Frontend/OpenMP/OMPDescriptors.h.inc
+10-1flang/include/flang/Parser/openmp-utils.h
+840-5921 files not shown
+841-5927 files

LLVM/project 6aa470cflang/include/flang/Parser openmp-utils.h parse-tree.h, flang/include/flang/Semantics openmp-modifiers.h

[flang][OpenMP] Move modifier verification out of header file

Since modifiers now have enum ids, verifying syntactical properties
of them no longer has to be type-based. Move the modifier verification
code out of a header file with some changes to use the numeric ids.

Some form of a connection between AST nodes for modifiers and the enum
ids is still required, now it's a static member of the modifier AST node.
DeltaFile
+2-366flang/include/flang/Semantics/openmp-modifiers.h
+250-44flang/lib/Semantics/check-omp-structure.cpp
+50-9flang/include/flang/Parser/parse-tree.h
+42-0flang/lib/Parser/openmp-utils.cpp
+41-0flang/include/flang/Parser/openmp-utils.h
+13-0flang/lib/Semantics/check-omp-structure.h
+398-4196 files not shown
+405-42412 files

OpenZFS/src 8aa9d77tests/zfs-tests/tests/functional/cli_root/zpool_expand zpool_expand_007_pos.ksh

ZTS: fix CDDL boilerplate in zpool_expand_007_pos.ksh

Commit 1b7143557 added this file with the old OpenSolaris-style CDDL
header (CDDL HEADER START/END wrappers, wrong URL).  Replace with the
current short-form CDDL boilerplate, as done in f836c9ee7 for the
block_cloning FIDEDUPERANGE tests.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Alexander Moch <mail at alexmoch.com>
Closes #18985
DeltaFile
+1-6tests/zfs-tests/tests/functional/cli_root/zpool_expand/zpool_expand_007_pos.ksh
+1-61 files

FreeBSD/src adf4c33sys/arm/broadcom/bcm2835 bcm2835_audio.c

bcm2835_audio: Remove wrong chn_intr()

chn_trigger() calls bcmchan_trigger() with the channel lock held.
However, bcmchan_trigger() calls chn_intr(), which also tries to lock,
which results in a lock recursion panic. chn_intr() is meant to be
called by the interrupt handler and not inside CHANNEL_TRIGGER()
methods. Remove the call altogether, the bcm2835_worker_play_start()
call that comes after is enough.

Fixes:          69cab2d1bfb5 ("Fix locking in bcm2835_audio driver")
Reported by:    Marco Devesas Campos <devesas.campos at gmail.com>
Tested by:      Marco Devesas Campos <devesas.campos at gmail.com>
Sponsored by:   The FreeBSD Foundation
MFC after:      3 days
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D59055

(cherry picked from commit f0778a6f9ba7045239a0055ebfbd7965d1f162c9)
DeltaFile
+0-1sys/arm/broadcom/bcm2835/bcm2835_audio.c
+0-11 files

NetBSD/src oV0C063sys/rump/librump/rumpkern vm.c

   rump: Handle uvm_wait tickets like the real kernel does.

   This should avoid trouble in any path that calls uvm_wait_prepare
   with spin locks held even though it's not going to sleep in uvm_wait,
   of which there are probably many more than just rump_hypermalloc --
   uvm_wait_prepare is supposed to be cheap enough not to be worth
   conditionalizing.  (Perhaps we should measure that, though.)

   PR kern/60636: rump on sparc64 totally broken still with vm.c rev 1.201

   Followup for:

   PR kern/58964: uvm: missing wakeup on uvmexp.free
   PR kern/60029: panic: cpu0: softints stuck for 16 seconds
VersionDeltaFile
1.203+77-19sys/rump/librump/rumpkern/vm.c
+77-191 files

FreeBSD/src 595e665usr.bin/ministat ministat.1 README

ministat.1: Match actual output

Fix a documentation discrepancy, where the implementation was updated to
use uncertainty propagation for the ratio of means, but the example
output in the manual page was left unchanged.

Update the manual page example from 70.7384% to 102.3% to reflect the
actual output.

While here, also update the example in the README.

Reviewed by:    ziaee
Fixes:          a304ad90e9ae ("Reduce the bogosity of ministat's % difference calculations.")
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D59157
DeltaFile
+2-5usr.bin/ministat/README
+2-2usr.bin/ministat/ministat.1
+4-72 files

FreeBSD/ports 403637csysutils/xbatt distinfo Makefile

sysutils/xbatt: Update to 1.3

Sources have been moved to github.
DeltaFile
+5-3sysutils/xbatt/Makefile
+3-2sysutils/xbatt/distinfo
+8-52 files

FreeBSD/ports 80e7835mail/xmail Makefile pkg-descr

mail/xmail: Add clarification note to pkg-message

xmail is the legacy X email client, not to be confused with the
Ubuntu xmail server.
DeltaFile
+3-0mail/xmail/pkg-descr
+1-1mail/xmail/Makefile
+4-12 files

FreeBSD/ports a38dc08astro/xphoon distinfo Makefile, astro/xphoon/files patch-Imakefile patch-xphoon.c

astro/xphoon: Update to 20140814

Switch from sourceforge to acme.com.

Obtained from:  NetBSD pkgsrc
DeltaFile
+0-42astro/xphoon/files/patch-dtime.c
+0-19astro/xphoon/files/patch-xphoon.c
+4-7astro/xphoon/files/patch-Imakefile
+6-4astro/xphoon/Makefile
+3-3astro/xphoon/distinfo
+13-755 files

LLVM/project 1be0906clang/lib/Sema HLSLExternalSemaSource.cpp, clang/test/AST/HLSL Textures-vector-AST.hlsl Textures-scalar-AST.hlsl

[HLSL] Implement TextureCubeArray
DeltaFile
+40-83clang/test/AST/HLSL/Textures-vector-AST.hlsl
+40-83clang/test/AST/HLSL/Textures-scalar-AST.hlsl
+21-0clang/lib/Sema/HLSLExternalSemaSource.cpp
+13-0clang/test/CodeGenHLSL/resources/Textures-Sample.hlsl
+13-0clang/test/CodeGenHLSL/resources/Textures-Gather.hlsl
+13-0clang/test/CodeGenHLSL/resources/Textures-CalculateLevelOfDetail.hlsl
+140-16620 files not shown
+277-16826 files

LLVM/project 312719eclang/lib/Sema HLSLBuiltinTypeDeclBuilder.cpp, clang/test/AST/HLSL Textures-vector-AST.hlsl Textures-scalar-AST.hlsl

[HLSL] Implement TextureCube for HLSL
DeltaFile
+541-518clang/test/AST/HLSL/Textures-scalar-AST.hlsl
+537-514clang/test/AST/HLSL/Textures-vector-AST.hlsl
+181-140clang/lib/Sema/HLSLBuiltinTypeDeclBuilder.cpp
+108-77clang/test/CodeGenHLSL/resources/Textures-SampleGrad.hlsl
+96-63clang/test/CodeGenHLSL/resources/Textures-Sample.hlsl
+86-53clang/test/CodeGenHLSL/resources/Textures-SampleCmp.hlsl
+1,549-1,36520 files not shown
+2,265-1,64226 files

LLVM/project 4719f90clang/test/AST/HLSL Textures-vector-AST.hlsl Textures-scalar-AST.hlsl, clang/test/CodeGenHLSL/resources Textures-Gather.hlsl Textures-SampleGrad.hlsl

[HLSL][NFC] Generalize and consolidate the texture tests

Many of the texture tests were parameterized specifically for Texture2D
and Texture2DArray, therefore retaining several 2D-specific literals,
including: the `hlsl::dimension` spelling, the width of the offset / ddx
/ ddy / LOD-location vectors, the operator[] index type and the
`spirv.Image` Dim operand.

Furthermore, the macro names used for parameterization was inconsistent
among test files.

This commit re-parameterizes the texture tests to generalize to more than
only 2D textures, and keeps the macro names consistent across test files.

Each test file now also has a comment describing each macro used in the
test.

This commit also moves 3 misplaced texture tests under
clang/test/SemaHLSL into clang/test/SemaHLSL/Resources.

    [2 lines not shown]
DeltaFile
+225-138clang/test/CodeGenHLSL/resources/Textures-Load.hlsl
+152-120clang/test/AST/HLSL/Textures-vector-AST.hlsl
+152-120clang/test/AST/HLSL/Textures-scalar-AST.hlsl
+100-52clang/test/CodeGenHLSL/resources/Textures-SampleGrad.hlsl
+81-19clang/test/SemaHLSL/Resources/Textures-Subscript.hlsl
+69-25clang/test/CodeGenHLSL/resources/Textures-Gather.hlsl
+779-47437 files not shown
+2,010-96543 files

LLVM/project b1fff1dflang/include/flang/Semantics openmp-modifiers.h, flang/lib/Semantics check-omp-variant.cpp check-omp-structure.h

[flang][OpenMP] Remove OmpVerifyModifiers

Verification of clause modifiers is now done in a single place.
The OmpVerifyModifiers function was left in place, but was reduced
to always return "true".

Remove the definition and all calls to it.

The large amount of apparent changes is mostly due to unindenting
and reformatting previously indented code.
DeltaFile
+175-265flang/lib/Semantics/check-omp-structure.cpp
+44-49flang/lib/Semantics/check-omp-loop.cpp
+0-6flang/include/flang/Semantics/openmp-modifiers.h
+0-2flang/lib/Semantics/check-omp-variant.cpp
+0-2flang/lib/Semantics/check-omp-structure.h
+219-3245 files

LLVM/project e68a496flang/include/flang/Parser openmp-utils.h, flang/lib/Semantics check-omp-structure.cpp

[flang][OpenMP] Implement verification of modifier sets

Modifier sets and modifier groups are the modifier analogues of clause
sets and clause groups. In the OpenMP specification, modifier groups
have properties that are independent of the clause on which a member of
the group is specified, whereas modifier sets are local to clauses.

The implementation of modifier groups is identical to that of groups,
the only exception is that modifier sets don't have names that are
usable in diagnostic messages.
DeltaFile
+676-590llvm/lib/Frontend/OpenMP/OMPDescriptors.inc
+58-0flang/lib/Semantics/check-omp-structure.cpp
+47-0llvm/include/llvm/Frontend/OpenMP/OMPDescriptors.h
+32-1llvm/lib/Frontend/OpenMP/OMPDescriptors.cpp
+17-0llvm/include/llvm/Frontend/OpenMP/OMPDescriptors.h.inc
+10-1flang/include/flang/Parser/openmp-utils.h
+840-5921 files not shown
+841-5927 files

LLVM/project 57eb362flang/include/flang/Parser openmp-utils.h parse-tree.h, flang/include/flang/Semantics openmp-modifiers.h

[flang][OpenMP] Move modifier verification out of header file

Since modifiers now have enum ids, verifying syntactical properties
of them no longer has to be type-based. Move the modifier verification
code out of a header file with some changes to use the numeric ids.

Some form of a connection between AST nodes for modifiers and the enum
ids is still required, now it's a static member of the modifier AST node.
DeltaFile
+2-366flang/include/flang/Semantics/openmp-modifiers.h
+250-44flang/lib/Semantics/check-omp-structure.cpp
+50-9flang/include/flang/Parser/parse-tree.h
+42-0flang/lib/Parser/openmp-utils.cpp
+41-0flang/include/flang/Parser/openmp-utils.h
+12-0flang/lib/Semantics/check-omp-structure.h
+397-4196 files not shown
+404-42412 files

LLVM/project eb51155llvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU AMDGPUTargetParser.td

AMDGPU: Add SubArchSpelling override to the TargetParser TableGen (#218500)

Add an optional SubArchSpelling field for targets where the subarch name
isn't trivially derivable from it's gfxNMK name.

Co-authored-by: Claude <noreply at anthropic.com>
DeltaFile
+64-23llvm/utils/TableGen/Basic/AMDGPUTargetDefEmitter.cpp
+44-0llvm/test/TableGen/AMDGPUTargetDefSubArchSpelling.td
+6-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+4-0llvm/lib/Target/AMDGPU/AMDGPUTargetParser.td
+4-0llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+122-235 files

LLVM/project ab9c222llvm/include/llvm/CodeGen/GlobalISel LegalizerHelper.h, llvm/lib/CodeGen/GlobalISel LegalizerHelper.cpp

[AArch64][GlobalISel] Add lowering for s/umul.fix.sat (#217221)

This extends the existing s/umul.fix lowering to handle the saturating
versions of the instructions. They use a TruncSSatS or TruncUSatU
instead of the trunc, keeping the implementation simple. That does
require truncsat lowering to be added to allow those operations to
subsequently lower if needed.
DeltaFile
+745-344llvm/test/CodeGen/AArch64/smul_fix_sat.ll
+455-233llvm/test/CodeGen/AArch64/umul_fix_sat.ll
+59-8llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
+12-10llvm/test/CodeGen/AArch64/GlobalISel/legalizer-info-validation.mir
+5-2llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
+1-0llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
+1,277-5976 files

FreeBSD/ports ef60c26security/cvechecker Makefile

security/cvechecker: mark as deprecated

This project has been declared EOL on Github on 2025-12-09 by its
author, after having received no commits for several years.

Removal of this port is planned before the end of September 2026.
DeltaFile
+4-1security/cvechecker/Makefile
+4-11 files

NetBSD/src npGKXRbsys/rump/librump/rumpkern vm.c

   rump_hypermalloc: Don't get a uvm_wait ticket if we won't uvm_wait.

   This path may be taken with a spin lock held, which means we can't
   take pdaemonmtx (IPL_NONE).

   PR kern/60636: rump on sparc64 totally broken still with vm.c rev 1.201

   Followup for:

   PR kern/58964: uvm: missing wakeup on uvmexp.free
   PR kern/60029: panic: cpu0: softints stuck for 16 seconds
VersionDeltaFile
1.202+6-4sys/rump/librump/rumpkern/vm.c
+6-41 files

LLVM/project 5092c6ellvm/cmake/modules FindDIASDK.cmake

[cmake] Fix DIA SDK detection from VSINSTALLDIR (#218499)

The DIA SDK wasn't automatically detected after #160354, because
`if($Env{VSINSTALLDIR})` would be evaluated as
[`if(<string>)`](https://cmake.org/cmake/help/latest/command/if.html#string)
after expansion. This always evaluates to false unless it's one of the
true constants like `1` or `ON`. In turn the DIA SDK was never
automatically detected.

The current 23.1.0 RC builds are also built without it even though the
SDK should be available (e.g. `llvm-pdbutil diadump <pdb>` fails).

The fix is to use [`if(DEFINED
ENV{<name>})`](https://cmake.org/cmake/help/latest/command/if.html#defined).
DeltaFile
+1-1llvm/cmake/modules/FindDIASDK.cmake
+1-11 files

LLVM/project 45635b1offload/plugins-nextgen/amdgpu/src rtl.cpp, offload/plugins-nextgen/common/include PluginInterface.h

[offload] Use pinned memory for KLE

Reduce kernel launch latency by using the fast path "pinned host memory
-> device memory" for submitting the kernel launch environment to the
device.

Claude assisted with this patch.
DeltaFile
+71-0offload/test/offloading/kernel_launch_environment.c
+47-2offload/plugins-nextgen/common/src/PluginInterface.cpp
+14-0offload/plugins-nextgen/common/include/PluginInterface.h
+2-0offload/plugins-nextgen/amdgpu/src/rtl.cpp
+134-24 files

LLVM/project 9ce007coffload/include/Shared APITypes.h, offload/plugins-nextgen/common/include PluginInterface.h

[offload] Thread allocation kind through async info (#214755)

Also fix some leaks in nowait regions, where async can only release
memory if it notices in queryAsync that the work is completed.

Claude assisted with this patch.
DeltaFile
+36-7offload/plugins-nextgen/common/src/PluginInterface.cpp
+5-2offload/include/Shared/APITypes.h
+2-2offload/plugins-nextgen/common/include/PluginInterface.h
+43-113 files

FreeBSD/ports 7acb379devel/avrdude distinfo Makefile

devel/avrdude: upgrade to version 8.2

As there is an option to build a PyQt-based GUI now, add this
as an option to the port as well.
DeltaFile
+17-1devel/avrdude/pkg-plist
+11-3devel/avrdude/Makefile
+3-3devel/avrdude/distinfo
+31-73 files

LLVM/project 33cc3d5offload/test/offloading/CUDA blocking_stream_semantics.cu, offload/test/offloading/HIP blocking_stream_semantics.hip

unify tests
DeltaFile
+0-131offload/test/offloading/CUDA/blocking_stream_semantics.cu
+129-0offload/test/offloading/language/blocking_stream_semantics.cpp
+0-125offload/test/offloading/HIP/blocking_stream_semantics.hip
+110-0offload/test/offloading/language/stream_api.cpp
+102-0offload/test/offloading/language/get_errs.cpp
+100-0offload/test/offloading/language/devicesync_streams.cpp
+441-25646 files not shown
+1,116-1,95352 files

LLVM/project 358fff0llvm/lib/Target/AMDGPU SIFoldOperands.cpp, llvm/test/CodeGen/AMDGPU trans-bf16-omod.ll

[AMDGPU] Add OMOD folding for TRANS bfloat16 instructions (#218286)

Enable omod folding optimization for transcendental bfloat16
instructions. This patch extends SIFoldOperands to recognize and fold
multiplication or division patterns following TRANS BF16 instructions
into the OMOD field, allowing operations like `rsq.bf16(x) * 4.0` to be
encoded as `rsq.bf16(x) mul:4`.

Key implementation details:
  1. Added V_PK_MUL_BF16 support in isOMod() and getOModValue():
- Detects multiplication by 2.0 (0x4000), 4.0 (0x4080), or 0.5 (0x3F00)
   - Only folds when the immediate is in src1 operand
   - Allows op_sel_hi modifier but blocks other modifiers (NEG, ABS)

  2. Added V_PK_ADD_BF16 support for x+x pattern:
   - Recognizes when both operands are the same register
   - Folds to MUL2 OMOD

  3. Enhanced tryFoldOMod() for real-true16 mode:

    [10 lines not shown]
DeltaFile
+318-0llvm/test/CodeGen/AMDGPU/trans-bf16-omod.ll
+94-1llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
+412-12 files

LLVM/project 9cce67allvm/test/Transforms/SLPVectorizer/X86 reduce-or-bitpack.ll

[SLP][NFC]Add or reduction to bitcasts tests, NFC



Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/218509
DeltaFile
+269-0llvm/test/Transforms/SLPVectorizer/X86/reduce-or-bitpack.ll
+269-01 files

FreeBSD/ports 090689fwww/drupal10 Makefile distinfo

www/drupal10: Update to 10.6.15

- Drop mantainership
DeltaFile
+37-3www/drupal10/pkg-plist
+3-3www/drupal10/distinfo
+2-2www/drupal10/Makefile
+42-83 files