LLVM/project d230798lldb/source/Plugins/SymbolFile/DWARF DWARFDebugInfoEntry.cpp SymbolFileDWARF.cpp, lldb/test/Shell/SymbolFile/DWARF self-referential-specification.yaml

[lldb] Detect cycles when following DIE references (#223912)

A DW_TAG_subprogram whose DW_AT_specification points at its own offset
causes both GetDIENamesAndRanges and GetDeclContextDIEContainingDIE to
keep recursing

Track the DIEs already visited, the way the sibling GetAttributes helper
does. GetDIENamesAndRanges also moves to a worklist so a long chain of
distinct specifications no longer costs a stack frame per DIE.

rdar://186891786
DeltaFile
+172-0lldb/unittests/SymbolFile/DWARF/DWARFDIETest.cpp
+60-47lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+77-0lldb/test/Shell/SymbolFile/DWARF/self-referential-specification.yaml
+55-16lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
+364-634 files

LLVM/project e78fdebllvm/include/llvm/Support LLVMDriver.h Driver.h, llvm/lib/Support Driver.cpp

Revert "[Support] Add ToolSession for in-process tool invocation" (#224368)

Reverts llvm/llvm-project#221996 because it broke Clang driver tests.
1)
https://ci.chromium.org/ui/p/fuchsia/builders/toolchain.ci/clang-host-linux-x64/b8670408702265017009/overview
2)
https://ci.chromium.org/ui/p/fuchsia/builders/toolchain.ci/clang-mac-arm64/b8670408421098418625/overview
DeltaFile
+0-131llvm/lib/Support/Driver.cpp
+0-127llvm/unittests/Support/LLVMToolSession/LLVMToolSessionTest.cpp
+0-96llvm/include/llvm/Support/Driver.h
+50-22llvm/tools/llvm-driver/llvm-driver.cpp
+27-0llvm/include/llvm/Support/LLVMDriver.h
+0-20llvm/unittests/Support/LLVMToolSession/CMakeLists.txt
+77-39631 files not shown
+105-43537 files

HardenedBSD/src f97416elibexec/rc/rc.d nuageinit, share/man/man4 ice.4 enic.4

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+382-75sys/dev/ice/ice_iov.c
+13-24share/man/man4/enic.4
+6-8libexec/rc/rc.d/nuageinit
+10-2share/man/man4/ice.4
+4-7sys/netinet/ip_icmp.c
+3-5sys/netinet6/icmp6.c
+418-1213 files not shown
+421-1219 files

HardenedBSD/src 7cfbb77libexec/rc/rc.d nuageinit, share/man/man4 ice.4 enic.4

Merge remote-tracking branch 'rad/hardened/current/master' into hardened/current/pledge
DeltaFile
+382-75sys/dev/ice/ice_iov.c
+13-24share/man/man4/enic.4
+6-8libexec/rc/rc.d/nuageinit
+10-2share/man/man4/ice.4
+4-7sys/netinet/ip_icmp.c
+3-5sys/netinet6/icmp6.c
+418-1213 files not shown
+421-1219 files

HardenedBSD/src 54cba02libexec/rc/rc.d nuageinit, share/man/man4 ice.4 enic.4

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+382-75sys/dev/ice/ice_iov.c
+13-24share/man/man4/enic.4
+6-8libexec/rc/rc.d/nuageinit
+10-2share/man/man4/ice.4
+4-7sys/netinet/ip_icmp.c
+3-5sys/netinet6/icmp6.c
+418-1213 files not shown
+421-1219 files

HardenedBSD/ports 51aec89databases/postgis33 pkg-plist, databases/postgis34 pkg-plist

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+659-0databases/postgis37/pkg-plist
+93-65databases/postgis33/pkg-plist
+35-70japanese/jvim3/Makefile
+67-25databases/postgis34/pkg-plist
+81-0databases/postgis37/Makefile
+74-0www/py-proxpi/files/extra-patch-file-option
+1,009-160120 files not shown
+1,749-545126 files

LLVM/project 4a32dd7clang/tools/clang-sycl-linker ClangSYCLLinker.cpp

