FreeBSD/ports cae741fsecurity/py-ropper distinfo Makefile

security/py-ropper: Update to 1.13.13
DeltaFile
+5-4security/py-ropper/Makefile
+3-3security/py-ropper/distinfo
+8-72 files

LLVM/project 88bc022llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/AArch64 sibling-loops-different-trip-counts.ll

[SLP]Fix loop-aware cost for gathers crossing sibling-loop boundaries

Scale such gathers by the common parent nest, not by the sibling's
trip count.

Fixes #209325

Reviewers: 

Pull Request: https://github.com/llvm/llvm-project/pull/224700
DeltaFile
+9-21llvm/test/Transforms/SLPVectorizer/AArch64/sibling-loops-different-trip-counts.ll
+18-3llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+27-242 files

LLVM/project 1e02641clang/lib/CodeGen CGVTables.cpp, clang/test/CodeGenCXX/RelativeVTablesABI override-pure-virtual-method.cpp deleted-virtual-method.cpp

[clang][CodeGen] Emit offsets to __cxa_pure/deleted_virtual under relative vtables (#224148)

Previously, pure and deleted virtual functions were emitted as null (0)
in relative vtables as a temporary workaround for PR43094 (#42439).
Before dso_local_equivalent, taking relative offsets to external runtime
functions required generating local symbols, which caused LLD COMDAT
group merging conflicts for classes defined across multiple TUs.

With dso_local_equivalent, we can now emit direct relative offsets to
__cxa_pure_virtual and __cxa_deleted_virtual without generating local
aliases or encountering COMDAT signature clashes.
DeltaFile
+17-0clang/test/CodeGenCXX/RelativeVTablesABI/deleted-virtual-method.cpp
+0-10clang/lib/CodeGen/CGVTables.cpp
+3-4clang/test/CodeGenCXX/RelativeVTablesABI/override-pure-virtual-method.cpp
+20-143 files

FreeBSD/ports 34dcbb7net/slapi-nis Makefile

net/slapi-nis: Use USES=ldap

Follow the framework default instead of pinning net/openldap26-client.

PR:             298509
Sponsored by:   Netzkommune GmbH
DeltaFile
+2-3net/slapi-nis/Makefile
+2-31 files

LLVM/project 0c2bb8allvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp, llvm/test/CodeGen/X86 combine-mulo.ll combine-mul.ll

[DAG] Canonicalize a non-opaque constant to the RHS of MUL over an opaque one (#224685)

Fix a case noticed in #224494 where we fail to canonicalize a non-opaque
constant to the RHS when both operands are constant, but one of them is
opaque. ("opaque" means created by ConstantHoisting)

We probably have many other instances of this issue, and I do not plan
to pursue this area further.

Assisted-by: Claude Fable 5.1
DeltaFile
+21-2llvm/test/CodeGen/X86/combine-mul.ll
+5-3llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+2-3llvm/test/CodeGen/X86/combine-mulo.ll
+28-83 files

HardenedBSD/src 43415c5sys/dev/dpaa qman.h sec_var.h, sys/kern sched_ule.c sched_4bsd.c

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+2,291-0sys/dev/dpaa/sec_dev.c
+400-0sys/dev/dpaa/sec_jr.c
+162-0sys/dev/dpaa/sec_var.h
+46-33sys/kern/sched_4bsd.c
+46-25sys/kern/sched_ule.c
+26-1sys/dev/dpaa/qman.h
+2,971-5911 files not shown
+3,052-9317 files

HardenedBSD/src 13123a9sys/dev/dpaa qman.h sec_var.h, sys/kern sched_ule.c sched_4bsd.c

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/pledge
DeltaFile
+2,291-0sys/dev/dpaa/sec_dev.c
+400-0sys/dev/dpaa/sec_jr.c
+162-0sys/dev/dpaa/sec_var.h
+46-33sys/kern/sched_4bsd.c
+46-25sys/kern/sched_ule.c
+26-1sys/dev/dpaa/qman.h
+2,971-5911 files not shown
+3,052-9317 files

HardenedBSD/src 958f5d0sys/kern kern_umtx.c

Merge remote-tracking branch 'rad/hardened/15-stable/main' into hardened/15-stable/pledge
DeltaFile
+12-8sys/kern/kern_umtx.c
+12-81 files

HardenedBSD/src c6ef161sys/dev/dpaa qman.h sec_var.h, sys/kern sched_ule.c sched_4bsd.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+2,291-0sys/dev/dpaa/sec_dev.c
+400-0sys/dev/dpaa/sec_jr.c
+162-0sys/dev/dpaa/sec_var.h
+46-33sys/kern/sched_4bsd.c
+46-25sys/kern/sched_ule.c
+26-1sys/dev/dpaa/qman.h
+2,971-5911 files not shown
+3,052-9317 files

HardenedBSD/src 8efcef6sys/kern kern_umtx.c

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+12-8sys/kern/kern_umtx.c
+12-81 files

FreeBSD/src f014795usr.sbin/virtual_oss/virtual_oss main.c

virtual_oss(8): Fix cuse.ko check

virtual_oss(8) checks if cuse(3) is loaded. However, kldload(2) ends up calling
kern_kldload that checks permissions first. It is only later on in
linker_load_module that -EEXIST is returned if the module is already loaded.
That means that users that can't load modules, always get a -EPERM error first
even if cuse.ko is already loaded and ready to use.

Change it to check if the kernel module is already loaded and try load it if it
isn't.

In addition move the program's arguments parsing early on because otherwise, a
user can't even access the program's help if cuse.ko is not loaded and the
user doesn't have permissions to do it.

Approved by:            obiwac@
Differential Revision:  https://reviews.freebsd.org/D59621
DeltaFile
+11-5usr.sbin/virtual_oss/virtual_oss/main.c
+11-51 files

LLVM/project 320c702llvm/lib/Transforms/Utils RelLookupTableConverter.cpp

[NFC][RelLookupTableConverter] Get IndexWidth directly from GEP type (#224454)

`Load->getPointerOperand()` is always the `GEP` prior to it, so just
reuse the GEP rather than querying the Load again.
DeltaFile
+1-2llvm/lib/Transforms/Utils/RelLookupTableConverter.cpp
+1-21 files

LLVM/project 404adb2llvm/lib/Target/AMDGPU AMDGPUFeatures.td AMDGPU.td, llvm/lib/TargetParser AMDGPUTargetParser.cpp

[AMDGPU] Add getLDSAllocGranule to TargetParser

Model LDS allocation granularity with subtarget features derived from
AMDGPUGenericAnyFeature. Generic targets can select a granularity present
on any covered GPU, independently of their addressable LDS size.

Expose the byte-valued query for GPUKind and subarch and consolidate
backend users on it. gfx9-4-generic uses gfx950's 1280-byte granule while
retaining its 64 KiB addressable LDS capacity.

Test feature membership, granularity assignments, query overloads and
fallbacks, and generic-target LDS block rounding.

Change-Id: Ic0c9345e7657ec3c6978a646628598cb7608b390
DeltaFile
+66-0llvm/unittests/TargetParser/TargetParserTest.cpp
+42-0llvm/test/TableGen/AMDGPUTargetDefLDSAllocGranularity.td
+34-1llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+33-0llvm/test/CodeGen/AMDGPU/lds-size-gfx9-4-generic.ll
+23-3llvm/lib/Target/AMDGPU/AMDGPU.td
+14-0llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
+212-46 files not shown
+226-3012 files

LLVM/project 4d615a4llvm/lib/Target/AMDGPU AMDGPU.td

Add wrapper for GenericAnyFeature

Change-Id: Ibaf7973bde6bb5a2acf68b7d53aedb8e098d0334
DeltaFile
+48-36llvm/lib/Target/AMDGPU/AMDGPU.td
+48-361 files

LLVM/project 2760906llvm/lib/Target TargetMachineC.cpp

llvm-c: Compute the DataLayout from the triple and ABI (#224588)

Drop a use of createDataLayout

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+5-2llvm/lib/Target/TargetMachineC.cpp
+5-21 files

LLVM/project 1e592bbflang/lib/Optimizer/OpenMP DoConcurrentConversion.cpp, flang/test/Transforms/DoConcurrent nested_derived_type_device.f90

[Flang][OpenMP] Support nested derived types in DO CONCURRENT device conversion (#218963)

Fixes #218760.

When converting `DO CONCURRENT` loops to OpenMP device targets, Flang
previously aborted whenever a live-in derived type contained a nested
derived-type component.

Nested derived types containing only non-allocatable components do not
require special handling: mapping the containing record covers the
storage of its nested components. When a nested component contains an
allocatable member, however, an implicit mapper is required to properly
map the dynamically allocated storage.

This patch removes the unconditional nested-record NYI and updates the
implicit mapper check to recurse through the Fortran element type of
derived-type components. In particular, this handles array-valued nested
derived-type components, which are lowered as `fir::SequenceType`.


    [14 lines not shown]
DeltaFile
+72-0flang/test/Transforms/DoConcurrent/nested_derived_type_device.f90
+59-0offload/test/offloading/fortran/do-concurrent-to-omp-nested-derived-type.f90
+22-22flang/lib/Optimizer/OpenMP/DoConcurrentConversion.cpp
+153-223 files

FreeNAS/freenas 3e5b30asrc/middlewared/middlewared/plugins/nvmet namespace.py, tests/sharing_protocols/nvmet test_nvmet_tcp.py

NAS-143945 / 27.0.0-BETA.1 / Turn off ZVOL threading for NVMe-oF namespaces (#19812)

Mirrors the existing iSCSI behavior: disable multi-threading on a zvol
while it's exposed as an NVMe-oF namespace, and restore it afterward.

Add `test__zvol_namespace_volthreading`

(cherry picked from commit 5b68734d26d7a5b948b76a63fd2fbacd867da230)
DeltaFile
+97-1src/middlewared/middlewared/plugins/nvmet/namespace.py
+24-0tests/sharing_protocols/nvmet/test_nvmet_tcp.py
+121-12 files

LLVM/project 30ae0c3clang/lib/Options DriverOptions.cpp, llvm/include/llvm/Option Option.h OptTable.h

[Option] Shrink Info from 60 to 40 bytes (#224374)

Drop ID, which is the entry's 1-based position, and narrow
PrefixesOffset and SubCommandIDsOffset to 16 bits like GroupID and
AliasID.

Move help text variants to a side table. The .td HelpTextForVariants
class allows one variant per option and only 5 clang options use it,
yet every entry carries a 12-byte std::array of visibility lists. Store
(visibility mask, text offset) pairs in a separate table, indexed by a
16-bit field in the entry's padding.

clang's table shrinks from 232 KB to 155 KB and Options.inc from 1.70 MB
to 1.29 MB. --help output is unchanged.

Aided by Opus 5
DeltaFile
+41-52llvm/utils/TableGen/OptionParserEmitter.cpp
+42-30llvm/include/llvm/Option/OptTable.h
+7-24llvm/include/llvm/Option/Option.h
+23-0llvm/unittests/Option/OptionParsingTest.cpp
+5-0llvm/unittests/Option/Opts.td
+5-0clang/lib/Options/DriverOptions.cpp
+123-1061 files not shown
+125-1087 files

LLVM/project 01ef3ffllvm/test/Transforms/LowerTypeTests cfi-jumptable-hotness-summary.ll cfi-jumptable-hotness.ll

[NFC][LowerTypeTests] Expand tests for CFI jump table hotness ordering (#223848)

Expand pre-commit test coverage to establish the baseline CFI jump table
layout before implementing hotness-based reordering in
https://github.com/llvm/llvm-project/pull/221046.

We expand these tests to verify we accurately track hotness data
originating from `cfi.functions` metadata, BlockFrequencyInfo (BFI)
counts, and IR function attributes (hot/cold). By covering these inputs,
we ensure the correct hotness tier is propagated for layout decisions
across different profile sources and LTO targets.

These tests verify the baseline declaration-order layout where functions
within each strict type are placed without hotness consideration, making
the subsequent reordering diff explicit and easy to review.

PR Stack:
* https://github.com/llvm/llvm-project/pull/220776
* https://github.com/llvm/llvm-project/pull/221043

    [6 lines not shown]
DeltaFile
+160-12llvm/test/Transforms/LowerTypeTests/cfi-jumptable-hotness.ll
+53-47llvm/test/Transforms/LowerTypeTests/cfi-jumptable-hotness-summary.ll
+213-592 files

FreeNAS/freenas f9e689e

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 5b68734src/middlewared/middlewared/plugins/nvmet namespace.py, tests/sharing_protocols/nvmet test_nvmet_tcp.py

NAS-143945 / 27.0.0-BETA.1 / Turn off ZVOL threading for NVMe-oF namespaces (#19812)

Mirrors the existing iSCSI behavior: disable multi-threading on a zvol
while it's exposed as an NVMe-oF namespace, and restore it afterward.

Add `test__zvol_namespace_volthreading`
DeltaFile
+96-0src/middlewared/middlewared/plugins/nvmet/namespace.py
+24-0tests/sharing_protocols/nvmet/test_nvmet_tcp.py
+120-02 files

OpenBSD/ports xYzODAkx11/gnome/shell Makefile, x11/gnome/shell/patches patch-js_ui_components_keyring_js

   Revert; while it helped a bit, the race is still there.
VersionDeltaFile
1.309+1-1x11/gnome/shell/Makefile
1.2+0-0x11/gnome/shell/patches/patch-js_ui_components_keyring_js
+1-12 files

FreeBSD/ports cb9f763devel/py-minidump distinfo Makefile

devel/py-minidump: Update to 0.0.23
DeltaFile
+5-2devel/py-minidump/Makefile
+3-3devel/py-minidump/distinfo
+8-52 files

HardenedBSD/ports cb9f763devel/py-minidump distinfo Makefile

devel/py-minidump: Update to 0.0.23
DeltaFile
+5-2devel/py-minidump/Makefile
+3-3devel/py-minidump/distinfo
+8-52 files

LLVM/project a06d916llvm/lib/Transforms/IPO MergeFunctions.cpp, llvm/test/Transforms/MergeFunc coff-weak-alias-object.ll coff-weak-alias.ll

[MergeFunctions] keep the symbol of a function an alias points at on COFF (#222024)

On COFF an alias is a weak external, which must name the symbol it
resolves to. When that target is local there is no such name, so
`WinCOFFWriter::assignSectionNumbers` invents a
`.weak.<alias>.default.<sym>` fallback named after unrelated contents of
the object. Two objects defining the same alias then disagree and the
link fails with `LNK1227` (hit building the Swift toolchain on Windows).

MergeFunctions reaches that state when the function an alias points at
is replaced by, or aliased to, an internal one. On COFF, decline both:
keep a thunk so the alias goes on naming an external definition. The
merge still happens, and non-COFF is untouched.
DeltaFile
+102-0llvm/test/Transforms/MergeFunc/coff-weak-alias.ll
+39-0llvm/test/Transforms/MergeFunc/coff-weak-alias-object.ll
+19-2llvm/lib/Transforms/IPO/MergeFunctions.cpp
+160-23 files

LLVM/project 6de65b8llvm/lib/Target/AMDGPU AMDGPU.td, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp

[AMDGPU] Add getLDSAllocGranule to TargetParser

Model LDS allocation granularity with subtarget features derived from
AMDGPUGenericAnyFeature. Generic targets can select a granularity present
on any covered GPU, independently of their addressable LDS size.

Expose the byte-valued query for GPUKind and subarch and consolidate
backend users on it. gfx9-4-generic uses gfx950's 1280-byte granule while
retaining its 64 KiB addressable LDS capacity.

Test feature membership, granularity assignments, query overloads and
fallbacks, and generic-target LDS block rounding.

Change-Id: Ic0c9345e7657ec3c6978a646628598cb7608b390
DeltaFile
+66-0llvm/unittests/TargetParser/TargetParserTest.cpp
+42-0llvm/test/TableGen/AMDGPUTargetDefLDSAllocGranularity.td
+34-1llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+33-0llvm/test/CodeGen/AMDGPU/lds-size-gfx9-4-generic.ll
+23-3llvm/lib/Target/AMDGPU/AMDGPU.td
+0-14llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+198-186 files not shown
+226-3012 files

FreeBSD/ports 3f48146graphics/nsxiv distinfo Makefile

graphics/nsxiv: Update to 34
DeltaFile
+10-8graphics/nsxiv/Makefile
+3-3graphics/nsxiv/distinfo
+13-112 files

HardenedBSD/ports 3f48146graphics/nsxiv distinfo Makefile

graphics/nsxiv: Update to 34
DeltaFile
+10-8graphics/nsxiv/Makefile
+3-3graphics/nsxiv/distinfo
+13-112 files

HardenedBSD/ports 88d9678games/oneko-sakura pkg-descr Makefile, games/oneko-sakura/files patch-Imakefile

games/oneko-sakura: Take maintainership

Switch from REINPLACE_CMD to patch file.

PR:             298594
Approved by:    fluffy (mentor)
DeltaFile
+4-16games/oneko-sakura/Makefile
+14-0games/oneko-sakura/files/patch-Imakefile
+0-1games/oneko-sakura/pkg-descr
+18-173 files

FreeBSD/ports 88d9678games/oneko-sakura pkg-descr Makefile, games/oneko-sakura/files patch-Imakefile

games/oneko-sakura: Take maintainership

Switch from REINPLACE_CMD to patch file.

PR:             298594
Approved by:    fluffy (mentor)
DeltaFile
+4-16games/oneko-sakura/Makefile
+14-0games/oneko-sakura/files/patch-Imakefile
+0-1games/oneko-sakura/pkg-descr
+18-173 files