LLVM/project b4d2b2flibcxx/include/__algorithm pstl.h, libcxx/include/__pstl/backends default.h

[libc++][pstl] Implementation of parallel std::lexicographical_compare() based on std::mismatch() (#212366)

This PR adds an implementation of parallel
`std::lexicographical_compare()` based on parallel `std::mismatch()`.

The implementation is close to a one-liner:
```c++
auto __res = _Mismatch()(__policy, __first1, __last1, __first2, __last2, [&](_Ref1 __lhs, _Ref2 __rhs) {
  return !__comp(__lhs, __rhs) && !__comp(__rhs, __lhs);
});
```

Included tests check that:
- Semantics of the iterator-only version is correct.
- Semantics of the predicated version is correct.
- The functions correctly SFINAE out when the first argument is not an
execution policy.
- The `noexcept` policy is followed.
- The `nodiscard` policy is followed.

    [2 lines not shown]
DeltaFile
+214-0libcxx/test/std/algorithms/alg.sorting/alg.lex.comparison/pstl.lexicographical_compare_comp.pass.cpp
+178-0libcxx/test/std/algorithms/alg.sorting/alg.lex.comparison/pstl.lexicographical_compare.pass.cpp
+50-0libcxx/include/__algorithm/pstl.h
+30-1libcxx/include/__pstl/backends/default.h
+16-0libcxx/test/std/algorithms/pstl.exception_handling.pass.cpp
+11-0libcxx/test/libcxx/algorithms/pstl.iterator-requirements.verify.cpp
+499-12 files not shown
+510-18 files

LLVM/project 2e3f4efllvm/lib/Target/SPIRV SPIRVPostLegalizer.cpp SPIRVLegalizerInfo.cpp, llvm/test/CodeGen/SPIRV/legalization matrix-wide-vector-shader.ll

[SPIRV] Legalize Cast Instructions for Matrix Types (#212619)

fixes #186864

This is a more limited fix. that doesn't require us to change the whole
legalization strategy for SPIR-V.

To get the last fix to work it looks like I would have to have changed
every global opcode to no longer use power of 2 based legalization.

This change with power of 2 fixed the transpose case in the offload
testsuite when we do the conversion of bools to i32s before we call
transpose.

There remains an issue when a i1 makes it into a transpose intrinsic.
That said I can only trigger that case via llvmir and not HLSL so will
move on for now.
DeltaFile
+222-0llvm/test/CodeGen/SPIRV/legalization/matrix-wide-vector-shader.ll
+15-6llvm/lib/Target/SPIRV/SPIRVLegalizerInfo.cpp
+6-1llvm/lib/Target/SPIRV/SPIRVPostLegalizer.cpp
+243-73 files

LLVM/project d9278adlldb/include/lldb/Core BugReporter.h, lldb/source/Commands CommandObjectDiagnostics.cpp

[lldb] Ask the reporter what happened in a bug report (#213173)

A diagnostics bundle records the state of the debugger, never what the
user was doing or what they expected instead, so reports arrive with a
generic title and no description of the problem. Pre-fill the report
with the questions only the person filing it can answer, and print a
checklist when the bundle is written so an incomplete report doesn't get
shared as-is.

rdar://183356348
DeltaFile
+18-0lldb/source/Core/BugReporter.cpp
+9-2lldb/source/Plugins/BugReporter/GitHub/GitHubReporter.cpp
+6-0lldb/include/lldb/Core/BugReporter.h
+3-0lldb/test/Shell/Diagnostics/TestReport.test
+3-0lldb/source/Commands/CommandObjectDiagnostics.cpp
+1-0lldb/source/Core/CMakeLists.txt
+40-26 files

LLVM/project 0142992clang/test/Driver/flang runtimes.f90 multiple-inputs-mixed.f90

Reapply "[NFC][clang][Driver] Add tests for --driver-mode=flang" (#211724)

This reapplies #207658.

Some targets do not support flang_rt or clang_rt.
It seems difficult to create a blocklist, so the tests are now
configured to explicitly specify the known-working targets.
The specified targets are extracted from tests in flang/test/Driver.

-----
The original commit message:
This patch intends to clarify the current behaviors, not to state the
expected/desirable behaviors.
DeltaFile
+22-0clang/test/Driver/flang/multiple-inputs-mixed.f90
+13-0clang/test/Driver/flang/runtimes.f90
+35-02 files

FreeBSD/src a1edeb4sys/dev/e1000 if_em.c

e1000: fix 82574 MSI-X interrupt throttling

em_newitr() and the per-queue interrupt_rate sysctl both tested
que->msix to decide whether an 82574 is running in MSI-X mode.  0 is a
valid MSI-X vector so queue 0 was misclassified as legacy/MSI.

Test sc->intr_type == IFLIB_INTR_MSIX instead.  While here, index the tx
EITR read by tque->msix rather than tque->me so it matches the register
em_newitr() actually writes; the two differ once tx_num_queues exceeds
rx_num_queues.

Also seed que->itr_setting in em_initialize_receive_unit() with the rate
the hardware was just programmed with.  Otherwise an itr_setting left
over from AIM across an interface re-init makes the change detection in
em_newitr() suppress the write that would restore it, leaving the
hardware at the default rate while software believes otherwise.

Fixes:          3e501ef89667 ("e1000: Re-add AIM")

(cherry picked from commit 941113a0097ea047bd493f7f78b384718249779d)
DeltaFile
+20-4sys/dev/e1000/if_em.c
+20-41 files

LLVM/project 0879c10compiler-rt/lib/builtins CMakeLists.txt, libc/shared/builtins trunctfxf2.h

[compiler-rt][builtins] libc-backed floating-point extend/trunct builtins (#209984)

Add libc-backed floating-point extend/truncate builtins

Part of #197824
DeltaFile
+96-0libc/src/__support/builtins/CMakeLists.txt
+83-0libc/src/__support/builtins/fpconvert_helper.h
+29-21compiler-rt/lib/builtins/CMakeLists.txt
+40-0libc/src/__support/builtins/extendxftf2.h
+40-0libc/src/__support/builtins/trunctfxf2.h
+37-0libc/shared/builtins/trunctfxf2.h
+325-2124 files not shown
+994-2130 files

FreeBSD/src 2389c5dsys/dev/e1000 if_em.c

e1000: fix 82574 MSI-X interrupt throttling

em_newitr() and the per-queue interrupt_rate sysctl both tested
que->msix to decide whether an 82574 is running in MSI-X mode.  0 is a
valid MSI-X vector so queue 0 was misclassified as legacy/MSI.

Test sc->intr_type == IFLIB_INTR_MSIX instead.  While here, index the tx
EITR read by tque->msix rather than tque->me so it matches the register
em_newitr() actually writes; the two differ once tx_num_queues exceeds
rx_num_queues.

Also seed que->itr_setting in em_initialize_receive_unit() with the rate
the hardware was just programmed with.  Otherwise an itr_setting left
over from AIM across an interface re-init makes the change detection in
em_newitr() suppress the write that would restore it, leaving the
hardware at the default rate while software believes otherwise.

Fixes:          3e501ef89667 ("e1000: Re-add AIM")

(cherry picked from commit 941113a0097ea047bd493f7f78b384718249779d)
DeltaFile
+20-4sys/dev/e1000/if_em.c
+20-41 files

Linux/linux 8ba098efs/smb/client smb1maperror.c fscache.c

Merge tag 'v7.2-rc5-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6

Pull smb client fixes from Steve French:

 - fix SMB1 read and write potential buffer leaks

 - netfs error handling fix

 - fix check for last write time in truncate and setattr and cleanup use
   of smb_store_release()

 - fscache fix and cleanup

 - validate idmap key payload length

 - minor SMB1 error mapping cleanup

 - witness protocol memory allocation fix


    [10 lines not shown]
DeltaFile
+6-45fs/smb/client/misc.c
+16-21fs/smb/client/file.c
+23-4fs/smb/client/inode.c
+9-3fs/smb/client/cifssmb.c
+1-5fs/smb/client/smb1maperror.c
+1-5fs/smb/client/fscache.c
+56-833 files not shown
+63-879 files

FreeBSD/ports 4f8809edatabases/timescaledb pkg-plist Makefile

databases/timescaledb: Update to 2.29.0
DeltaFile
+3-3databases/timescaledb/distinfo
+2-2databases/timescaledb/Makefile
+1-0databases/timescaledb/pkg-plist
+6-53 files

FreeBSD/ports 5f4a8eceditors/zed Makefile.crates distinfo, editors/zed/files patch-crates_zed_src_reliability.rs patch-crates_zed_src_main.rs

editors/zed: Update to 1.13.1

Changelog:
- https://github.com/zed-industries/zed/releases/tag/v1.12.1
- https://github.com/zed-industries/zed/releases/tag/v1.13.1

Reported by:    GitHub (watch releases)
DeltaFile
+39-25editors/zed/distinfo
+18-11editors/zed/Makefile.crates
+9-9editors/zed/files/patch-crates_fs_src_fs.rs
+8-8editors/zed/files/patch-crates_zed_src_main.rs
+8-8editors/zed/files/patch-Cargo.lock
+7-7editors/zed/files/patch-crates_zed_src_reliability.rs
+89-688 files not shown
+119-9814 files

Linux/linux a11f030Documentation/ABI/testing sysfs-class-power-bd71828, drivers/power/supply bq25890_charger.c max17040_battery.c

Merge tag 'for-v7.2-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply

Pull power supply fixes from Sebastian Reichel:

 - Documentation build fix for bd71828

 - max17040: handle missing status supplier

 - macsmc: Support macOS 27 SMC firmware

 - bq25890: fix the -10 C NTC lookup entry

* tag 'for-v7.2-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply:
  power: supply: bq25890: fix the -10 C NTC lookup entry
  power: supply: macsmc: Support macOS 27 SMC firmware
  power: supply: max17040: handle missing status supplier
  power: supply: bd71828: add a terminating table border
DeltaFile
+45-7drivers/power/supply/macsmc-power.c
+5-1drivers/power/supply/max17040_battery.c
+1-1drivers/power/supply/bq25890_charger.c
+1-0Documentation/ABI/testing/sysfs-class-power-bd71828
+52-94 files

LLVM/project 53e16d7clang/include/clang/CIR CIRDataLayoutSpec.h, clang/include/clang/CIR/Dialect/IR CIRAttrs.td

[CIR] Pointer and vptr width from a CIR-native data-layout entry (#204185)

PointerType and VPtrType have hard-coded sizes and alignments of 64/8
bits. On targets with 32-bit pointers (e.g., nvptx, spirv32), this trips
the record layout builder. Any record containing a pointer hit the
insertPadding assertion (offset >= size)
because the pointer was sized at 8 bytes while the following field was
placed at the AST-mandated 4-byte offset.

 ### Changes:
- CIRGenerator: attaches a CIR-native cir.ptr data-layout entry at
module setup, storing {size-in-bits, abi-align-in-bits} read
  from the target DataLayout (only for the default address space).
- CIRTypes: PointerType reads its size/alignment from that entry
(falling back to 64/8 when absent); VPtrType routes through a cir.ptr so
it picks up the same width.
- LowerToLLVM: strips the cir.ptr entry during CIR→LLVM lowering, since
cir.ptr has no meaning in LLVM IR.
- Unit test: checking 4-byte pointer/vptr layout on nvptx, verified
across CIR, CIR→LLVM.
DeltaFile
+111-14clang/lib/CIR/Dialect/IR/CIRTypes.cpp
+58-0clang/test/CIR/IR/pointer-data-layout.cir
+54-0clang/test/CIR/CodeGen/pointer-width-32bit.cpp
+49-0clang/lib/CIR/CodeGen/CIRDataLayoutSpec.cpp
+46-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+34-0clang/include/clang/CIR/CIRDataLayoutSpec.h
+352-147 files not shown
+421-2813 files

FreeNAS/freenas 56a49f0src/middlewared/middlewared/api/v26_0_0 container.py, src/middlewared/middlewared/migration 0020_repair_incus_clone_origins.py

NAS-141666 / 26.0.0-RC.1 / Relocate migrated container origins out of legacy .ix-virt (#19351)
DeltaFile
+251-2src/middlewared/middlewared/plugins/container/migrate.py
+74-0src/middlewared/middlewared/migration/0020_repair_incus_clone_origins.py
+49-10src/middlewared/middlewared/plugins/container/container.py
+34-1tests/api2/test_container.py
+12-6src/middlewared/middlewared/plugins/container/lifecycle.py
+13-1src/middlewared/middlewared/api/v26_0_0/container.py
+433-205 files not shown
+446-2911 files

LLVM/project bb6b144llvm/lib/Target/AMDGPU SIInstructions.td SIISelLowering.cpp

[AMDGPU] Rename packed 64-bit features to include SingleSGPR. NFCI.
DeltaFile
+9-9llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
+12-6llvm/lib/Target/AMDGPU/AMDGPU.td
+8-8llvm/lib/Target/AMDGPU/VOP3PInstructions.td
+4-4llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
+2-2llvm/lib/Target/AMDGPU/SIInstructions.td
+2-2llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+37-313 files not shown
+43-339 files

LLVM/project 6d9de52llvm/lib/Target/AMDGPU VOP3PInstructions.td AMDGPUTargetTransformInfo.cpp, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp

[AMDGPU] Duplicate packed fp32 instructions (#212857)

These have different semantics on gfx9 and gfx12 with respect to
scalar operands.
DeltaFile
+21-9llvm/lib/Target/AMDGPU/SIInstructions.td
+9-9llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+7-7llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
+9-4llvm/lib/Target/AMDGPU/VOP3PInstructions.td
+6-6llvm/test/CodeGen/AMDGPU/bug-pk-f32-imm-fold.mir
+5-5llvm/test/CodeGen/AMDGPU/coexec-sched-effective-stall.mir
+57-409 files not shown
+89-5415 files

LLVM/project 8fbdc8clldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime AppleObjCRuntimeV2.cpp

If the address of the isa_pointer is returned as an error don't ask if it is a tagged pointer (#213163)

The answer isn't right and the wrong type might stick and cause
downstream failures.

Note, the correct solution to this is to distinguish between "couldn't
get the address" and "got a real value of LLDB_INVALID_ADDRESS" but
piping an optional all the way down and then through all the uses is an
intrusive change which I don't have time for right now. That only risk
is that this really IS a tagged pointer with the value
LLDB_INVALID_ADDRESS, so this seems an acceptable workaround.

I ran across this when debugging the ObjC test failures in the ObjC
testuite after 8b9cce358bef26ae4cb9275dd6a43f903bafbaa0. This patch
clears up all those testsuite failures, which should stand as a test for
this patch when I resubmit that change.
DeltaFile
+2-0lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
+2-01 files

OpenBSD/ports h7aLny7devel/codex Makefile distinfo, devel/codex/patches patch-codex-rs_core_src_config_mod_rs patch-codex-rs_arg0_src_lib_rs

   devel/codex: update to 0.146.0
VersionDeltaFile
1.13+3-3devel/codex/patches/patch-codex-rs_arg0_src_lib_rs
1.32+3-3devel/codex/patches/patch-codex-rs_Cargo_toml
1.39+2-2devel/codex/distinfo
1.41+1-2devel/codex/Makefile
1.34+1-1devel/codex/patches/patch-codex-rs_core_src_config_mod_rs
+10-115 files

LLVM/project 06361fbclang/lib/CIR/CodeGen CIRGenClass.cpp CIRGenFunction.h, clang/test/CIR/CodeGen attr-musttail.cpp

[CIR] Implement most of 'musttail' statement attr (#213154)

This implements the basics, and leaves NYI in a few places (particularly
those that require cleanup calculations). There IS some additional work
that needs to be done when the ABI work is put in place as well, and the
thunk 'tail' hint isn't implemented either, and is left as a
missing-feature.

This is necessary for compiling the bytecode interpreter in Clang in a
few places during self-build.
DeltaFile
+238-0clang/test/CIR/CodeGen/attr-musttail.cpp
+36-2clang/lib/CIR/CodeGen/CIRGenCall.cpp
+8-9clang/lib/CIR/CodeGen/CIRGenExprCXX.cpp
+12-1clang/lib/CIR/CodeGen/CIRGenStmt.cpp
+7-3clang/lib/CIR/CodeGen/CIRGenFunction.h
+4-2clang/lib/CIR/CodeGen/CIRGenClass.cpp
+305-175 files not shown
+312-2411 files

LLVM/project a1d93f1offload/libomptarget omptarget.cpp, offload/test/offloading firstprivate_packed_buffer_lifetime.c

[OpenMP][Offload] Fix use-after-free of the packed firstprivate transfer buffer (#212905)

`packAndTransfer()` called `submitData()`, which captured the address of
the data of
the `SmallVector` member of `PrivateArgumentManagerTy`, as the host
source of an
async transfer. The manager was later moved into an `AsyncInfo`
post-processing
lambda, changing the underlying address of the data:
`addPostProcessingFunction()`
copies the closure rather than moving it, but even if it "moved", the
address of the data owned by `SmallVector`'s inline capacity would have
changed.

The AMDGPU plugin read from the stale host source address when doing the
actual transfer.

Fix: allocate the packed buffer via
`getOrCreateSourceBufferForSubmitData()`, so

    [2 lines not shown]
DeltaFile
+53-0offload/test/offloading/firstprivate_packed_buffer_lifetime.c
+24-8offload/libomptarget/omptarget.cpp
+77-82 files

NetBSD/pkgsrc CRizzxOdoc CHANGES-2026

   Updated www/wordpress to 7.0.2
VersionDeltaFile
1.4859+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc s3ES9Ylbenchmarks/paranoia distinfo, benchmarks/paranoia/patches patch-aa

   benchmarks/paranoia: Declare main as returning int
VersionDeltaFile
1.2+24-14benchmarks/paranoia/patches/patch-aa
1.7+2-2benchmarks/paranoia/distinfo
+26-162 files

NetBSD/pkgsrc utTuYjhwww/wordpress Makefile distinfo

   Update to 7.0.2

   Upstream changelog is too long, please visit:
   https://wordpress.org/news/
VersionDeltaFile
1.58+650-54www/wordpress/PLIST
1.101+4-4www/wordpress/distinfo
1.120+2-2www/wordpress/Makefile
+656-603 files

LLVM/project 71af911lldb/docs CMakeLists.txt python_extensions.md

[lldb/docs] Document the remaining scripted-extension plugin categories (#213140)

`python_extensions.md` only covered the first five plugin categories.

This commit adds the missing sections for every plugin category added
since: `ScriptedBreakpointResolver`, `ScriptedHook`,
`ScriptedStackFrameRecognizer`, `ScriptedCommand`, `ParsedCommand`,
`ScriptedStringSummary`, and `ScriptedSyntheticChildren`.

Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>
DeltaFile
+79-3lldb/docs/python_extensions.md
+1-0lldb/docs/CMakeLists.txt
+80-32 files

LLVM/project 4912831lldb/include/lldb/Target Target.h, lldb/source/Target TargetProperties.td Target.cpp

[lldb] Add target.jit-engine setting (#212998)

Add a target.jit-engine setting that lets users choose which LLVM
execution engine (MCJIT or ORC) is used to JIT expressions. Defaults to
MCJIT to preserve current behavior. This is groundwork for migrating
expression evaluation from MCJIT to ORC; IRExecutionUnit does not yet
consult this setting.
DeltaFile
+22-0lldb/test/API/commands/settings/TestSettings.py
+19-0lldb/source/Target/Target.cpp
+4-0lldb/source/Target/TargetProperties.td
+4-0lldb/include/lldb/Target/Target.h
+49-04 files

FreeNAS/freenas e2129absrc/middlewared/middlewared/api/v27_0_0 container.py, src/middlewared/middlewared/migration 0020_repair_incus_clone_origins.py

Relocate migrated container origins out of legacy .ix-virt

## Problem
Incus containers are ZFS clones of an image snapshot. The incus->container auto-migration relocated each container from `<pool>/.ix-virt/containers/<name>` to `<pool>/.truenas_containers/containers/<name>` with a bare `zfs rename` and did nothing else. A `zfs rename` does not change a clone's `origin`, so a migrated container stayed a clone of a snapshot still living inside `.ix-virt` - and deleting `.ix-virt` recursively destroyed those origin snapshots and cascaded into the dependent migrated clones, silently destroying migrated containers. The migration also left the legacy parents mounted, moved on without a license, gave up on every remaining pool when one failed, and could leave a container renamed into the native tree with no database row pointing at it.

## Solution
Relocate each container's origin image out of `.ix-virt` before renaming the container, so no migrated container depends on anything under `.ix-virt`, and make the surrounding migration and deletion paths recoverable.

- **Shared relocation helper** - `relocate_container_origin` reads a container's live `origin`; if it points at an image under `.ix-virt/images` or `.ix-virt/deleted/images`, it sets `canmount=noauto` on that image dataset and then renames it into the native `.truenas_containers/images/` tree. The rename goes last so it is the single atomic commit point: the image is either wholly still in `.ix-virt` or wholly relocated, and the return value describes reality. Fan-out clones auto-repoint on the rename; an origin outside `.ix-virt` is left alone; a container that is a clone of another container is refused, since the two would arrive entangled.
- **Migration path** - the migration calls the helper immediately before renaming each container and skips any container whose base image cannot be relocated, rather than producing one that looks healthy until `.ix-virt` is deleted.
- **Repair migration** - new `0020_repair_incus_clone_origins` runs the same relocation over existing `container.container` rows for systems that already ran the old migration, and restores the legacy parents' mountpoint those runs left inherited.
- **Leave the legacy tree as found** - mount properties are reverted on any container that is not migrated, and the legacy parents are restored at the end of every run, so nothing is left mounted under `/mnt/<pool>/.ix-virt` with nothing managing it. Both reverts are armed before the properties are touched, since a partial apply has to be reverted too.
- **Migration robustness** - the migration is skipped on HA capable hardware and deferred (leaving the legacy configuration intact) when the system is not licensed for containers; one unusable pool no longer stops the pools after it; and a container whose dataset was renamed but whose row was never created is moved back where the user can see it.
- **Safer deletion** - the libvirt domain is torn down first so the container's runtime mounts are gone before ZFS is touched, the dataset is destroyed next, and the database records are removed only once it is confirmed gone - so a failed destroy never orphans the dataset with no row pointing at it. An already-missing dataset is tolerated so a container whose data was lost to the old cascade can still be removed cleanly.
- **Active-instance guards** - deleting or renaming a container that is not stopped (running or suspended) is refused; delete additionally accepts `force=True`, mirroring the VM delete flow, and is now a job locked per container id. The container status model gains the `SUSPENDED` state it has always been able to report.
DeltaFile
+250-2src/middlewared/middlewared/plugins/container/migrate.py
+73-0src/middlewared/middlewared/migration/0020_repair_incus_clone_origins.py
+42-1tests/api2/test_container.py
+33-9src/middlewared/middlewared/plugins/container/__init__.py
+35-5src/middlewared/middlewared/plugins/container/crud.py
+14-2src/middlewared/middlewared/api/v27_0_0/container.py
+447-194 files not shown
+469-2810 files

NetBSD/pkgsrc RhHyWYodoc CHANGES-2026

   Updated security/p5-GnuPG-Interface to 1.07
VersionDeltaFile
1.4858+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc hDhnzZusecurity/p5-GnuPG-Interface Makefile distinfo

   Update to 1.07

   Upstream changes:
   1.07 - 2026-06-26
    - Make _version work under mod_perl
   1.06 - 2026-03-26
    - Make tests pass for GnuPG 2.5.18
   1.05 - 2025-08-12
    - Make tests pass for GnuPG 2.4 versions (2.4.0 - 2.4.8)
VersionDeltaFile
1.19+4-4security/p5-GnuPG-Interface/distinfo
1.45+3-4security/p5-GnuPG-Interface/Makefile
+7-82 files

FreeBSD/ports e7207ceaudio/sox pkg-plist Makefile

audio/sox: Unbreak build when no audio devices are selected

Upstream allows this configuration so the port should as well.

PR:             297173
Approved by:    Dan Nelson (maintainer)
DeltaFile
+12-1audio/sox/Makefile
+2-2audio/sox/pkg-plist
+14-32 files

FreeNAS/freenas 31cab44src/middlewared/middlewared/api/v27_0_0 container.py, src/middlewared/middlewared/migration 0020_repair_incus_clone_origins.py

Relocate migrated container origins out of legacy .ix-virt

## Problem
Incus containers are ZFS clones of an image snapshot. The incus->container auto-migration relocated each container from `<pool>/.ix-virt/containers/<name>` to `<pool>/.truenas_containers/containers/<name>` with a bare `zfs rename` and did nothing else. A `zfs rename` does not change a clone's `origin`, so a migrated container stayed a clone of a snapshot still living inside `.ix-virt` - and deleting `.ix-virt` recursively destroyed those origin snapshots and cascaded into the dependent migrated clones, silently destroying migrated containers. The migration also left the legacy parents mounted, moved on without a license, gave up on every remaining pool when one failed, and could leave a container renamed into the native tree with no database row pointing at it.

## Solution
Relocate each container's origin image out of `.ix-virt` before renaming the container, so no migrated container depends on anything under `.ix-virt`, and make the surrounding migration and deletion paths recoverable.

- **Shared relocation helper** - `relocate_container_origin` reads a container's live `origin`; if it points at an image under `.ix-virt/images` or `.ix-virt/deleted/images`, it sets `canmount=noauto` on that image dataset and then renames it into the native `.truenas_containers/images/` tree. The rename goes last so it is the single atomic commit point: the image is either wholly still in `.ix-virt` or wholly relocated, and the return value describes reality. Fan-out clones auto-repoint on the rename; an origin outside `.ix-virt` is left alone; a container that is a clone of another container is refused, since the two would arrive entangled.
- **Migration path** - the migration calls the helper immediately before renaming each container and skips any container whose base image cannot be relocated, rather than producing one that looks healthy until `.ix-virt` is deleted.
- **Repair migration** - new `0020_repair_incus_clone_origins` runs the same relocation over existing `container.container` rows for systems that already ran the old migration, and restores the legacy parents' mountpoint those runs left inherited.
- **Leave the legacy tree as found** - mount properties are reverted on any container that is not migrated, and the legacy parents are restored at the end of every run, so nothing is left mounted under `/mnt/<pool>/.ix-virt` with nothing managing it. Both reverts are armed before the properties are touched, since a partial apply has to be reverted too.
- **Migration robustness** - the migration is skipped on HA capable hardware and deferred (leaving the legacy configuration intact) when the system is not licensed for containers; one unusable pool no longer stops the pools after it; and a container whose dataset was renamed but whose row was never created is moved back where the user can see it.
- **Safer deletion** - the libvirt domain is torn down first so the container's runtime mounts are gone before ZFS is touched, the dataset is destroyed next, and the database records are removed only once it is confirmed gone - so a failed destroy never orphans the dataset with no row pointing at it. An already-missing dataset is tolerated so a container whose data was lost to the old cascade can still be removed cleanly.
- **Active-instance guards** - deleting or renaming a container that is not stopped (running or suspended) is refused; delete additionally accepts `force=True`, mirroring the VM delete flow, and is now a job locked per container id. The container status model gains the `SUSPENDED` state it has always been able to report.
DeltaFile
+250-2src/middlewared/middlewared/plugins/container/migrate.py
+73-0src/middlewared/middlewared/migration/0020_repair_incus_clone_origins.py
+53-10src/middlewared/middlewared/plugins/container/crud.py
+42-1tests/api2/test_container.py
+33-9src/middlewared/middlewared/plugins/container/__init__.py
+14-2src/middlewared/middlewared/api/v27_0_0/container.py
+465-246 files not shown
+492-3712 files

NetBSD/src o1ptfgvsys/arch/mips/mips kobj_machdep.c, usr.sbin/bta2dpd/bta2dpd bta2dpd.c

   Fix RCSID.
VersionDeltaFile
1.10+2-2usr.sbin/bta2dpd/bta2dpd/bta2dpd.c
1.3+2-2sys/arch/mips/mips/kobj_machdep.c
+4-42 files