clang-sycl-linker: Compute the DataLayout from the triple

Seed the module's DataLayout from the target triple directly rather than from
TargetMachine::createDataLayout().

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+1-1clang/tools/clang-sycl-linker/ClangSYCLLinker.cpp
+1-11 files

FreeNAS/freenas ae7e97esrc/middlewared/middlewared/api/v26_0_0 s3.py, tests/api2 test_s3_bucket.py

NAS-143902 / 26.0.0-RC.1 / Default S3 multipart_etag to MINTED (by yocalebo) (by bugclerk) (#19796)

New buckets get MINTED unless the caller asks for COMPOSITE. Existing
buckets keep their stored value. Local perf tests on real hardware shows
MINTED is significantly faster. Let's default to it for now.

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


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

Co-authored-by: Caleb St. John <30729806+yocalebo at users.noreply.github.com>
DeltaFile
+4-7src/middlewared/middlewared/api/v26_0_0/s3.py
+2-2tests/api2/test_s3_bucket.py
+6-92 files

LLVM/project a3d4579clang/lib/Sema SemaInit.cpp SemaExpr.cpp, clang/test/AST ast-dump-default-init.cpp

[clang][Sema] Separate aggregate default member initializer evaluation (#219288)

A default member initializer used by a constructor is a separate
full-expression, while one used during aggregate initialization belongs
to the full-expression containing the aggregate initialization.

This patch split the two building paths so aggregate initialization
rebuilds the initializer in the surrounding evaluation context.

Fixes https://github.com/llvm/llvm-project/issues/85601.

---------

Signed-off-by: yronglin <yronglin777 at gmail.com>
DeltaFile
+144-78clang/lib/Sema/SemaExpr.cpp
+112-0clang/test/SemaCXX/aggregate-default-member-initializers.cpp
+29-38clang/test/AST/ast-dump-default-init.cpp
+49-0clang/unittests/AST/ASTExprTest.cpp
+42-0clang/test/CodeGenCXX/aggregate-default-member-initializers.cpp
+7-21clang/lib/Sema/SemaInit.cpp
+383-1377 files not shown
+448-15413 files

LLVM/project e863ca8llvm/lib/Target/AMDGPU SIInstrInfo.cpp VOP2Instructions.td, llvm/test/CodeGen/AMDGPU coexec-sched-flavor-classification.mir

[AMDGPU] Model GFX1250 VALU blocking cycles (#222483)

Some gfx1250 VALU instructions block the VALU pipe for N cycles, and the
CoExec scheduler must model that occupancy. The existing SchedModel
cannot represent this given current modelling constraints (see #202775).

Attach GFX1250BlockingCycles to the VOP instruction definitions and emit
a searchable table so SIInstrInfo::getBlockingCycles() can report the
occupancy. CoExec uses that to classify multi-cycle VALU and to account
for blocking when computing HWUI cycles.

As part of this change, VOPC_Pseudo now inherits from VOP_Pseudo.

Main Author: Jeffrey Byrnes <jeffrey.byrnes at amd.com>
DeltaFile
+270-6llvm/test/CodeGen/AMDGPU/coexec-sched-flavor-classification.mir
+60-40llvm/lib/Target/AMDGPU/VOP3Instructions.td
+23-16llvm/lib/Target/AMDGPU/VOP1Instructions.td
+13-15llvm/lib/Target/AMDGPU/VOPCInstructions.td
+12-8llvm/lib/Target/AMDGPU/VOP2Instructions.td
+19-0llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+397-855 files not shown
+429-8711 files

LLVM/project 4569873clang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/Dialect/Transforms EHABILowering.cpp

[CIR][EH] Implement EH ABI lowering for dynamic exception specification (#223862)

This change implements EH ABI lowering for Itanium targets for the CIR
constructs used to represent dynamic exception specifications. This also
includes minor changes to lower new forms of the
cir.eh.inflight_exception operation to the LLVM dialect.

Code generation support for dynamic exception specification and tests
for complete lowering of generated CIR to LLVM IR will be added in a
follow-up change.

Assisted-by: Cursor / various models
DeltaFile
+106-55clang/lib/CIR/Dialect/Transforms/EHABILowering.cpp
+156-0clang/test/CIR/Transforms/eh-abi-lowering-eh-spec.cir
+0-81clang/test/CIR/Transforms/eh-abi-lowering-eh-spec-nyi.cir
+33-6clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+33-1clang/test/CIR/Lowering/eh-inflight.cir
+1-1clang/include/clang/CIR/Dialect/IR/CIROps.td
+329-1446 files

LLVM/project 6d1d34cclang/test/Analysis/Scalable/source-edit-generation cpp-bounded-buffers-replacements.cpp multi-tu-edits-merge.cpp

[SSAF] Mark two failing tests as unsupported (#223976)

As a developer of the clang static analyzer, I'm using the build target
`check-clang-analysis` [1] to build and test my changes.

This workflow was recently broken by two new SSAF testcases under
`Analysis/Scalable` that fail on my machine (where I don't build any
SSAF-specific targets and perhaps don't have some SSAF-specific tools).
In both of these tests a `clang-apply-replacements` RUN line fails with
`clang-apply-replacements: symbol lookup error:
clang-apply-replacements: undefined symbol:
_ZN4llvm2cl6OptionC2ENS0_18NumOccurrencesFlagENS0_12OptionHidden`

These two files were added by 77a6638e4f61e1827001cce202d8f785815a341b
and 4b08871f7ffe6ad818147145f8b6103e6c9b2c95.

In this commit I'm marking these two files as unsupported, because I'm
not familiar with SSAF and don't have the capacity to troubleshoot them.
(I'm not using XFAIL because they are presumably passing on some other

    [10 lines not shown]
DeltaFile
+2-0clang/test/Analysis/Scalable/source-edit-generation/multi-tu-edits-merge.cpp
+1-0clang/test/Analysis/Scalable/source-edit-generation/cpp-bounded-buffers-replacements.cpp
+3-02 files

LLVM/project cd376declang/test/CodeGen/WebAssembly target-abi-module-flag.c, llvm/lib/Target/WebAssembly WebAssemblySubtarget.cpp WebAssemblySubtarget.h

WebAssembly: Respect target-abi module flag

Previously this relied on the TargetABI MCOptions field and ignored
the IR flag.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+32-0llvm/test/CodeGen/WebAssembly/multivalue-module-abi.ll
+14-0clang/test/CodeGen/WebAssembly/target-abi-module-flag.c
+7-6llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+12-0llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
+9-1llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
+4-3llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
+78-105 files not shown
+88-2311 files

FreeNAS/freenas 1a4d0de

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 6cf84a2src/middlewared/middlewared/api/v26_0_0 s3.py, tests/api2 test_s3_bucket.py

NAS-143902 / 26.0.0 / Default S3 multipart_etag to MINTED (by yocalebo) (#19795)

New buckets get MINTED unless the caller asks for COMPOSITE. Existing
buckets keep their stored value. Local perf tests on real hardware shows
MINTED is significantly faster. Let's default to it for now.

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

Co-authored-by: Caleb St. John <30729806+yocalebo at users.noreply.github.com>
DeltaFile
+6-7tests/sharing_protocols/s3/test_s3_etag.py
+4-7src/middlewared/middlewared/api/v26_0_0/s3.py
+8-1tests/sharing_protocols/s3/conftest.py
+2-2tests/api2/test_s3_bucket.py
+1-1tests/sharing_protocols/s3/README.md
+21-185 files

LLVM/project fa406ballvm/lib/Transforms/Vectorize VPlanAnalysis.cpp VPlanUtils.cpp

[VPlan] Use make_isa_range instead of dyn_cast/continue (NFC) (#222770)

Simplify loops using dyn_cast + early continue using make_isa_range,
added in https://github.com/llvm/llvm-project/pull/223414.

PR: https://github.com/llvm/llvm-project/pull/222770
DeltaFile
+117-143llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+22-30llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+15-17llvm/lib/Transforms/Vectorize/VPlanLowering.cpp
+13-14llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
+11-11llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+8-10llvm/lib/Transforms/Vectorize/VPlanAnalysis.cpp
+186-2254 files not shown
+207-25210 files

LLVM/project edd57f2llvm/lib/Target/AMDGPU SIInstrInfo.cpp GCNDPPCombine.cpp, llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp

[AMDGPU] Refactor isDPALU_DPP to only check if the instruction requires the feature

Previously the helper function was a combination of checking if the instruction required the feature and if the feature is available. This behavior diverges from similar isDPALU_DPP32BitOpc and can cause confusion. This refactor aligns the two for consistency, and users should also check if the feature is available if needed
DeltaFile
+11-12llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
+4-6llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+1-5llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+1-0llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+1-0llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
+1-0llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+19-236 files

LLVM/project e923058llvm/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

LLVM/project 5b02226llvm/lib/Target/AMDGPU AMDGPUFeatures.td AMDGPU.td, llvm/test/TableGen AMDGPUTargetDefGenericClassification.td

[AMDGPU] Classify generic-target features

Classify features used by generic targets but absent from some covered
GPUs as AMDGPUGenericAnyFeature. This covers the gfx11 workarounds,
gfx12.5 register fixup and WMMA timing, and LDS size and bank count.

Derive the classified features directly from the SubtargetFeature subclass
and preserve their existing predicates. Keep RequiresCOV6 outside this
policy because it is specific to generic targets and absent from their
covered GPUs.

Test the real target definitions, missing support for classified features,
and the existing all-member requirement for instruction capabilities.

Change-Id: I9fffbe532b8b5bc8875f20f394f29e2e6899f52e
DeltaFile
+70-0llvm/test/TableGen/AMDGPUTargetDefGenericClassification.td
+40-24llvm/lib/Target/AMDGPU/AMDGPU.td
+3-3llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
+0-2llvm/utils/TableGen/Basic/AMDGPUTargetDefEmitter.cpp
+113-294 files

LLVM/project fc1b475llvm/lib/Target/AMDGPU AMDGPUTargetParser.td, llvm/test/TableGen AMDGPUTargetDefErrors.td AMDGPUTargetDefGenericFeatures.td

[AMDGPU][NFC] Allow selected generic features on any covered GPU

Add AMDGPUGenericAnyFeature so individual feature classes can require
support from at least one covered GPU. Check explicitly marked features
even when they are not frontend-visible, while retaining the all-member
check for ordinary frontend-visible features.

Follow implied features using their own validation rules. Require named
generic targets to cover at least one concrete AMDGPU GPU, rejecting self
references, other generic targets, pseudo targets, and invalid members.

Cover partial support, missing support, exact numeric-feature membership,
backend-only features, implications, and malformed coverage lists with
TableGen tests. Generated target definitions remain unchanged.

Change-Id: Id6ff521e92750a953be54dcc89d98e1b94eb16e2
DeltaFile
+166-0llvm/test/TableGen/AMDGPUTargetDefGenericFeatures.td
+38-17llvm/utils/TableGen/Basic/AMDGPUTargetDefEmitter.cpp
+14-5llvm/lib/Target/AMDGPU/AMDGPUTargetParser.td
+1-1llvm/test/TableGen/AMDGPUTargetDefErrors.td
+219-234 files

FreeNAS/freenas 04a8861src/middlewared/middlewared/api/v26_0_0 s3.py, src/middlewared/middlewared/api/v27_0_0 s3.py

NAS-143902 / 27.0.0-BETA.1 / Default S3 multipart_etag to MINTED (#19793)

New buckets get MINTED unless the caller asks for COMPOSITE. Existing
buckets keep their stored value. Local perf tests on real hardware shows
MINTED is significantly faster. Let's default to it for now.
DeltaFile
+6-7tests/sharing_protocols/s3/test_s3_etag.py
+4-7src/middlewared/middlewared/api/v27_0_0/s3.py
+4-7src/middlewared/middlewared/api/v26_0_0/s3.py
+8-1tests/sharing_protocols/s3/conftest.py
+2-2tests/api2/test_s3_bucket.py
+1-1tests/sharing_protocols/s3/README.md
+25-256 files

LLVM/project 4313eadmlir/python/mlir/dialects ext.py, mlir/test/python/dialects ext.py

[MLIR][Python] Support bare Operand and Result annotations (#220216)

Operation definitions currently need to spell unconstrained operands and
results as `Operand[Any]` and `Result[Any]`. Since `Any` is the natural
default when no type constraint is intended, this is unnecessarily
verbose and may require importing `Any` solely for these annotations.

This change allows bare `Operand` and `Result` annotations as a simpler
equivalent spelling.

Previously:

```python
from typing import Any

class MyOp(MyDialect.Operation, name="my_op"):
    lhs: Operand[Any]
    rhs: Operand[Any]
    res: Result[Any]

    [14 lines not shown]
DeltaFile
+95-0mlir/test/python/dialects/ext.py
+10-2mlir/python/mlir/dialects/ext.py
+105-22 files

LLVM/project ab574c0llvm/lib/Target/AMDGPU AMDGPUTargetParser.td, llvm/test/TableGen AMDGPUTargetDefErrors.td AMDGPUTargetDefGenericFeatures.td

[AMDGPU][NFC] Allow selected generic features on any covered GPU

Add AMDGPUGenericAnyFeature so individual feature classes can require
support from at least one covered GPU. Check explicitly marked features
even when they are not frontend-visible, while retaining the all-member
check for ordinary frontend-visible features.

Follow implied features using their own validation rules. Require named
generic targets to cover at least one concrete AMDGPU GPU, rejecting self
references, other generic targets, pseudo targets, and invalid members.

Cover partial support, missing support, exact numeric-feature membership,
backend-only features, implications, and malformed coverage lists with
TableGen tests. Generated target definitions remain unchanged.
DeltaFile
+166-0llvm/test/TableGen/AMDGPUTargetDefGenericFeatures.td
+38-17llvm/utils/TableGen/Basic/AMDGPUTargetDefEmitter.cpp
+14-5llvm/lib/Target/AMDGPU/AMDGPUTargetParser.td
+1-1llvm/test/TableGen/AMDGPUTargetDefErrors.td
+219-234 files

LLVM/project 903cf72clang/docs ReleaseNotes.md, clang/include/clang/Basic DiagnosticSemaKinds.td

[Clang][Sema] Improve diagnostic when using imag with non complex as lvalue (#223510)

Improve the Clang diagnostic when the unary `__imag` operator with a
non-complex type operand is used as an lvalue

Issue #222383
DeltaFile
+14-4clang/test/SemaCXX/imag-lvalue-with-non-complex-operand.cpp
+12-1clang/lib/Sema/SemaExpr.cpp
+2-0clang/include/clang/Basic/DiagnosticSemaKinds.td
+2-0clang/docs/ReleaseNotes.md
+30-54 files

LLVM/project 67e0140libc/test/src/mathvec CMakeLists.txt sinf_test.cpp

[libc][mathvec] Fix sinf unit test failures (#224339)

Since mathvec compares directly to the scalar math result, and scalar
sinf has a specific LIBC_MATH_HAS_INTERMEDIATE_COMP_IN_FLOAT
implementation. Mathvec unit tests fail when that flag is set, as there
is currently no mathvec equivalent.

This patch disables the sinf unit tests when the
LIBC_MATH_HAS_INTERMEDIATE_COMP_IN_FLOAT flag is set until such
implementation is created.
DeltaFile
+5-0libc/test/src/mathvec/sinf_test.cpp
+1-0libc/test/src/mathvec/CMakeLists.txt
+6-02 files

LLVM/project a1eae51lldb/source/Target AssertFrameRecognizer.cpp, lldb/test/Shell/Recognizer assert.test

[lldb][windows] add assert frame recognizer Windows (#224269)

This patch implements `AssertFrameRecognizer` on Windows.

Since the Windows C Runtime can be either statically or dynamically
linked, lldb can't match the module name to be able to support both.
Therefore, the matches on `abort` and `_wassert` do not check the name
of the module.

The `assert.test` test was also relaxed to check the Windows error
format (`Exception 0xc0000409`), since Windows surfaces `__fastfail` as
a `STATUS_STACK_BUFFER_OVERRUN` exception rather than a POSIX signal.

rdar://175328961

---

This relands https://github.com/llvm/llvm-project/pull/197282, reverted
in https://github.com/llvm/llvm-project/pull/198263 for two buildbot

    [13 lines not shown]
DeltaFile
+40-13lldb/source/Target/AssertFrameRecognizer.cpp
+4-3lldb/test/Shell/Recognizer/assert.test
+44-162 files

FreeNAS/freenas fbab3fasrc/middlewared/middlewared/plugins/zfs resource_create.py create_rules.py, tests/api2 test_zfs_resource_create.py

`check_parent_is_filesystem` so that `test_zfs_resource_create_under_a_volume_parent_is_rejected` does not depend on tiering

(cherry picked from commit 407169c23ba5522cf176f9878d0484db5fbff987)
DeltaFile
+18-9tests/api2/test_zfs_resource_create.py
+18-0src/middlewared/middlewared/plugins/zfs/create_rules.py
+2-0src/middlewared/middlewared/plugins/zfs/resource_create.py
+38-93 files

FreeNAS/freenas c7c3b61tests/api2 test_zfs_resource_unlocked_zvols_fast.py test_zfs_resource_destroy.py

ZFS tests

(cherry picked from commit c4e58f858967f492f9f8fec332c5fc0743ac70e4)
DeltaFile
+129-149tests/api2/test_zfs_resource_create.py
+174-0tests/api2/test_zfs_resource_mount_unmount.py
+172-1tests/api2/test_zfs_resource_snapshot_count.py
+170-1tests/api2/test_zfs_resource_query.py
+150-1tests/api2/test_zfs_resource_destroy.py
+127-0tests/api2/test_zfs_resource_unlocked_zvols_fast.py
+922-1528 files not shown
+1,367-15414 files

FreeNAS/freenas 819332etests/api2 test_zfs_resource_unlocked_zvols_fast.py test_zfs_resource_destroy.py

NAS-143803 / 27.0.0-BETA.1 / ZFS tests (#19756)
DeltaFile
+139-150tests/api2/test_zfs_resource_create.py
+174-0tests/api2/test_zfs_resource_mount_unmount.py
+172-1tests/api2/test_zfs_resource_snapshot_count.py
+170-1tests/api2/test_zfs_resource_query.py
+150-1tests/api2/test_zfs_resource_destroy.py
+127-0tests/api2/test_zfs_resource_unlocked_zvols_fast.py
+932-15310 files not shown
+1,397-15516 files

FreeBSD/src 66d2711share/man/man4 ice.4, sys/dev/ice ice_iov.h ice_iov.c

ice: Fail closed when VF reset does not complete

ice_reset_vf() logs failures to drain PCIe transactions, issue the
mandatory zero-queue command, or observe VFR completion, but still
publishes VFACTIVE.  A VF can resume against reset state which the PF
knows is incomplete.

Return an error from the reset operation and retain a reset-failed flag
when any mandatory stage fails.  Reject ordinary virtchnl requests while
the failure persists.  Publish VFACTIVE only after every stage succeeds.
A later VFLR or PF rebuild can recover the VF and clear the failure.

Remove tracked queue leaves before clearing their software state.  The
reset-only AdminQ command drains hardware queues but does not update the
shared scheduler database; losing that bookkeeping can strand queue
resources across VF teardown and recreation.

After a successful VF reset, discard software switch filter state whose
hardware rules were reset and clear guest-owned MAC and VLAN tracking.

    [16 lines not shown]
DeltaFile
+109-17sys/dev/ice/ice_iov.c
+4-0share/man/man4/ice.4
+1-0sys/dev/ice/ice_iov.h
+114-173 files