FreeBSD/src 817f0b8usr.sbin/newsyslog newsyslog.conf.5

newsyslog.conf.5: Add a CAVEAT

PR:                     282639
MFC after:              3 days
Reviewed by:            michaelo
Differential Revision:  https://reviews.freebsd.org/D55122

(cherry picked from commit 64e612b46290617ec753b4ee6ec633a3724940e3)
DeltaFile
+4-1usr.sbin/newsyslog/newsyslog.conf.5
+4-11 files

LLVM/project 901e543mlir/lib/Dialect/Math/Transforms ExpandOps.cpp, mlir/test/Dialect/Math expand-math.mlir

[mlir][Math] Fix math-expand-ops crash on math.ctlz with index type (#181539)

Fixes #179847
math.ctlz expansion called getIntOrFloatBitWidth() on the operand type
without checking. Index type has no fixed bitwidth and is not int/float,
so the assertion in Type::getIntOrFloatBitWidth() could fire.

- In convertCtlzOp, bail out with notifyMatchFailure when the element
type is not integer or float, so expansion is only applied to types with
a defined bitwidth.
- Add a test in expand-math.mlir that math.ctlz on index is left
unchanged by the pass (no crash, op preserved).
DeltaFile
+11-0mlir/test/Dialect/Math/expand-math.mlir
+5-0mlir/lib/Dialect/Math/Transforms/ExpandOps.cpp
+16-02 files

LLVM/project 6ef0613clang/test/OpenMP task_codegen.cpp, llvm/test/CodeGen/AArch64 clmul-fixed.ll

Rebase + fix comment

Created using spr 1.3.7
DeltaFile
+5,835-5,584llvm/test/tools/llvm-dwarfdump/X86/simplified-template-names.s
+5,528-5,528llvm/test/CodeGen/AMDGPU/whole-wave-functions.ll
+4,314-4,314llvm/test/CodeGen/AMDGPU/accvgpr-spill-scc-clobber.mir
+3,465-2,020clang/test/OpenMP/task_codegen.cpp
+4,716-0llvm/test/MC/AMDGPU/gfx13_asm_sop2.s
+4,564-0llvm/test/CodeGen/AArch64/clmul-fixed.ll
+28,422-17,4466,502 files not shown
+338,949-131,6536,508 files

LLVM/project 6ce9e36llvm/lib/CodeGen/GlobalISel GISelValueTracking.cpp, llvm/test/CodeGen/AArch64/GlobalISel knownbits-cttz.mir

[GISel] handle CTTZ in `computeKnownBits` (#181474)

Addresses part of #150515. Adapted from the CTLZ code below this
DeltaFile
+111-0llvm/test/CodeGen/AArch64/GlobalISel/knownbits-cttz.mir
+5-14llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-cttz-zero-undef.mir
+4-11llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-cttz.mir
+11-0llvm/lib/CodeGen/GlobalISel/GISelValueTracking.cpp
+1-3llvm/test/CodeGen/X86/GlobalISel/legalize-trailing-zeros.mir
+1-3llvm/test/CodeGen/X86/GlobalISel/legalize-trailing-zeros-undef.mir
+133-311 files not shown
+133-327 files

LLVM/project 6d033abllvm/lib/Transforms/InstCombine InstCombinePHI.cpp, llvm/test/Transforms/InstCombine phi-int2ptr-different-addrspace.ll

[InstCombine] Avoid invalid bitcast across address spaces in foldIntegerTypedPHI (#181064)

Only use a PtrToInt's source pointer as an available pointer value when
its pointer type exactly matches the inttoptr target type. This prevents
creating an invalid bitcast between differing address spaces during
foldIntegerTypedPHI.
DeltaFile
+40-0llvm/test/Transforms/InstCombine/phi-int2ptr-different-addrspace.ll
+4-2llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
+44-22 files

LLVM/project 8988fb7clang/docs ReleaseNotes.rst, clang/lib/Sema SemaCodeComplete.cpp

[clang][ObjC][CodeComplete] Fix crash on C-Style cast with parenthesized operand in ObjC++ (#180343)

In ObjC++ mode, code-completion after a C-style cast like
`(int*)(0x200)` crashed because the inner parenthesized expression was
parsed as a `ParenListExpr` (null type) due to `AllowTypes` propagation.

Fixes https://github.com/llvm/llvm-project/issues/180125
DeltaFile
+12-0clang/test/CodeCompletion/objc-cast-parenthesized-expr.m
+5-0clang/lib/Sema/SemaCodeComplete.cpp
+3-0clang/docs/ReleaseNotes.rst
+20-03 files

NetBSD/pkgsrc 7587DZfcross Makefile

   add new m68k-none-elf-binutils and m68k-none-elf-gcc pcakages.
VersionDeltaFile
1.128+3-1cross/Makefile
+3-11 files

NetBSD/pkgsrc WVeA2jdcross/m68k-none-elf-binutils PLIST Makefile, cross/m68k-none-elf-gcc PLIST Makefile

   basic cross toolchain for m68k-none-elf target.

   this is GCC 15.2, binutils 2.46, and newlib 4.6.0.
VersionDeltaFile
1.1+1,623-0cross/m68k-none-elf-gcc/PLIST
1.1+86-0cross/m68k-none-elf-binutils/PLIST
1.1+70-0cross/m68k-none-elf-gcc/Makefile
1.1+37-0cross/m68k-none-elf-gcc/patches/patch-libiberty_Makefile.in
1.1+33-0cross/m68k-none-elf-binutils/Makefile
1.1+16-0cross/m68k-none-elf-gcc/patches/patch-libcc1_configure
+1,865-07 files not shown
+1,922-013 files

FreeNAS/freenas 77acd3asrc/middlewared/middlewared/plugins ups.py, src/middlewared/middlewared/plugins/ups upssched_event.py config.py

NAS-139747 / 26.0.0-BETA.1 / Convert UPS plugin to be type-safe (#18190)

## Context

UPS plugin has been converted to new type-safe implementation.
DeltaFile
+0-359src/middlewared/middlewared/plugins/ups.py
+119-0src/middlewared/middlewared/plugins/ups/upssched_event.py
+112-0src/middlewared/middlewared/plugins/ups/config.py
+92-0src/middlewared/middlewared/plugins/ups/utils.py
+92-0src/middlewared/middlewared/plugins/ups/__init__.py
+34-0src/middlewared/middlewared/service/system_service_part.py
+449-35920 files not shown
+519-41526 files

FreeBSD/ports 60f5476textproc/caps-log pkg-descr

textproc/caps-log: add missing pkg-descr

Fixes:  a5496b3c364c84646b05e24f0b3461f1d7ecf9d8
Reported by:    diizzy
Obtained from:  https://reviews.freebsd.org/D54921
DeltaFile
+10-1textproc/caps-log/pkg-descr
+10-11 files

NetBSD/pkgsrc 3WEt4Vmdatabases/postgresql-pgroonga Makefile, databases/postgresql-postgis2 Makefile

   *: remove 13 from postgresql versions
VersionDeltaFile
1.13+2-2databases/postgresql-pgroonga/Makefile
1.191+2-2databases/postgresql-postgis2/Makefile
1.6+2-2databases/postgresql-redislog/Makefile
+6-63 files

NetBSD/pkgsrc kAJibONdatabases Makefile, databases/pgadmin3 Makefile

   pgadmin3: remove

   Only supported postgresql 13, which was removed.
VersionDeltaFile
1.745+1-10databases/Makefile
1.26801+1-2doc/TODO
1.1118+2-1doc/CHANGES-2026
1.2+1-1databases/pgadmin3/patches/patch-pgadmin_include_utils_pgDefs.h
1.5+1-1databases/pgadmin3/patches/patch-configure
1.108+1-1databases/pgadmin3/Makefile
+7-165 files not shown
+11-2011 files

OpenBSD/src 961KiFgregress/usr.bin/ssh kbdint.sh Makefile

   Add basic test for keyboard-interactive auth.  Not enabled by default
   since it requires some setup on the host.
VersionDeltaFile
1.1+87-0regress/usr.bin/ssh/kbdint.sh
1.143+2-1regress/usr.bin/ssh/Makefile
+89-12 files

LLVM/project f8b1462llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/X86 bool-mask.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+103-8llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+12-36llvm/test/Transforms/SLPVectorizer/X86/bool-mask.ll
+115-442 files

FreeBSD/ports d4d9be7math/octave-forge-coder Makefile distinfo, math/octave-forge-coder/files patch-pre__install.m

math/octave-forge-coder: Update to 1.11.1.
DeltaFile
+0-10math/octave-forge-coder/files/patch-pre__install.m
+1-8math/octave-forge-coder/Makefile
+3-3math/octave-forge-coder/distinfo
+4-213 files

FreeBSD/ports e293b2fmath/octave-forge-image distinfo Makefile

math/octave-forge-image: Update to 2.18.2.
DeltaFile
+3-3math/octave-forge-image/distinfo
+1-1math/octave-forge-image/Makefile
+4-42 files

FreeBSD/ports 86d43c0mail/p5-Sisimai pkg-plist distinfo

mail/p5-Sisimai: update 5.5.0 -> 5.6.0

Changelog: https://metacpan.org/dist/Sisimai/changes
DeltaFile
+4-8mail/p5-Sisimai/pkg-plist
+3-3mail/p5-Sisimai/distinfo
+1-1mail/p5-Sisimai/Makefile
+8-123 files

FreeBSD/ports f2fe6eamail/p5-MIME-Tools distinfo Makefile

mail/p5-MIME-Tools: update 5.515 -> 5.517

Changelog: https://metacpan.org/dist/MIME-tools/changes
DeltaFile
+3-3mail/p5-MIME-Tools/distinfo
+1-1mail/p5-MIME-Tools/Makefile
+4-42 files

FreeBSD/ports 7c06a96misc/p5-Business-ISBN-Data distinfo Makefile

misc/p5-Business-ISBN-Data: update 20260123.001 -> 20260214.001

Changelog: https://metacpan.org/dist/Business-ISBN-Data/changes
DeltaFile
+3-3misc/p5-Business-ISBN-Data/distinfo
+1-1misc/p5-Business-ISBN-Data/Makefile
+4-42 files

FreeBSD/ports c6fe30fmultimedia/mkvtoolnix/files patch-lib_fmt_include_fmt_format.h

multimedia/mkvtoolnix: fix build with libc++ 21

With libc++ 21 multimedia/mkvtoolnix fails to build, with errors similar
to:

    In file included from lib/fmt/src/os.cc:13:
    In file included from lib/fmt/include/fmt/os.h:11:
    lib/fmt/include/fmt/format.h:745:28: fatal error: use of undeclared identifier 'malloc'
      745 |     T* p = static_cast<T*>(malloc(n * sizeof(T)));
          |                            ^~~~~~

This is because malloc and free are defined in <cstdlib>, and os.h does
not explicitly include it. (Before libc++ 21, the fmt library was
"lucky" that <cstdlib> was included transitively, but this is no longer
the case.)

PR:             293182
Approved by:    riggs (maintainer)
MFH:            2026Q1

    [2 lines not shown]
DeltaFile
+10-0multimedia/mkvtoolnix/files/patch-lib_fmt_include_fmt_format.h
+10-01 files

LLVM/project 347041ellvm/lib/Target/X86 X86LowerAMXIntrinsics.cpp

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+2-2llvm/lib/Target/X86/X86LowerAMXIntrinsics.cpp
+2-21 files

LLVM/project ed69ffallvm/lib/Target/X86 X86LowerAMXIntrinsics.cpp, llvm/test/CodeGen/X86/AMX amx-low-intrinsics-no-amx-bitcast.ll amx-low-intrinsics.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+20-13llvm/test/CodeGen/X86/AMX/amx-low-intrinsics-no-amx-bitcast.ll
+21-3llvm/lib/Target/X86/X86LowerAMXIntrinsics.cpp
+14-4llvm/test/CodeGen/X86/AMX/amx-low-intrinsics.ll
+55-203 files

LLVM/project 1e159d2llvm/lib/Target/X86 X86LowerAMXIntrinsics.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+2-2llvm/lib/Target/X86/X86LowerAMXIntrinsics.cpp
+2-21 files

FreeBSD/ports 4d7c78cmultimedia/mkvtoolnix/files patch-lib_fmt_include_fmt_format.h

multimedia/mkvtoolnix: fix build with libc++ 21

With libc++ 21 multimedia/mkvtoolnix fails to build, with errors similar
to:

    In file included from lib/fmt/src/os.cc:13:
    In file included from lib/fmt/include/fmt/os.h:11:
    lib/fmt/include/fmt/format.h:745:28: fatal error: use of undeclared identifier 'malloc'
      745 |     T* p = static_cast<T*>(malloc(n * sizeof(T)));
          |                            ^~~~~~

This is because malloc and free are defined in <cstdlib>, and os.h does
not explicitly include it. (Before libc++ 21, the fmt library was
"lucky" that <cstdlib> was included transitively, but this is no longer
the case.)

PR:             293182
Approved by:    riggs (maintainer)
MFH:            2026Q1
DeltaFile
+10-0multimedia/mkvtoolnix/files/patch-lib_fmt_include_fmt_format.h
+10-01 files

FreeBSD/ports 1c64846databases/postgresql-jdbc distinfo Makefile

databases/postgresql-jdbc: Update to 42.7.10

Release notes:  https://jdbc.postgresql.org/changelogs/2026-02-11-42/
DeltaFile
+3-3databases/postgresql-jdbc/distinfo
+1-1databases/postgresql-jdbc/Makefile
+4-42 files

FreeBSD/ports bd850fbsecurity/vuls distinfo Makefile

security/vuls: Update to 0.38.0

Release notes:  https://github.com/future-architect/vuls/releases/tag/v0.38.0
DeltaFile
+5-5security/vuls/distinfo
+1-2security/vuls/Makefile
+6-72 files

NetBSD/src woJSK3csys/kern core_elf32.c

   PR/59984: Joao Bonifacio: use sizeof(Elf_Word) instead of hard-coding 4.
VersionDeltaFile
1.71+3-3sys/kern/core_elf32.c
+3-31 files

NetBSD/src lFsSfAVsys/kern init_sysctl.c, sys/sys unistd.h

   PR/59984: Jo�o Bonif�cio: Set _POSIX_SEMAPHORES to 200112L and use it
   instead of hardcoding.
VersionDeltaFile
1.230+3-3sys/kern/init_sysctl.c
1.66+2-2sys/sys/unistd.h
+5-52 files

NetBSD/src 9QkZ88Dsys/kern init_sysctl.c

   PR/59984: Jo�o Bonif�cio: remove XXX comments after verifying match
   to 200112L
VersionDeltaFile
1.229+2-8sys/kern/init_sysctl.c
+2-81 files

LLVM/project e819483clang/lib/Analysis/LifetimeSafety LifetimeAnnotations.cpp, clang/test/Sema warn-lifetime-safety-invalidations.cpp

[LifetimeSafety] 'erase' does not invaldiate node-based containers (#181216)

```cpp
// This pattern was previously flagged as a lifetime violation
for (auto it = my_map.begin(); it != my_map.end(); ) {
    if (should_delete(*it)) {
        my_map.erase(it++); // Safe in map, but flagged as invalidating 'it'
    } else {
        ++it;
    }
}
```
DeltaFile
+24-2clang/lib/Analysis/LifetimeSafety/LifetimeAnnotations.cpp
+15-0clang/test/Sema/warn-lifetime-safety-invalidations.cpp
+9-5clang/test/Sema/Inputs/lifetime-analysis.h
+48-73 files