FreeBSD/src fc544d3usr.sbin/makefs makefs.8, usr.sbin/makefs/cd9660 cd9660_eltorito.c

makefs: Remove unused "mac68k" support

Obtained from:  OpenBSD 4f3c7809d4013a2eb3e75fc5e7bd2d8ae1f41843
DeltaFile
+2-4usr.sbin/makefs/cd9660/cd9660_eltorito.c
+0-1usr.sbin/makefs/makefs.8
+2-52 files

LLVM/project 6702faallvm/docs NVPTXUsage.md, llvm/lib/Target/NVPTX NVPTXISelLowering.cpp NVPTXIntrinsics.td

[NVPTX] Support 32-bit size operand for st.bulk (#217703)

PTX ISA 9.0 extends the `st.bulk` instruction to accept a 32-bit `size`
operand.

Add `i32` variants of the generic and `.shared::cta` NVVM intrinsics and
select them to `st.bulk` instructions using 32-bit registers. The new
patterns require PTX ISA 9.0 and `sm_100`.

The existing intrinsics continue to represent the original 64-bit forms.

Add code-generation coverage for both the default and short-pointer
ABIs.
DeltaFile
+47-0llvm/test/CodeGen/NVPTX/st_bulk_i32.ll
+19-10llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
+14-9mlir/test/Target/LLVMIR/nvvmir.mlir
+9-7llvm/docs/NVPTXUsage.md
+9-5mlir/test/Dialect/LLVMIR/nvvm.mlir
+14-0llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
+112-315 files not shown
+123-5511 files

LLVM/project 599fc2clibcxx/utils/ci/docker linux-builder.dockerfile

[Github] Bump libcxx image to ubuntu 26.04 (#225550)

To match the rest of the premerge CI images.
DeltaFile
+3-10libcxx/utils/ci/docker/linux-builder.dockerfile
+3-101 files

LLVM/project d813d56llvm/lib/Target/AMDGPU SIInstrInfo.cpp

Refactor `ExpectedRC` determination
DeltaFile
+20-10llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+20-101 files

LLVM/project 20084b7llvm/lib/Target/AMDGPU SIInstrInfo.cpp, llvm/test/CodeGen/AMDGPU fix-sgpr-copies-f16-true16.mir v_swap_b16.ll

[AMDGPU][SIInstrInfo] Materialise t16 PHI subreg operands
DeltaFile
+1,527-1,045llvm/test/CodeGen/AMDGPU/frem.ll
+20-26llvm/test/CodeGen/AMDGPU/v_swap_b16.ll
+18-7llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
+8-2llvm/test/CodeGen/AMDGPU/fix-sgpr-copies-f16-true16.mir
+1,573-1,0804 files

LLVM/project 301c8c7llvm/test/CodeGen/AMDGPU fix-sgpr-copies-f16-true16.mir

Switch vgpr16 -> vgpr32 in test case
DeltaFile
+5-7llvm/test/CodeGen/AMDGPU/fix-sgpr-copies-f16-true16.mir
+5-71 files

LLVM/project 65dd9b8llvm/test/CodeGen/AMDGPU fix-sgpr-copies-f16-true16.mir

[NFC][AMDGPU] Pre-commit test that exposes subreg copies into PHI nodes
DeltaFile
+68-0llvm/test/CodeGen/AMDGPU/fix-sgpr-copies-f16-true16.mir
+68-01 files

LLVM/project de7aa58llvm/test/CodeGen/AMDGPU fix-sgpr-copies-f16-true16.mir

Add reviewer test case
DeltaFile
+40-0llvm/test/CodeGen/AMDGPU/fix-sgpr-copies-f16-true16.mir
+40-01 files

OpenZFS/src a5b1f32man/man8 zpool-prefetch.8

zpool-prefetch: Fix document description typo

Verb should be imperative mood matching rest of manual.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by:  Alexander Ziaee <ziaee at FreeBSD.org>
Closes #19184
DeltaFile
+1-1man/man8/zpool-prefetch.8
+1-11 files

LLVM/project 932f71cllvm/include/llvm/Transforms/Scalar GVN.h, llvm/lib/Transforms/Scalar GVN.cpp

[GVN] Decouple GVNValueTable and GVNPass (NFC)

This is a first patch in series with the ultimate goal to move `GVNPass`
out of `GVN.h` and into `GVN.cpp.`

This is not straightforward because because of the rather tangled
dependencies between `GVNPass`, `GVNHoistPass`, `ValueTable`,
and `LeaderMap`.

The `GVNHoistPass` pass references `GVNPass::ValueTable`, by peeking
into `GVNPass`, resp. including `GVN.h`. Since `GVNHoistPass` does not
actually depend on `GVNPass` itself, but only on the `ValueTable` it
contains, it would make more sense to move `ValueTable` out of `GVN.h`
to its own header file, to be included by both `GVN.h` and
`GVNHoist.cpp.`

That's not entirely straightforward either since `ValueTable` has
several member functions taking a `GVNPass` reference as an argument.
This prevents moving `GVNPass` out of `GVN.h` and into an anonymous

    [9 lines not shown]
DeltaFile
+85-83llvm/include/llvm/Transforms/Scalar/GVN.h
+18-17llvm/lib/Transforms/Scalar/GVN.cpp
+103-1002 files

LLVM/project 3178c23llvm/include/llvm/Transforms/Scalar GVNSink.h GVNHoist.h, llvm/lib/Transforms/Scalar GVNHoist.cpp GVN.cpp

[GVN] Move `ValueTable` out of `GVN.h` (NFC)

  * Rename `GVNPass::ValueTable` to `GVNValueTable`, and move it out to
    the `llvm`  namepace and to its own file `GVNValueTable.h`
  * Move `GVNPass::Expression` into `llvm::GVNValueTable`.
  * Move `GVNHoistPass` and `GVNSinkPass` to their own headers.

With these changes `GVHoist.cpp` and `GVNSink.cpp` no longer need
to include `GVN.h` or peek into `GVNPass` internals.
DeltaFile
+132-0llvm/include/llvm/Transforms/Scalar/GVNValueTable.h
+2-106llvm/include/llvm/Transforms/Scalar/GVN.h
+48-50llvm/lib/Transforms/Scalar/GVN.cpp
+30-0llvm/include/llvm/Transforms/Scalar/GVNSink.h
+30-0llvm/include/llvm/Transforms/Scalar/GVNHoist.h
+7-6llvm/lib/Transforms/Scalar/GVNHoist.cpp
+249-1623 files not shown
+254-1639 files

OpenZFS/src 638abd2module/os/linux/zfs zfs_vfsops.c

zfs_domount: fix vfs_t double-free on root setup failure

When zfs_root() or d_make_root() fails, zfs_domount() calls
zfs_umount(), which frees zfsvfs->z_vfs via zfsvfs_free(). After
the vfs_t lifetime was matched to fs_context, that vfs_t is still
owned by the caller in fc->fs_private. zpl_get_tree() then returns
without clearing fs_private, and put_fs_context() frees it again.

Detach z_vfs before zfs_umount() so the caller retains ownership,
matching the other zfs_domount() error paths.

This is a follow-up to the vfs_t lifetime change in #18377.

Reviewed-by: Rob Norris <rob.norris at truenas.com>
Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Signed-off-by: Wale Zhang <wale.zhang.ftd at gmail.com>
Closes #19167
DeltaFile
+4-0module/os/linux/zfs/zfs_vfsops.c
+4-01 files

LLVM/project 33726c2llvm/lib/SandboxIR Value.cpp, llvm/unittests/SandboxIR SandboxIRTest.cpp

[SandboxIR] Fix Value::stripAndAccumulateConstantOffsets (#225980)

The original test was not exercising the ExternalAnalysis FnRef, and we
we are passing a non-nullptr lambda even if the user has passed a
nullptr, which would cause a crash.
This patch fixes it.
DeltaFile
+10-4llvm/lib/SandboxIR/Value.cpp
+5-6llvm/unittests/SandboxIR/SandboxIRTest.cpp
+15-102 files

OpenZFS/src db57b84module/os/linux/zfs zfs_ctldir.c

Linux: read the snapshot creation time from its bonus buffer

When a '.zfs/snapshot/<name>' entry is looked up by name (stat, open, or
a path walk through it; listing the directory does not do this),
zfsctl_inode_lookup() reads the snapshot's creation time for the
entry's btime through dsl_dataset_hold_obj().  That instantiates the
whole in-core dataset (dsl_dir hold, deadlists, neighbour references,
fsid uniqueness) and tears it down again on release, and it accounts
for most of a dentry-cold lookup.  The value is a field of the
snapshot's dsl_dataset_phys_t, so read it from the bonus buffer the way
the fsid is read, through a helper both callers share.

Same value, same locking, same fallback on error.  A warm lookup is
unchanged; a cold one loses the dataset instantiation, roughly an order
of magnitude on the systems it was measured on.

Reviewed-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Reviewed-by: Rob Norris <rob.norris at truenas.com>
Signed-off-by: Ameer Hamza <ameer.hamza at truenas.com>
Closes #19174
DeltaFile
+34-27module/os/linux/zfs/zfs_ctldir.c
+34-271 files

OpenZFS/src 565e4c6man/man7 zfsconcepts.7, module/os/linux/zfs zfs_vfsops.c zfs_ctldir.c

Linux: report a snapshot's fsid from its .zfs/snapshot entry

statfs() on a control directory inode ('.zfs', '.zfs/snapshot', or an
unmounted snapshot entry reached without the automount) fails with EIO
because zfs_statvfs() verifies the znode's SA handle, which these inodes
lack.  Handle them explicitly: '.zfs' and '.zfs/snapshot' report the
containing filesystem, and a '.zfs/snapshot/<name>' entry reports the
fsid of its snapshot, read from the dataset's bonus buffer (the objset id
is encoded in the entry's inode number) without instantiating the
dataset, so a probe costs a few microseconds.

This identifies a snapshot without mounting it: open the entry with
O_PATH, which does not trigger the automount, and fstatfs() it.  The
value is what the snapshot's superblock reports once mounted, and path
based statfs() still automounts as before.  An NFS server resolving a
file handle for an unmounted snapshot (expired, or imported on another
node) can probe entries instead of mounting every snapshot until one
matches.  Add the statfs_nomount helper, the snapdir_statfs_fsid test
and a zfsconcepts(7) note.

    [5 lines not shown]
DeltaFile
+78-0tests/zfs-tests/tests/functional/snapdir/snapdir_statfs_fsid.ksh
+51-0tests/zfs-tests/cmd/statfs_nomount.c
+40-0module/os/linux/zfs/zfs_ctldir.c
+24-4module/os/linux/zfs/zfs_vfsops.c
+11-0man/man7/zfsconcepts.7
+2-0tests/zfs-tests/cmd/.gitignore
+206-45 files not shown
+211-511 files

LLVM/project ae5a296clang/lib/Sema SemaOpenMP.cpp, clang/test/OpenMP for_reduction_codegen_UDR.cpp reduction_non_copyable_with_initializer.cpp

[OpenMP] Fix OpenMP reduction segfault with non-copyable types and user initializers. (#219265)

OpenMP custom reductions with user-defined initializers segfault when
the reduction variable type is non-copyable and has non-trivial members
(e.g., std::string). `Clang` was emitting only the user initializer
function call, leaving non-trivial
members uninitialized with garbage values, causing segfaults when those
members are accessed or assigned.
See https://godbolt.org/z/bboqKbhsT
This patch fixes the issue.
DeltaFile
+65-0clang/test/OpenMP/reduction_non_copyable_with_initializer.cpp
+25-23clang/test/OpenMP/for_reduction_codegen_UDR.cpp
+12-0clang/lib/Sema/SemaOpenMP.cpp
+102-233 files

LLVM/project 579bd11llvm/include/llvm/IR PatternMatch.h, llvm/lib/Transforms/Vectorize LoopVectorizationLegality.cpp VPlanTransforms.cpp

* Make condition checks consistent
* Use anonymous namespace for struct
* Fix recipe walker
DeltaFile
+7-5llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+6-0llvm/include/llvm/IR/PatternMatch.h
+2-2llvm/test/Transforms/LoopVectorize/early_exit_store_legality.ll
+1-1llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
+16-84 files

LLVM/project 7890805flang/lib/Lower ConvertExprToHLFIR.cpp, flang/lib/Semantics check-io.cpp

Corrected comments
DeltaFile
+3-9flang/lib/Semantics/check-io.cpp
+5-7flang/lib/Lower/ConvertExprToHLFIR.cpp
+0-4flang/test/Semantics/enumeration-type-intrinsics.f90
+1-2flang/test/Semantics/enumeration-type-component-offset.f90
+0-2flang/test/Semantics/enumeration-type-explicit-value.f90
+1-1flang/test/Semantics/io-unsafe-direct-component-pdt-order.f90
+10-252 files not shown
+12-278 files

NetBSD/pkgsrc h99SSj3doc pkg-vulnerabilities

   doc/pkg-vulnerabilities: CVE-2026-25765

   CVE-2026-25765 for ruby-faraday1.
VersionDeltaFile
1.798+2-1doc/pkg-vulnerabilities
+2-11 files

FreeBSD/ports da111ddrussian/d1489 Makefile, russian/d1489/files patch-a2kfcnv.c patch-todos.c

russian/d1489: silence warnings

Make stock Clang compile this ancient code without warnings.
PORTREVISION not bumped intentionally.
DeltaFile
+71-0russian/d1489/files/patch-todos.c
+28-0russian/d1489/files/patch-a2kfcnv.c
+1-0russian/d1489/Makefile
+100-03 files

NetBSD/pkgsrc 2011WAndoc TODO

   doc/TODO: wordpress

   + ja-wordpress-7.1.2, wordpress-7.1.2
VersionDeltaFile
1.27988+3-3doc/TODO
+3-31 files

LLVM/project e637d7dllvm/lib/Target/RISCV RISCVInstrInfo.cpp, llvm/test/TableGen AsmPredicateCombiningRISCV.td RegClassByHwModeCompressPat.td

[RISCV][TableGen] Return instruction size from isCompressibleInst (#225660)

Not all compress patterns compress to a 2 byte instruction. There are a
few `Xqci` instructions that compress from a 6 byte instruction to a 4
byte instruction. Having `isCompressibleInst` optionally return the size
of the compressed instruction will help us better estimate instruction
sizes.

Assisted by gpt-5.6-luna
DeltaFile
+27-13llvm/utils/TableGen/CompressInstEmitter.cpp
+17-10llvm/test/TableGen/RegClassByHwModeCompressPat.td
+4-4llvm/test/TableGen/CompressInstEmitter/suboperands.td
+4-4llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
+1-4llvm/unittests/Target/RISCV/RISCVInstrInfoTest.cpp
+1-1llvm/test/TableGen/AsmPredicateCombiningRISCV.td
+54-366 files

LLVM/project 705738bllvm/lib/CodeGen MachineCycleAnalysis.cpp, llvm/lib/IR CycleInfo.cpp

[CycleInfo] Add missing exports to symbols used in tests (#225737)
DeltaFile
+2-1llvm/lib/CodeGen/MachineCycleAnalysis.cpp
+1-1llvm/lib/IR/CycleInfo.cpp
+3-22 files

OpenZFS/src 1d9c32ccmd/zpool zpool_vdev.c, man/man7 zpoolconcepts.7

zpool: accept more redundant special and dedup vdevs

The replication check required a special or dedup vdev to tolerate
exactly as many device failures as the normal vdevs in the pool.  A
3-way mirror special vdev on a raidz1 pool, or on a 2-way mirror pool,
was rejected as a mismatch, and the only way past it was -f, which
also overrides unrelated checks.

Accept a special or dedup vdev which tolerates at least as many
failures as the normal vdevs of a redundant pool.  Special and dedup
vdevs are now compared with the normal vdevs rather than with whichever
vdev happens to precede them, so normal vdevs are still required to
match each other.  Less redundant special or dedup vdevs, and redundant
ones added to a non-redundant pool, are still rejected.

As a side effect, a pool that already has a more redundant special
vdev is now considered consistent, so later additions to it are
checked instead of being skipped.


    [4 lines not shown]
DeltaFile
+144-107cmd/zpool/zpool_vdev.c
+74-0tests/zfs-tests/tests/functional/alloc_class/alloc_class_017_pos.ksh
+5-5man/man7/zpoolconcepts.7
+2-2tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_006_pos.ksh
+1-1tests/runfiles/common.run
+1-0tests/zfs-tests/tests/Makefile.am
+227-1156 files

LLVM/project 8ee4426libcxx/test CMakeLists.txt, libcxx/test/benchmarks lit.local.cfg CMakeLists.txt

[libc++] Re-apply "Build GoogleBenchmark directly from Lit" (#225856)

Previously, we would build GoogleBenchmark against the just-built
library, not against the library being tested. When testing historical
versions of libc++ or other standard libraries, this breaks. So instead
of building Google Benchmark against the just-built library in CMake, do
it from Lit as part of the test suite's configuration.

I'm not a huge fan of using Lit as a poor man's build system and we
should make the CMake test suite self-contained, however this is a step
in the right direction and it removes a major coupling between the test
suite and the regular libc++ build.

This patch re-applies 1bfe9893f3dc which was reverted in 62ea87e542c3
because it broke the Fuchsia bots. This new version of the patch also
threads through the path to the CMake program being used, the CMake
generator and the CMake "make program" from the top-level CMake to the
test-suite, so that the Google Benchmark build can inherit what the
top-level CMake is using.
DeltaFile
+226-0libcxx/utils/libcxx/test/googlebenchmark.py
+0-48libcxx/test/benchmarks/CMakeLists.txt
+27-0libcxx/utils/libcxx/test/params.py
+8-5libcxx/utils/libcxx/test/format.py
+11-0libcxx/test/benchmarks/lit.local.cfg
+3-1libcxx/test/CMakeLists.txt
+275-546 files not shown
+282-5812 files

OpenZFS/src a58b0d5config zfs-build.m4

pkg: Check for Berkeley DB RPM database format

Commit 0d5bb1d010 added a check to silence warnings when building
on Debian systems where the /var/lib/rpm/rpmdb.sqlite RPM database
does not exist.  However, RHEL8 still uses the older Berkeley DB
RPM database format, not SQLite, and the primary database file is
instead named /var/lib/rpm/Packages.  Setting an the alternate,
empty RPM_DBPATH results in the package build failing due to missing
build dependencies.  Resolve the build failure by additionally
checking for the legacy primary database name.

Reviewed-by: Tony Hutter <hutter2 at llnl.gov>
Reviewed-by: Glenn Washburn <development at efficientek.com>
Signed-off-by: Brian Behlendorf <behlendorf1 at llnl.gov>
Closes #19181
DeltaFile
+8-4config/zfs-build.m4
+8-41 files

NetBSD/pkgsrc BWYO8mMdoc TODO CHANGES-2026

   doc: Updated archivers/gzip to 1.15
VersionDeltaFile
1.27987+1-2doc/TODO
1.6346+2-1doc/CHANGES-2026
+3-32 files

LLVM/project 01df360mlir/include/mlir-c IR.h, mlir/lib/CAPI/IR IR.cpp

[mlir-c] Add mlirOperationIsAncestor and mlirOperationIsProperAncestor (#206556)

Exposes `Operation::isAncestor` and `Operation::isProperAncestor` through the MLIR C API.

Assisted by: Claude
DeltaFile
+64-0mlir/test/CAPI/ir.c
+10-0mlir/include/mlir-c/IR.h
+8-0mlir/lib/CAPI/IR/IR.cpp
+82-03 files

NetBSD/pkgsrc vqpi74marchivers/gzip Makefile distinfo, archivers/gzip/patches patch-unlzh.c patch-lib_utimens.h

   gzip: Update to 1.15

   * Noteworthy changes in release 1.15 (2026-09-20) [stable]

   ** Bug fixes

   gzip no longer can mistakenly remove the wrong file if some other
   process simultaneously renames a gzip destination's ancestor.
   [bug present since the beginning]

   gzip -d no longer rejects PKZIP signatures, local header, and data
   descriptors.  These can appear in well-formed streamed zip files.
   [bug present since the beginning]

   gzip diagnostics now quote file names containing unusual characters.
   [bug present since the beginning]

   A use of uninitialized memory on some malformed inputs has been fixed.
   [bug present since the beginning]

    [44 lines not shown]
VersionDeltaFile
1.15+4-6archivers/gzip/distinfo
1.42+2-3archivers/gzip/Makefile
1.2+1-1archivers/gzip/patches/patch-unlzh.c
1.2+1-1archivers/gzip/patches/patch-lib_utimens.h
+8-114 files

LLVM/project 6c48192llvm/test/tools/llvm-reduce/mir parallel-jobs-unsupported.mir, llvm/tools/llvm-reduce llvm-reduce.cpp

llvm-reduce: Error on -j with MIR inputs

Parallel chunk processing distributes work by serializing the program to
bitcode and reparsing it in each worker thread. Bitcode cannot represent
MachineFunctions, so readBitcode leaves ReducerWorkItem::MMI null and the
reparsed item reports isMIR() == false. The delta pass list is still the
MIR one, chosen from the original program, so the worker runs a MIR pass
over an item with no MachineModuleInfo and dereferences null.

This broke every MIR reduction using -j > 1, though not immediately: the
parallel path is only taken once there is more than one chunk left to
process, so the crash appeared after the first granularity increase.

Reject the combination up front instead of crashing partway through a
reduction. Supporting it would mean exchanging MIR text rather than
bitcode, and giving each worker its own TargetMachine.

Co-Authored-By: Claude Opus 5 <noreply at anthropic.com>
DeltaFile
+10-0llvm/test/tools/llvm-reduce/mir/parallel-jobs-unsupported.mir
+9-0llvm/tools/llvm-reduce/llvm-reduce.cpp
+3-0llvm/tools/llvm-reduce/deltas/Delta.h
+2-0llvm/tools/llvm-reduce/deltas/Delta.cpp
+24-04 files