LLVM/project 6412767clang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/Lowering/DirectToLLVM LowerToLLVM.cpp

[CIR] Fix mixing of catch-all and type-specific catch handlers (#190285)

If a try block has a catch-all handler and one or more type-specific
catch handlers, we were failing to generate the null type specifier when
lowering from CIR to LLVM IR. This change fixes that problem.

Assisted-by: Cursor / claude-4.6-opus-high
DeltaFile
+172-0clang/test/CIR/CodeGen/try-catch-all-with-cleanup.cpp
+27-0clang/test/CIR/Lowering/eh-inflight.cir
+20-0clang/test/CIR/IR/eh-inflight.cir
+8-8clang/test/CIR/Transforms/eh-abi-lowering-itanium.cir
+10-5clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+9-0clang/include/clang/CIR/Dialect/IR/CIROps.td
+246-131 files not shown
+249-137 files

LLVM/project 5b56352clang/lib/CIR/CodeGen CIRGenFunction.h CIRGenDecl.cpp, clang/test/CIR/CodeGen cleanup.cpp

[CIR] Implement cleanups for temporaries with automatic duration (#189754)

This implements handling for cleanup of temporary variables with
automatic storage duration. This is a simplified implementation that
doesn't yet handle the possibility of exceptions being thrown within
this cleanup scope or the cleanup scope being inside a conditional
operation. Support for those cases will be added later.
DeltaFile
+47-3clang/lib/CIR/CodeGen/CIRGenFunction.h
+31-0clang/lib/CIR/CodeGen/CIRGenDecl.cpp
+15-0clang/lib/CIR/CodeGen/EHScopeStack.h
+15-0clang/test/CIR/CodeGen/cleanup.cpp
+15-0clang/lib/CIR/CodeGen/CIRGenCleanup.cpp
+3-2clang/lib/CIR/CodeGen/CIRGenExpr.cpp
+126-56 files

LLVM/project 62bbe3fllvm/lib/Target/AMDGPU R600TargetTransformInfo.h, llvm/lib/Target/DirectX DirectXTargetTransformInfo.h

Fix buildbot failure by explicitly disabling partial reductions in TTI. (#190165)

Partial reductions were previously disabled by default, but by
implementing a generic cost-model in BasicTTIImpl (#189905) this now
accidentally enables the use of those when vectorising loops for targets
that may not support this yet.
DeltaFile
+11-0llvm/lib/Target/VE/VETargetTransformInfo.h
+9-0llvm/lib/Target/AMDGPU/R600TargetTransformInfo.h
+9-0llvm/lib/Target/DirectX/DirectXTargetTransformInfo.h
+9-0llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
+9-0llvm/lib/Target/LoongArch/LoongArchTargetTransformInfo.h
+9-0llvm/lib/Target/Mips/MipsTargetTransformInfo.h
+56-04 files not shown
+92-010 files

FreeNAS/freenas 4144abfsrc/middlewared/middlewared/alert/source zfs_tier.py, src/middlewared/middlewared/api/v26_0_0 zfs_tier.py

Add tiering API

This commit modifies the truenas API to wrap around tiering design
in the following ways:

A new namespace zfs.tier. will be added. This contains global
configuration for systemwide tiering settings. Parameters include

- enabled: whether to enable tiering. This feature requries changes
  to global ZFS behavior and we will have various internal checks
  that check this value in datastore extend context methods.

- max_concurrent_jobs: the maximum number of concurrent rewrite
  jobs (tier migrations for existing data).

- min_available_space: point in available space for a dataset where
  tier migrations will error out.

The namespace will also support APIs for managing and querying

    [9 lines not shown]
DeltaFile
+710-0src/middlewared/middlewared/plugins/zfs/tier.py
+455-0tests/api2/test_zfs_tier.py
+294-0src/middlewared/middlewared/api/v26_0_0/zfs_tier.py
+294-0src/middlewared/middlewared/api/v27_0_0/zfs_tier.py
+126-0src/middlewared/middlewared/alert/source/zfs_tier.py
+59-28src/middlewared/middlewared/plugins/system_dataset/hierarchy.py
+1,938-2832 files not shown
+2,154-3838 files

NetBSD/pkgsrc-wip 61b60e6anvil distinfo go-modules.mk, anvil/patches patch-editor_go.sum patch-editor_go.mod

anvil: update to 0.7 and fixed building/running

Now uses my modified version of gio and gio-shader to support NetBSD.
Still need to figure out how to handle the 'extras' since they
require extra go modules. The program does run now!
DeltaFile
+255-181anvil/distinfo
+76-61anvil/go-modules.mk
+129-0anvil/work-go-modules.mk
+80-0anvil/patches/patch-editor_go.sum
+28-29anvil/Makefile
+47-0anvil/patches/patch-editor_go.mod
+615-27114 files not shown
+675-45720 files

FreeBSD/src 6a13864tests/sys/kern timerfd.c

timerfd: Guard expected performance failure

During the timerfd__periodic_timer_performance test, only expect
failures when the expiration count is less than 400000000. This
prevents the test from being reported as a true failure in environments
where scheduling latency is high enough to delay timerfd wakeups.

Fixes:          cb692380f1e0 ("timerfd: Expect periodic timer ...")
MFC after:      1 week

(cherry picked from commit 4b16ff49bf4bf875997fe4c80a0afc0d440b7aac)
DeltaFile
+2-1tests/sys/kern/timerfd.c
+2-11 files

FreeBSD/src 6e0d0fetests/sys/kern timerfd.c Makefile

timerfd: Expect periodic timer performance failures

The current timerfd implementation fails to correctly count events on a
nanosecond callout interval. The timerfd__periodic_timer_performance
test detects this and reports failure.

Mark this test as an expected failure so it isn't flagged by CI. A link
to the bug report is attached to the test for reference.

While we're here, clean up some minor style and Make issues.

Fixes:          834c1ba793d9 ("timerfd: Add tests")
MFC after:      1 week

(cherry picked from commit cb692380f1e05ffc4184877844e93051f24ed302)
DeltaFile
+2-3tests/sys/kern/timerfd.c
+0-1tests/sys/kern/Makefile
+2-42 files

FreeBSD/src d24f87dtests/sys/kern timerfd.c Makefile

timerfd: Add tests

Take Jan Kokemuller's timerfd tests from the epoll-shim project,
stripping out code that isn't directly related to FreeBSD.

Reviewed by:            markj
Differential Revision:  https://reviews.freebsd.org/D55789
MFC after:              2 weeks

(cherry picked from commit 834c1ba793d900b791e19ff449b1e0b96fb494a0)
DeltaFile
+1,318-0tests/sys/kern/timerfd.c
+3-0tests/sys/kern/Makefile
+1,321-02 files

FreeBSD/src f05e8fcsys/kern sys_timerfd.c

timerfd: Wake up on discontinuous jump

If a discontinous realtime clock change occurs and sets any TFD_JUMPED
bits on the timerfd, then wake up waiting readers. This fixes failures
from the timerfd_root__clock_change_notification test case.

MFC after: 2 weeks

(cherry picked from commit b11fba41265ae132acfb05587a6dbf60334d3279)
DeltaFile
+11-3sys/kern/sys_timerfd.c
+11-31 files

FreeBSD/src 3c00f60sys/kern sys_timerfd.c, tests/sys/kern timerfd.c

timerfd: Fix interval callout scheduling

When a timerfd interval callout misses its scheduled activation time, a
differential is calculated based on the actual activation time and the
scheduled activation time. This differential is divided by the timerfd's
interval time and the quotient is added to the timerfd's counter.

Before this change, the next callout was scheduled to activate at:
scheduled activation time + timerfd interval.

This change fixes the scheduling of the next callout to activate at:
actual activation time + timerfd interval - remainder.

Reviewed by:            markj
Differential Revision:  https://reviews.freebsd.org/D55790
MFC after:              2 weeks

(cherry picked from commit 85c0f1a87da1fd1eb3e646e86f70e630c48da91a)
DeltaFile
+29-0tests/sys/kern/timerfd.c
+13-11sys/kern/sys_timerfd.c
+42-112 files

FreeBSD/src db0096dsys/kern sys_timerfd.c

timerfd: Use saturating sbintime conversions

Some timerfd consumers set expirations with timespec tv_sec components
larger than 2^31 - 1. In such cases, converting that timespec to
sbintime results in data loss or sign flip, yielding a shorter
expiration than desired.

To avoid this problem, use saturating timespec-to-sbintime conversion
functions. These will clamp the converted sbintime to SBT_MAX under
circumstances where the normal conversion functions would overflow.

Saturating conversions still result in data loss, but the consequences
are less severe, causing problems only after SBT_MAX (~68 years) of
system uptime elapses.

Reviewed by:            imp
Differential Revision:  https://reviews.freebsd.org/D55792
MFC after:              2 weeks

(cherry picked from commit 0e8f351be7935729bf67dc1b7aa4d178cf154931)
DeltaFile
+5-5sys/kern/sys_timerfd.c
+5-51 files

FreeBSD/src a5a4a2bsys/sys time.h

sys/time: Add saturating sbt conversions

When converting from timespec to sbintime, the timespec's 64-bit tv_sec
component is shifted to the left 32 bits, causing any information in the
upper 32 bits to be lost.

This data loss during conversion can turn timespecs with very large
tv_sec counters into sbintimes that represent much smaller time
durations.

Add tstosbt_sat() and tvtosbt_sat(), which are saturating versions of
tstosbt and tvtosbt. With these routines, any overflow resulting from
the conversion is clamped to [-SBT_MAX - 1, SBT_MAX].

Reviewed by:            imp, markj
Differential Revision:  https://reviews.freebsd.org/D55791
MFC after:              2 weeks

(cherry picked from commit e3799530b3ba38567f8052b9e107884609fc71ea)
DeltaFile
+21-0sys/sys/time.h
+21-01 files

FreeBSD/src c10591esys/kern sys_timerfd.c

timerfd: Suppress kqueue readability after jump read

Do not report EVFILT_READ after reading a discontinuous clock jump.
This makes the kqueue filter consistent with Linux epoll behavior
and timerfd_poll(), which already checks tfd_jumped != TFD_READ before
reporting POLLIN.

MFC after: 2 weeks

(cherry picked from commit 33345b8834859cf1ad7f1256f3a34b4a7c83e8e8)
DeltaFile
+1-1sys/kern/sys_timerfd.c
+1-11 files

FreeBSD/src 0b7e325tests/sys/kern timerfd.c Makefile

timerfd: Expect periodic timer performance failures

The current timerfd implementation fails to correctly count events on a
nanosecond callout interval. The timerfd__periodic_timer_performance
test detects this and reports failure.

Mark this test as an expected failure so it isn't flagged by CI. A link
to the bug report is attached to the test for reference.

While we're here, clean up some minor style and Make issues.

Fixes:          834c1ba793d9 ("timerfd: Add tests")
MFC after:      1 week

(cherry picked from commit cb692380f1e05ffc4184877844e93051f24ed302)
DeltaFile
+2-3tests/sys/kern/timerfd.c
+0-1tests/sys/kern/Makefile
+2-42 files

FreeBSD/src 53c01dfsys/kern sys_timerfd.c

timerfd: Use saturating sbintime conversions

Some timerfd consumers set expirations with timespec tv_sec components
larger than 2^31 - 1. In such cases, converting that timespec to
sbintime results in data loss or sign flip, yielding a shorter
expiration than desired.

To avoid this problem, use saturating timespec-to-sbintime conversion
functions. These will clamp the converted sbintime to SBT_MAX under
circumstances where the normal conversion functions would overflow.

Saturating conversions still result in data loss, but the consequences
are less severe, causing problems only after SBT_MAX (~68 years) of
system uptime elapses.

Reviewed by:            imp
Differential Revision:  https://reviews.freebsd.org/D55792
MFC after:              2 weeks

(cherry picked from commit 0e8f351be7935729bf67dc1b7aa4d178cf154931)
DeltaFile
+5-5sys/kern/sys_timerfd.c
+5-51 files

FreeBSD/src 2d10377tests/sys/kern timerfd.c

timerfd: Guard expected performance failure

During the timerfd__periodic_timer_performance test, only expect
failures when the expiration count is less than 400000000. This
prevents the test from being reported as a true failure in environments
where scheduling latency is high enough to delay timerfd wakeups.

Fixes:          cb692380f1e0 ("timerfd: Expect periodic timer ...")
MFC after:      1 week

(cherry picked from commit 4b16ff49bf4bf875997fe4c80a0afc0d440b7aac)
DeltaFile
+2-1tests/sys/kern/timerfd.c
+2-11 files

FreeBSD/src 7f087edsys/sys time.h

sys/time: Add saturating sbt conversions

When converting from timespec to sbintime, the timespec's 64-bit tv_sec
component is shifted to the left 32 bits, causing any information in the
upper 32 bits to be lost.

This data loss during conversion can turn timespecs with very large
tv_sec counters into sbintimes that represent much smaller time
durations.

Add tstosbt_sat() and tvtosbt_sat(), which are saturating versions of
tstosbt and tvtosbt. With these routines, any overflow resulting from
the conversion is clamped to [-SBT_MAX - 1, SBT_MAX].

Reviewed by:            imp, markj
Differential Revision:  https://reviews.freebsd.org/D55791
MFC after:              2 weeks

(cherry picked from commit e3799530b3ba38567f8052b9e107884609fc71ea)
DeltaFile
+21-0sys/sys/time.h
+21-01 files

FreeBSD/src 9d71069sys/kern sys_timerfd.c

timerfd: Suppress kqueue readability after jump read

Do not report EVFILT_READ after reading a discontinuous clock jump.
This makes the kqueue filter consistent with Linux epoll behavior
and timerfd_poll(), which already checks tfd_jumped != TFD_READ before
reporting POLLIN.

MFC after: 2 weeks

(cherry picked from commit 33345b8834859cf1ad7f1256f3a34b4a7c83e8e8)
DeltaFile
+1-1sys/kern/sys_timerfd.c
+1-11 files

FreeBSD/src 6a5176asys/kern sys_timerfd.c

timerfd: Wake up on discontinuous jump

If a discontinous realtime clock change occurs and sets any TFD_JUMPED
bits on the timerfd, then wake up waiting readers. This fixes failures
from the timerfd_root__clock_change_notification test case.

MFC after: 2 weeks

(cherry picked from commit b11fba41265ae132acfb05587a6dbf60334d3279)
DeltaFile
+11-3sys/kern/sys_timerfd.c
+11-31 files

FreeBSD/src 9b78538sys/kern sys_timerfd.c, tests/sys/kern timerfd.c

timerfd: Fix interval callout scheduling

When a timerfd interval callout misses its scheduled activation time, a
differential is calculated based on the actual activation time and the
scheduled activation time. This differential is divided by the timerfd's
interval time and the quotient is added to the timerfd's counter.

Before this change, the next callout was scheduled to activate at:
scheduled activation time + timerfd interval.

This change fixes the scheduling of the next callout to activate at:
actual activation time + timerfd interval - remainder.

Reviewed by:            markj
Differential Revision:  https://reviews.freebsd.org/D55790
MFC after:              2 weeks

(cherry picked from commit 85c0f1a87da1fd1eb3e646e86f70e630c48da91a)
DeltaFile
+29-0tests/sys/kern/timerfd.c
+13-11sys/kern/sys_timerfd.c
+42-112 files

FreeBSD/src c484a2dtests/sys/kern timerfd.c Makefile

timerfd: Add tests

Take Jan Kokemuller's timerfd tests from the epoll-shim project,
stripping out code that isn't directly related to FreeBSD.

Reviewed by:            markj
Differential Revision:  https://reviews.freebsd.org/D55789
MFC after:              2 weeks

(cherry picked from commit 834c1ba793d900b791e19ff449b1e0b96fb494a0)
DeltaFile
+1,318-0tests/sys/kern/timerfd.c
+3-0tests/sys/kern/Makefile
+1,321-02 files

OpenBSD/ports WqiBEqTarchivers/xz Makefile distinfo

   archivers/xz: update to 5.8.3

   Includes a fix for
   CVE-2026-34743: Buffer overflow in lzma_index_append()
VersionDeltaFile
1.55.2.1+2-2archivers/xz/Makefile
1.27.2.1+2-2archivers/xz/distinfo
+4-42 files

FreeNAS/freenas c7aeabfsrc/middlewared/middlewared/utils/disks_ disk_class.py

address review
DeltaFile
+5-1src/middlewared/middlewared/utils/disks_/disk_class.py
+5-11 files

OpenBSD/ports lKS0co7devel/boost Makefile

   devel/boost: Fix build on mips64

   Initial diff by and OK kn@
   OK Brad (maintainer), jca@
VersionDeltaFile
1.161+6-1devel/boost/Makefile
+6-11 files

NetBSD/src PoXVA4rsys/arch/m68k/include frame.h, sys/arch/m68k/m68k m68k_syscall.c m68k_trap.c

   machine_userret -> userret
VersionDeltaFile
1.56+6-13sys/arch/m68k/m68k/m68k_syscall.c
1.9+3-8sys/arch/m68k/m68k/m68k_trap.c
1.40+3-1sys/arch/m68k/include/frame.h
+12-223 files

LLVM/project 1484e0flibc/cmake/modules prepare_libc_gpu_build.cmake LLVMLibCTestRules.cmake, libc/docs/gpu building.rst

[libc] Use CMAKE_CROSSCOMPILING_EMULATOR instead searching for `llvm-gpu-loader' (#189417)

Summary:
We already handle this with other targets, we should be able to unify
the handling here.
DeltaFile
+0-18libc/cmake/modules/prepare_libc_gpu_build.cmake
+1-14libc/cmake/modules/LLVMLibCTestRules.cmake
+3-8libc/test/CMakeLists.txt
+4-4libc/test/lit.site.cfg.py.in
+4-3libc/docs/gpu/building.rst
+6-0llvm/runtimes/CMakeLists.txt
+18-472 files not shown
+19-498 files

NetBSD/src pvu6jHqsys/arch/m68k/include bus_dma.h, sys/arch/m68k/m68k bus_dma.c

   Merge mvme68k and virt68k bus_dma into the common m68k bus_dma and
   remove their local copies.  Minor cleanup tweaks to other platforms
   that already use the common version.
VersionDeltaFile
1.42+246-143sys/arch/m68k/m68k/bus_dma.c
1.18+3-247sys/arch/mvme68k/include/bus_dma.h
1.15+27-11sys/arch/m68k/include/bus_dma.h
1.25+28-10sys/arch/mvme68k/dev/mainbus.c
1.11+10-1sys/arch/next68k/include/bus_dma.h
1.13+4-4sys/arch/mvme68k/mvme68k/bus_space.c
+318-4165 files not shown
+330-42811 files

FreeNAS/freenas 98b19d2src/middlewared/debian control, src/middlewared/middlewared/alert/service snmp_trap.py

Replace pysnmp with truenas_pysnmp C extension for SNMP traps

Rewrites `snmp_trap.py` to use the truenas_pysnmp C extension and
replaces the python3-pysnmp4 dependency with python3-truenas-pysnmp.
Depends on https://github.com/truenas/truenas_pysnmp/pull/1 and
https://github.com/iXsystems/truenas_build/pull/46
DeltaFile
+22-99src/middlewared/middlewared/alert/service/snmp_trap.py
+2-2src/middlewared/debian/control
+24-1012 files

FreeNAS/freenas 09c07a4src/middlewared/middlewared/plugins/system debug.py

Pass caller privilege context to debug generation for correct job visibility
DeltaFile
+19-4src/middlewared/middlewared/plugins/system/debug.py
+19-41 files

FreeNAS/freenas 9605010src/middlewared/middlewared/plugins/system debug.py

Pass caller privilege context to debug generation for correct job visibility
DeltaFile
+19-4src/middlewared/middlewared/plugins/system/debug.py
+19-41 files