LLVM/project 309ca6dclang/lib/Headers opencl-c.h

[Clang][OpenCL] Add cl_intel_split_work_group_barrier extension (#175878)

The extension adds support for split work group barriers in OpenCL C.
The spec is available at:

https://registry.khronos.org/OpenCL/extensions/intel/cl_intel_split_work_group_barrier.html
DeltaFile
+12-0clang/lib/Headers/opencl-c.h
+12-01 files

FreeBSD/ports 3141751databases Makefile, databases/timescaledb-parallel-copy Makefile distinfo

databases/timescaledb-parallel-copy: New port
DeltaFile
+20-0databases/timescaledb-parallel-copy/Makefile
+5-0databases/timescaledb-parallel-copy/distinfo
+3-0databases/timescaledb-parallel-copy/pkg-descr
+1-0databases/Makefile
+29-04 files

FreeBSD/src c498eaasys/dev/asmc asmcvar.h asmc.c

asmc: Add support for MacBookPro11,5

  Add support for the MacBookPro11,5 (Mid 2015, 15-inch with AMD Radeon R9 M370X GPU)
  to the Apple SMC driver.

  Debug testing revealed this model lacks several SMC keys present on MacBookPro11,4
  (IBLC, ICMC, IC2C), that model-specific sensor definitions.

Differential Revision:  https://reviews.freebsd.org/D54665
Reviewed by:    adrian
DeltaFile
+35-0sys/dev/asmc/asmcvar.h
+7-0sys/dev/asmc/asmc.c
+42-02 files

GhostBSD/build 02f5ad8common_config autologin.sh, desktop_config oem.sh

Added rc.conf configurations for xconfig and install_station

Cleaned up autologin script
DeltaFile
+6-0desktop_config/oem.sh
+0-4common_config/autologin.sh
+6-42 files

FreeBSD/ports aa1e9c6databases Makefile, databases/pg_textsearch Makefile pkg-plist

databases/pg_textsearch: New port
DeltaFile
+19-0databases/pg_textsearch/Makefile
+11-0databases/pg_textsearch/pkg-plist
+3-0databases/pg_textsearch/pkg-descr
+3-0databases/pg_textsearch/distinfo
+1-0databases/Makefile
+37-05 files

LLVM/project 57e19ddclang/lib/AST ExprConstant.cpp, clang/lib/Sema SemaExprCXX.cpp

Use more restrictive condition for adding ExprWithCleanups
DeltaFile
+1-4clang/lib/AST/ExprConstant.cpp
+2-1clang/lib/Sema/SemaExprCXX.cpp
+3-52 files

FreeBSD/ports c993485editors/zed distinfo Makefile

editors/zed: Update to 0.218.7

Changelog: https://github.com/zed-industries/zed/releases/tag/v0.218.7

Reported by:    GitHub (watch releases)
DeltaFile
+5-5editors/zed/distinfo
+1-1editors/zed/Makefile
+1-1editors/zed/Makefile.crates
+7-73 files

LLVM/project c560f1cclang/lib/Serialization ASTReaderDecl.cpp, clang/test/Modules pr149404-02.cppm pr172241.cppm

[Serialization] Stop demote var definition as declaration (#172430)

Close https://github.com/llvm/llvm-project/issues/172241
Close https://github.com/llvm/llvm-project/issues/64034
Close https://github.com/llvm/llvm-project/issues/149404
Close https://github.com/llvm/llvm-project/issues/174858

After this patch, we (the clang dev) no longer assumes there are at
most one definition in a redeclaration chain.

See

https://discourse.llvm.org/t/rfc-clang-not-assuming-there-is-at-most-one-definition-in-a-redeclaration-chain/89360
for details.
DeltaFile
+104-0clang/test/Modules/pr149404-02.cppm
+47-0clang/test/Modules/pr172241.cppm
+0-14clang/lib/Serialization/ASTReaderDecl.cpp
+151-143 files

LLVM/project be89247clang/lib/CodeGen CGDebugInfo.cpp CGDebugInfo.h, clang/test/DebugInfo/CXX simple-template-names.cpp

[DebugInfo] Set the DI flag for the simplified name of a template function/type (2/3). (#175708)

Set the `NameIsSimplified` flag for a template function/type that is
treated as having simplified names. Previous patch: #175130 .
Based on:
[RFC](https://discourse.llvm.org/t/rfc-debuginfo-selectively-generate-template-parameters-in-the-skeleton-cu/89395).
DeltaFile
+14-13clang/test/DebugInfo/CXX/simple-template-names.cpp
+19-6clang/lib/CodeGen/CGDebugInfo.cpp
+6-3clang/lib/CodeGen/CGDebugInfo.h
+39-223 files

NetBSD/pkgsrc Uf5N1nkdoc CHANGES-2026

   doc: Updated devel/p5-Test-Harness-Straps to 0.30nb1
VersionDeltaFile
1.313+2-1doc/CHANGES-2026
+2-11 files

LLVM/project c0edf78.github/workflows/containers/github-action-ci-tooling Dockerfile

[Github] Bump clang-format version to 21.1.8 for formatting job (#175850)

In line with the current de-facto support policy of bumping to the
first/last versions of a release.
DeltaFile
+1-1.github/workflows/containers/github-action-ci-tooling/Dockerfile
+1-11 files

NetBSD/pkgsrc dDCLDbGdevel/p5-Test-Harness-Straps Makefile

   Update to 0.30nb1, add devel/p5-Module-Build dependency needed for building and running tests
VersionDeltaFile
1.2+4-1devel/p5-Test-Harness-Straps/Makefile
+4-11 files

FreeBSD/src a24166dsys/dev/usb/wlan if_mtw.c

mtw(4): Fix warm reboot initialization failures for MT7601U

  The mtw(4) driver works correctly on initial boot, but fails to initialize
  the MT7601U WiFi adapter after a warm reboot.

  Users must either physically unplug and replug the USB adapter, or perform a
  full power cycle to restore functionality, if usb power is always powered
  (only a replug works)

  The root cause is that warm reboot does not power-cycle USB devices,
  leaving the MT7601U in a stale state from the previous session.

  The MCU retains its ready flag and the device ignores initialization
  commands, resulting in timeout waiting for MCU to initialize errors.

  At the OS Level, pinging 1.1.1.1 will work, but the speed will be very
  slow. In addition in debug mode, we see thousand of error logs.

  This patch addresses the issue by:

    [22 lines not shown]
DeltaFile
+27-6sys/dev/usb/wlan/if_mtw.c
+27-61 files

GhostBSD/build a9310dfpackages base

Add missing GhostBSD-mandoc and GhostBSD-sound to base package list (#257)

DeltaFile
+3-0packages/base
+3-01 files

GhostBSD/build a44e0cbpackages/vital mate common

Fixed slick-greeter vital package (#256)

DeltaFile
+2-1packages/vital/mate
+0-1packages/vital/common
+1-0packages/vital/xfce
+3-23 files

GhostBSD/build 257ed53packages/vital mate common

Fixed slick-greeter vital package
DeltaFile
+2-1packages/vital/mate
+0-1packages/vital/common
+1-0packages/vital/xfce
+3-23 files

GhostBSD/build 5666204packages base

Add missing GhostBSD-mandoc and GhostBSD-sound to base package list
DeltaFile
+3-0packages/base
+3-01 files

GhostBSD/networkmgr e222f08NetworkMgr trayicon.py net_api.py, docs TESTING_ENTERPRISE_WPA.md

Merge pull request #119 from Kernel-Error/feature/enterprise-wpa-support

Add Enterprise WPA (802.1X/EAP) support
DeltaFile
+292-9NetworkMgr/trayicon.py
+241-0docs/TESTING_ENTERPRISE_WPA.md
+227-0tests/unit/test_enterprise_wpa.py
+203-4NetworkMgr/net_api.py
+1-2NetworkMgr/wg_api.py
+1-1src/setup-nic.py
+965-166 files

FreeNAS/freenas ab89b84src/middlewared/middlewared/plugins/account_ constants.py privilege.py, src/middlewared/middlewared/utils privilege_constants.py

Clean up builtin groups.  Make the set of ALLOWED_BUILTIN_GIDS a frozenset.
DeltaFile
+10-10src/middlewared/middlewared/plugins/account_/constants.py
+9-5src/middlewared/middlewared/utils/privilege_constants.py
+3-3src/middlewared/middlewared/plugins/account_/privilege.py
+22-183 files

LLVM/project 95da135libc/config/windows config.json, libc/src/stdio/printf_core char_converter.h parser.h

Revert "[libc] Support %lc in printf (#169983)"

This reverts commit 1327c50ef199b481f5326cf6ca3710fc111b70b1.

The printf headers are intended to be header-only, this introduces
external symbol dependencies.
DeltaFile
+1-97libc/test/src/stdio/sprintf_test.cpp
+6-44libc/src/stdio/printf_core/char_converter.h
+5-27libc/src/stdio/printf_core/parser.h
+0-19libc/src/stdio/printf_core/CMakeLists.txt
+0-10libc/test/src/stdio/CMakeLists.txt
+0-8libc/config/windows/config.json
+12-2056 files not shown
+12-22612 files

LLVM/project b1e4f26bolt/test/AArch64 epilogue-determination.s

[BOLT][AArch64] Fix epilogue-determination test (#175668)

Define jump table for each function, for conformance and better clarity.
DeltaFile
+6-1bolt/test/AArch64/epilogue-determination.s
+6-11 files

LLVM/project d1aaa49clang/lib/AST ExprConstant.cpp, clang/lib/Sema SemaExprCXX.cpp

Use setExprNeedsCleanups in BuildCXXNew and avoid breaking c++98

This approach is much cleaner, but broke checkICE reporting in c++98.
Stepping through a debugger shows that this happend because the
static_assert test didn not recognize ExprWithCleanups as transparent to
constant evaluation. To addresse this, we update CheckICE to recurse
into the sub-expression, and keep the old behavior.
DeltaFile
+4-15clang/lib/Sema/SemaExprCXX.cpp
+4-1clang/lib/AST/ExprConstant.cpp
+8-162 files

OpenBSD/ports gqNmty9lang/ruby/4.0 distinfo Makefile, lang/ruby/4.0/pkg PLIST-ri_docs PLIST-main

   Update to Ruby 4.0.1

   OK tb@
VersionDeltaFile
1.2+156-0lang/ruby/4.0/pkg/PLIST-ri_docs
1.2+5-7lang/ruby/4.0/pkg/PLIST-main
1.2+2-2lang/ruby/4.0/distinfo
1.2+1-1lang/ruby/4.0/Makefile
+164-104 files

OpenBSD/ports kQaCR0fmultimedia/movit Makefile

   movit: disable building the demo app, otherwise this fails to build
   if sdl2-image is installed
VersionDeltaFile
1.3+2-0multimedia/movit/Makefile
+2-01 files

GhostBSD/update-station 40e2979. setup.py, update_station frontend.py notification.py

Merge pull request #68 from ghostbsd/fix-window-memory-leak

Replaced `hide()` with `destroy()`
DeltaFile
+4-5update_station/frontend.py
+2-3setup.py
+1-1update_station/notification.py
+7-93 files

LLVM/project 0b783f5clang/lib/CodeGen CoverageMappingGen.cpp

[MC/DC] Refactor MCDCCoverageBuilder. NFC. (#125409)

- Get rid of the old `DecisionStack` and dissolve it into push/pop
`CurCondIDs` in `VisitBin`, since `VisitBin` is recursive.

- Introduce the new `DecisionStack` with `DecisionState` to handle the
current `Decision` in nested `Decision`s.
  - The stack has the sentinel that has `DecisionExpr = nullptr`.
- Split out `checkDecisionRootOrPush` from `pushAndAssignIDs` for
non-BinOp. It assigns `CondID` to `E` (instead of assignment LHS in
`pushAndAssignIDs`).
  - The stack is manupilated at the top Decision operator in `VisitBin`.
- The stack grows at the entrance of the Decision with the initial
state.
- In the same level in `VisitBin`, the stack is popped and the
`Decision` record is emitted.
- Introduce `DecisionEndToSince` to sweep `MCDCBranch`es partially in
`cancelDecision`.
DeltaFile
+185-126clang/lib/CodeGen/CoverageMappingGen.cpp
+185-1261 files

GhostBSD/update-station 1686b1e. setup.py, update_station frontend.py notification.py

Replaced `hide()` with `destroy()`

Updated conditionals for readability and bumped a version to 6.8 in setup.py.
DeltaFile
+4-5update_station/frontend.py
+2-3setup.py
+1-1update_station/notification.py
+7-93 files

OpenBSD/src aAhfBu8sys/dev/ic nvme.c

   Use scsi_io_get rather than nvme_ccb_get for passthrough commands, so we'll
   sleep if there are no ccbs available, avoiding a panic that mlarkin@ ran into.
   While here, take the rwlock around passthrough commands that come in through
   the scsi ioctl path for consistency with the bioctl path.

   ok dlg@ krw@
VersionDeltaFile
1.126+5-4sys/dev/ic/nvme.c
+5-41 files

HardenedBSD/src 34348ddsys/dev/acpica acpi.c, sys/dev/vt vt_core.c vt.h

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+185-93sys/dev/acpica/acpi.c
+9-0sys/x86/x86/intr_machdep.c
+3-3sys/dev/vt/vt_core.c
+1-1sys/net/if_enc.c
+1-0sys/x86/include/intr_machdep.h
+0-1sys/dev/vt/vt.h
+199-986 files

LLVM/project 34cec75llvm/include/llvm/IR GlobalObject.h

LLVM_ABI

Created using spr 1.3.6-beta.1
DeltaFile
+1-1llvm/include/llvm/IR/GlobalObject.h
+1-11 files