LLVM/project 9bd12f6clang/test/CodeGenHLSL/resources resources-in-structs-method-call.hlsl

[HLSL][NFC] Update test check to be more specific (#207232)

If the repo path contains "main", the test was matching it against the
ModuleID in the output because it contains a path to the test file, and
the follow-up checks were failing.

Based on feedback in
https://github.com/llvm/llvm-project/pull/206596#discussion_r3510725223.
DeltaFile
+1-1clang/test/CodeGenHLSL/resources/resources-in-structs-method-call.hlsl
+1-11 files

FreeNAS/freenas 1fe3307src/middlewared/middlewared/plugins/pool_ utils.py dataset.py

Gate ZFS deduplication on pool creation

This commit adds changes to extend the ZFS deduplication license gate to pool creation, which previously let a pool's root dataset be created with dedup enabled on a system that is not entitled to it. The check is factored into a shared validate_dedup_license helper so pool.create and the dataset create/update path enforce it identically and stay in sync.
DeltaFile
+29-0src/middlewared/middlewared/plugins/pool_/utils.py
+2-17src/middlewared/middlewared/plugins/pool_/dataset.py
+3-1src/middlewared/middlewared/plugins/pool_/pool.py
+34-183 files

FreeBSD/doc 37c7f6cwebsite/content/ru/releases/15.1R errata.adoc

website/ru: Update releases/15.1R/errata.adoc

Update to EN 4eb8e14cf00470133959e55fc319de5834b00188
DeltaFile
+3-4website/content/ru/releases/15.1R/errata.adoc
+3-41 files

Illumos/gate 961aab6usr/src/test/test-runner/cmd run

18194 test-runner default output directory doesn't work
Reviewed by: Toomas Soome <tsoome at me.com>
Reviewed by: Robert Mustacchi <rm at fingolfin.org>
Approved by: Dan McDonald <danmcd at edgecast.io>
DeltaFile
+5-1usr/src/test/test-runner/cmd/run
+5-11 files

LLVM/project 76f4a8dclang/lib/Sema SemaDeclCXX.cpp, clang/test/SemaTemplate ctad.cpp

[clang] fix crash-on-invalid with deduction guides

Fix crash when a template template parameter specialization is used as a deduced type.

This is a regression since Clang 22, and this will be backported, so no release
notes.

Fixes #203261
DeltaFile
+17-0clang/test/SemaTemplate/ctad.cpp
+4-3clang/lib/Sema/SemaDeclCXX.cpp
+21-32 files

Illumos/gate 5d4c552usr/src Makefile.master, usr/src/tools/scripts check_test_runfiles.py

18193 runfile checks don't respect arch guards
Reviewed by: Toomas Soome <tsoome at me.com>
Approved by: Dan McDonald <danmcd at edgecast.io>
DeltaFile
+27-6usr/src/tools/scripts/check_test_runfiles.py
+1-1usr/src/Makefile.master
+28-72 files

LLVM/project 2c4286eclang/test/CIR/CodeGen attr-target-x86.c attr-noundef.cpp, clang/test/CIR/CodeGenCXX uncopyable-args.cpp

[CIR] Update OGCG checks for 4 tests- (#207252)

These are broken by other patches, see: #182556 and #201999
DeltaFile
+5-5clang/test/CIR/CodeGenCXX/uncopyable-args.cpp
+4-4clang/test/CIR/CodeGen/attr-target-x86.c
+2-2clang/test/CIR/CodeGen/attr-noundef.cpp
+1-1clang/test/CIR/CodeGen/lambda-dtor-field.cpp
+12-124 files

FreeBSD/doc a91225dwebsite/content/ru administration.adoc

website/ru: Update administration.adoc

Update to EN f37462900694c88218150184bd1d06dd241b2027
DeltaFile
+1-1website/content/ru/administration.adoc
+1-11 files

LLVM/project a0145cfmlir/lib/Conversion/SPIRVToLLVM SPIRVToLLVM.cpp, mlir/test/Conversion/SPIRVToLLVM gl-ops-to-llvm.mlir

[mlir][SPIR-V] Add SPIRVToLLVM conversion for GL.Fract (#206951)

Co-authored-by: Igor Wodiany <dev at wodiany.com>
DeltaFile
+21-1mlir/lib/Conversion/SPIRVToLLVM/SPIRVToLLVM.cpp
+15-0mlir/test/Conversion/SPIRVToLLVM/gl-ops-to-llvm.mlir
+36-12 files

FreeBSD/ports 8e63afddevel/jujutsu distinfo Makefile.crates

devel/jujutsu: update to version 0.43.0

This update adds the "jj run" command and contains a number of new
features and a few bug fixes.

For the complete list of changes see:

    https://github.com/jj-vcs/jj/releases/tag/v0.43.0
DeltaFile
+233-247devel/jujutsu/distinfo
+115-122devel/jujutsu/Makefile.crates
+1-1devel/jujutsu/Makefile
+2-0devel/jujutsu/pkg-plist
+351-3704 files

FreeNAS/freenas 5eba061

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas bd20c32

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

LLVM/project e140c63clang/lib/Headers ptrauth.h

[PAC][Headers] Fix incorrect comment in ptrauth.h
DeltaFile
+1-2clang/lib/Headers/ptrauth.h
+1-21 files

FreeNAS/freenas 99c83f7src/middlewared/middlewared/pytest/unit/utils test_cpu_temperatures.py test_cpu_info.py, src/middlewared/middlewared/utils cpu.py

Fix inflated CPU temperature aggregate on consecutive-SMT CPUs

## Problem
The dashboard CPU Temp aggregate over-reported by roughly 1.5x, and the error scaled with load, on CPUs whose kernel enumerates SMT siblings consecutively (modern Intel client parts and AMD APUs). The legacy `get_cpu_temperatures` mirror loop copied each physical-core temperature onto its SMT sibling and added it to the running total twice, then divided by `len(data)`; under consecutive enumeration `ht_map` only held the even primaries, so the even physical cores were double-counted while the upper logical CPUs were never populated. The whole `ht_map` scheme assumed interleaved enumeration (cpu0 paired with cpuN/2), which is no longer how modern firmware lays things out.

## Solution
Reworked the pipeline to attribute temperatures at the physical-core level from kernel topology and take the aggregate as the mean over physical cores, so SMT enumeration order and asymmetric SMT no longer bias it. `cpu_info` now reads `core_id`, `physical_package_id` and `die_id` and builds `logical_to_phys` / `phys_to_package` / `phys_to_die` / `phys_to_core_id`; `ht_map` is gone. Each chip's readings are mapped per package — Intel by `core_id`, AMD by `die_id` with a Tdie/Tctl/temp1 fallback, and generic single-sensor by package broadcast — then projected onto every online logical CPU. libsensors stays the source; package identity comes from the coretemp `Package id N` label with an alphabetical fallback for multi-socket AMD (libsensors does not surface `numa_node`).

Added a multi-architecture unit-test matrix (consecutive/interleaved Intel, dual-socket, hybrid P+E, AMD single/multi/asymmetric CCD, prefer-Tdie, multi-socket, ARM 4-way SMT, zero-degree and no-sensors), plus fake-sysfs coverage for the topology parser and the package-resolution layer, which previously had none.
DeltaFile
+272-185src/middlewared/middlewared/pytest/unit/utils/test_cpu_temperatures.py
+333-116src/middlewared/middlewared/utils/cpu.py
+174-0src/middlewared/middlewared/pytest/unit/utils/test_cpu_info.py
+93-30src/middlewared/middlewared/pytest/unit/utils/test_cpu_util_amd.py
+69-0src/middlewared/middlewared/pytest/unit/utils/test_cpu_resolve_packages.py
+0-30src/middlewared/middlewared/pytest/unit/utils/test_cpu_util_generic.py
+941-3616 files

FreeNAS/freenas f536278src/middlewared/middlewared/plugins/pool_ utils.py dataset.py

Gate ZFS deduplication on pool creation

This commit adds changes to extend the ZFS deduplication license gate to pool creation, which previously let a pool's root dataset be created with dedup enabled on a system that is not entitled to it. The check is factored into a shared validate_dedup_license helper so pool.create and the dataset create/update path enforce it identically and stay in sync.
DeltaFile
+29-0src/middlewared/middlewared/plugins/pool_/utils.py
+3-20src/middlewared/middlewared/plugins/pool_/dataset.py
+3-1src/middlewared/middlewared/plugins/pool_/pool.py
+35-213 files

Illumos/gate 8095270usr/src/cmd/bhyve/common pci_virtio_scsi.c iov.c, usr/src/man/man8 bhyve.8

18186 bhyve/virtio-scsi changes from FreeBSD
Reviewed by: Toomas Soome <tsoome at me.com>
Reviewed by: Gordon Ross <gordon.w.ross at gmail.com>
Approved by: Dan McDonald <danmcd at edgecast.io>
DeltaFile
+121-49usr/src/cmd/bhyve/common/pci_virtio_scsi.c
+36-77usr/src/cmd/bhyve/common/iov.c
+10-7usr/src/cmd/bhyve/common/pci_virtio_scsi_ctl.c
+11-2usr/src/cmd/bhyve/common/pci_virtio_scsi.h
+2-2usr/src/cmd/bhyve/common/iov.h
+1-1usr/src/man/man8/bhyve.8
+181-1386 files

LLVM/project 6060a6bclang/include/clang/Lex TextEncoding.h, clang/lib/Lex TextEncoding.cpp

Put TextEncoding class in clang namespace to prevent naming conflicts (#207247)

Put TextEncoding class in the clang namespace to prevent naming conflicts
DeltaFile
+2-1clang/include/clang/Lex/TextEncoding.h
+2-0clang/lib/Lex/TextEncoding.cpp
+4-12 files

LLVM/project 5652e59flang/lib/Semantics check-omp-variant.cpp check-omp-structure.h, flang/test/Semantics/OpenMP metadirective-loop-nest.f90 metadirective-loop-applicability.f90

[flang][OpenMP] Semantic checks for metadirective loop nests

A loop-associated metadirective variant (`do`, `simd`, ...) is only
resolved during lowering, so it is never checked as a loop construct
during semantic analysis. A malformed or non-canonical associated nest
therefore reaches lowering, which assumes a canonical nest.

This patch validates the nest that follows such a variant (the next
executable construct) during semantics, reusing the diagnostics of a real
loop-associated construct. Each applicable variant is checked against it:

  * Canonical loop: the affected loop must be a canonical DO loop, so a
    `DO WHILE`, a pre-6.0 `DO CONCURRENT`, or a `DO` without loop control
    is rejected.
  * Nest depth: `collapse(n)` and `ordered(n)` must not exceed the depth
    of the associated loop nest.
  * Rectangularity: loops that must be rectangular (e.g. under `tile`) may
    not have bounds that depend on an outer loop's variable.


    [13 lines not shown]
DeltaFile
+160-0flang/lib/Semantics/check-omp-variant.cpp
+154-0flang/test/Semantics/OpenMP/metadirective-loop-nest.f90
+54-0flang/test/Semantics/OpenMP/metadirective-loop-applicability.f90
+13-0flang/test/Semantics/OpenMP/metadirective-loop-sequence.f90
+12-0flang/lib/Semantics/check-omp-structure.h
+11-0flang/lib/Semantics/check-omp-structure.cpp
+404-06 files

FreeBSD/ports f369282net/tsctp distinfo Makefile

net/tsctp: Update 0.8.4 => 0.8.6

Changelog:
https://github.com/dreibh/tsctp/blob/tsctp-0.8.6/ChangeLog

Commit log:
https://github.com/dreibh/tsctp/compare/tsctp-0.8.4...tsctp-0.8.6

PR:             296465
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3net/tsctp/distinfo
+1-1net/tsctp/Makefile
+4-42 files

LLVM/project 2d06fa7llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer VecUtils.h, llvm/lib/Transforms/Vectorize/SandboxVectorizer VecUtils.cpp

[SandboxVec] Move user collection to VecUtils and add unit tests
DeltaFile
+226-0llvm/unittests/Transforms/Vectorize/SandboxVectorizer/VecUtilsTest.cpp
+1-53llvm/lib/Transforms/Vectorize/SandboxVectorizer/Passes/BottomUpVec.cpp
+54-0llvm/lib/Transforms/Vectorize/SandboxVectorizer/VecUtils.cpp
+9-0llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/VecUtils.h
+290-534 files

OpenZFS/src 822c910tests/zfs-tests/tests/functional/cli_root/zfs_unmount zfs_unmount_unload_keys.ksh

ZTS: cover key unload when a child's mountpoint sorts before its root

zfs_unmount_unload_keys.ksh only exercised hierarchy-aligned
mountpoints. The changelist unmounts in reverse alphabetical order of
mountpoint, so a nested child always sorted after and unmounted before
its encryption root, and the case where the root unmounts first was
never covered. Add a case whose child mountpoint sorts before its
root's, so the root is unmounted while the child still holds the
inherited key, and assert "zfs unmount -u" still unloads the key and
unmounts the whole subtree.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Ameer Hamza <ahamza at ixsystems.com>
Closes #18713
DeltaFile
+15-0tests/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_unload_keys.ksh
+15-01 files

OpenZFS/src 7cc1d90lib/libzfs libzfs_changelist.c

libzfs: defer encryption key unload until the subtree is unmounted

"zfs unmount -u" unloads a dataset's encryption key right after
unmounting it. changelist_prefix() unmounts the subtree in mountpoint
order and passes MS_CRYPT to zfs_unmount() for every node, so each key
is unloaded inline during the walk. A wrapping key is shared by an
encryption root and the children that inherit it, and can only be
unloaded once all of them are unmounted. Because the walk is ordered by
mountpoint rather than by hierarchy, an encryption root can be unmounted
before a child that still holds its key; unloading the key there fails
with EBUSY, aborting the unmount. This breaks "zfs unmount -u <encroot>"
whenever a key-sharing child is still mounted.

Strip MS_CRYPT in the unmount pass so no key is unloaded inline and the
whole subtree is torn down first. With everything unmounted, unload the
encryption-root keys in a second pass, stopping at the first failure.
If an unload fails because a dataset using the key is genuinely in use
(for example a bind or second mount), re-mount the subtree to undo the
unmount before returning the error. With one encryption root, the

    [5 lines not shown]
DeltaFile
+69-1lib/libzfs/libzfs_changelist.c
+69-11 files

OpenZFS/src 69b2491cmd/zfs zfs_main.c, lib/libspl/include/os/freebsd/sys mount.h

libzfs: fix MS_CRYPT/MS_OVERLAY collision with umount2(2) flags

MS_CRYPT and MS_OVERLAY are libzfs-internal mount flags, but their
values (0x8 and 0x4) aliased the umount2(2) flags UMOUNT_NOFOLLOW and
MNT_EXPIRE. A consumer that legitimately set UMOUNT_NOFOLLOW therefore
had that bit read as MS_CRYPT, so libzfs unloaded the dataset's
encryption key as a side effect.

Move both flags to high bits unused by umount2(2) and strip them before
the unmount syscall in do_unmount() (umount2(2) on Linux, unmount(2) on
FreeBSD) and in cmd/zfs. MS_CRYPT is a compile-time macro, so consumers
that set it (for example truenas_pylibzfs) must be rebuilt against the
new header.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Ameer Hamza <ahamza at ixsystems.com>
Closes #18713
DeltaFile
+7-11lib/libspl/include/os/linux/sys/mount.h
+6-11lib/libspl/include/os/freebsd/sys/mount.h
+7-0lib/libzfs/os/freebsd/libzfs_zmount.c
+7-0lib/libzfs/os/linux/libzfs_mount_os.c
+2-0cmd/zfs/zfs_main.c
+29-225 files

FreeBSD/ports a04c234net/td-system-tools distinfo pkg-plist

net/td-system-tools: Update 2.7.4 => 2.7.7

Port changes:
- Update pkg-plist.
- Add USES=gettext-runtime because it's needed for
  the scripts, even when NLS is turned off.

Changelog:
https://github.com/dreibh/system-tools/blob/td-system-tools-2.7.7/ChangeLog

Commit log:
https://github.com/dreibh/system-tools/compare/td-system-tools-2.7.4...td-system-tools-2.7.7

PR:             296464
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3net/td-system-tools/distinfo
+2-2net/td-system-tools/pkg-plist
+2-2net/td-system-tools/Makefile
+7-73 files

LLVM/project 3166b22llvm/lib/Transforms/InstCombine InstructionCombining.cpp, llvm/test/Transforms/InstCombine assume.ll

[InstCombine] Sink instructions across assumes (#205314)

Not sinking across assumes causes InstCombine to not reach a fixpoint
when assumes can be dropped due to the load (usually nonnull assumes).
Sinking the instructions causes the assume to not be dropped anymore,
but I don't think that's a big problem.
DeltaFile
+18-0llvm/test/Transforms/InstCombine/assume.ll
+1-1llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+19-12 files

OpenBSD/ports LHzJsJAdevel/jujutsu/patches patch-cli_src_commands_bisect_run_rs

   jujutsu: regen patch. no package change
VersionDeltaFile
1.6+1-1devel/jujutsu/patches/patch-cli_src_commands_bisect_run_rs
+1-11 files

FreeBSD/ports 3355938databases/cego Makefile distinfo, devel/lfcbase distinfo Makefile

databases/cego: 2.54.29 -> 2.54.38, devel/lfcbase: 1.23.5 -> 1.23.6

lfcbase:
- compiler warnings fixed for class Chain::toUpper and toLower
  ( dynamic wText allocation )

cego:
- procedure cache
- Added admin command set maxpagedelete to set up maximum number
  of pages marked for delete before forcing a checkpoint.
- CegoQueryManager: _authUser has to be stored locally,
  otherwise setUser method looses user information, if auth was not enabled
- new admin command object usage to show usage of tableset objects
  to detect any usage leaks and to get an overview of objects in
  use by running database threads
- backupManager: indicate number of logs to recover up to crash
  for the corresponding backup id.
- Fix added in CegoRecoveryManager::recoverCurrentTransactionLog
- Added list transaction command

    [5 lines not shown]
DeltaFile
+3-3databases/cego/Makefile
+3-3databases/cego/distinfo
+3-3devel/lfcbase/distinfo
+2-2devel/lfcbase/Makefile
+1-0databases/cego/pkg-plist
+12-115 files

LLVM/project b88cc21clang/docs ReleaseNotes.md, clang/lib/Sema SemaTemplate.cpp SemaDecl.cpp

[clang] accept member specializations declared in class scope

Explicit specializations are not restricted to namespace scope since CWG727 was
accepted as a DR.

Also fixes a crash upon error recovery in this case which was a recent
unreleased regression.

Fixes #206866
DeltaFile
+41-0clang/test/SemaTemplate/member-specialization.cpp
+5-4clang/lib/Sema/SemaTemplate.cpp
+6-0clang/lib/Sema/SemaDecl.cpp
+1-0clang/docs/ReleaseNotes.md
+53-44 files

FreeBSD/ports ff18403benchmarks/hipercontracer distinfo Makefile

benchmarks/hipercontracer: Update 2.2.3 => 2.2.6

While here, add dependency on zstd for the option requiring it.

Changelog:
https://github.com/dreibh/hipercontracer/blob/hipercontracer-2.2.6/ChangeLog

Commit log:
https://github.com/dreibh/hipercontracer/compare/hipercontracer-2.2.3...hipercontracer-2.2.6

PR:             296462
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3benchmarks/hipercontracer/distinfo
+2-1benchmarks/hipercontracer/Makefile
+5-42 files

FreeBSD/ports 3e2823csecurity/certspotter distinfo Makefile

security/certspotter: Update to 0.24.2
DeltaFile
+5-5security/certspotter/distinfo
+1-2security/certspotter/Makefile
+6-72 files