LLVM/project 606f039libc/src/pwd CMakeLists.txt pwd_utils.cpp, libc/test/src/pwd CMakeLists.txt getpwuid_test.cpp

[libc] Read passwd records into a growable buffer (#224149)

Switch getpwent, getpwnam, and getpwuid to use DynamicBuffer so that
passwd records of arbitrary length are supported without fixed size
limits.

A single static DynamicBuffer and struct passwd are reused across
getpwent, getpwnam, and getpwuid per POSIX, and endpwent closes the file
stream without freeing the buffer so pointers returned prior to endpwent
remain valid.

The reentrant lookups (getpwnam_r and getpwuid_r) remain non-allocating
and return ERANGE when the caller's buffer is too small.

* Switch non-reentrant pwd lookups and iteration to DynamicBuffer
* Remove fixed 1024-byte buffer limit from pwd_utils
* Keep getpwnam_r and getpwuid_r non-allocating
* Update hermetic unit tests for long passwd records

Assisted-by: Automated tooling, human reviewed.
DeltaFile
+88-19libc/test/src/pwd/getpwent_test.cpp
+62-12libc/test/src/pwd/getpwnam_test.cpp
+44-16libc/src/pwd/pwd_utils.cpp
+21-12libc/test/src/pwd/getpwuid_test.cpp
+8-0libc/test/src/pwd/CMakeLists.txt
+1-0libc/src/pwd/CMakeLists.txt
+224-596 files

LLVM/project edbba99llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Orc BUILD.gn

[gn build] Port 3f9ca800da7b (#224363)
DeltaFile
+0-1llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Orc/BUILD.gn
+0-11 files

LLVM/project 7dc56a7llvm/utils/gn/secondary/libcxx/include BUILD.gn

[gn build] Port 9e0686cca516 (#224364)
DeltaFile
+1-1llvm/utils/gn/secondary/libcxx/include/BUILD.gn
+1-11 files

FreeBSD/src 3bdc281share/man/man4 ice.4, sys/dev/ice ice_iov.c

ice: Enforce VF MAC anti-spoof policy

The SR-IOV schema enables MAC anti-spoofing by default, but the driver
never programs the VSI security section.  A VF can therefore transmit
with an arbitrary source address despite the configured policy.

Program ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF when the VF VSI is
created, and replay the policy when the VSI is rebuilt after a PF or
device reset.  Fail VF creation or rebuild when firmware cannot install
the security policy so an unprotected VF is never published as active.

Validated on E810 hardware with host-attached and Linux passthrough
VFs.  Traffic using the assigned source MAC passed while otherwise
identical forged-source frames were dropped.  After a PF reset, assigned
traffic resumed and zero of ten forged frames reached the peer.

An injected MAC anti-spoof update failure left the VF inactive.
Destroying and recreating the SR-IOV configuration restored the policy
and traffic.

    [4 lines not shown]
DeltaFile
+49-0sys/dev/ice/ice_iov.c
+6-2share/man/man4/ice.4
+55-22 files

LLVM/project 22be12fllvm/utils/gn/secondary/llvm/lib/Support BUILD.gn

[gn build] Port c5c167c7436f (#224365)
DeltaFile
+1-0llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
+1-01 files

FreeNAS/freenas 8755ddbsrc/middlewared/middlewared/api/v26_0_0 s3.py, src/middlewared/middlewared/api/v27_0_0 s3.py

Default S3 multipart_etag to MINTED

New buckets get MINTED unless the caller asks for COMPOSITE. Existing buckets keep their stored value.
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 63225d3libcxx/cmake/caches Generic-llvm-libc.cmake

[libcxx][libc] Update LLVM-libc/compiler-rt config (#224160)

The config libc++ uses to build with LLVM-libc uses compiler-rt, but
previously wasn't building the compiler-rt atomic library. This PR
updates the config to tell compiler-rt to build its atomic library.
DeltaFile
+1-0libcxx/cmake/caches/Generic-llvm-libc.cmake
+1-01 files

LLVM/project f080b55llvm/lib/Analysis ConstantFolding.cpp, llvm/test/Transforms/InstSimplify/ConstProp vecreduce.ll

[ConstantFolding] Fold vector.partial.reduce.add constants (#212112)

This patch adds constant folding support for `llvm.vector.partial.reduce.add`.

The intrinsic leaves the grouping of input elements into result lanes
unspecified. This implementation uses the deterministic grouping
selected by
the generic lowering in `TargetLowering::expandPartialReduceMLA`: input
element `I` is accumulated into result lane `I % NumAccElts`.

Tests cover:
* Constant accumulator and input vectors
* Non-constant accumulator and input operands
* Poison and undef elements
* Different reduction ratios
* Negative values
* Integer wraparound

Fixes #211558
DeltaFile
+101-0llvm/test/Transforms/InstSimplify/ConstProp/vecreduce.ll
+45-0llvm/lib/Analysis/ConstantFolding.cpp
+146-02 files

FreeBSD/ports 26cfd6fwww/nginx-devel Makefile.options.desc Makefile

www/nginx-devel: Add NJS_QJS and NJS_XML options

The port pulled quickjs, libxml2 and libxslt unconditionally with NJS
and always built the QuickJS engine.  Split this into the NJS_QJS and
NJS_XML options, so that www/nginx, www/nginx-devel and www/freenginx
offer the same set.

Sponsored by:   Netzkommune GmbH
DeltaFile
+10-5www/nginx-devel/Makefile
+11-4www/nginx-devel/Makefile.extmod
+2-0www/nginx-devel/Makefile.options.desc
+23-93 files

LLVM/project f873bf3clang/include/clang/AST ASTContext.h TypeBase.h, clang/lib/AST Type.cpp ASTContext.cpp

[BoundsSafety][NFC] Allow CountAttributedType's count to be filled in later (#223267)

Prepare CountAttributedType so its count expression can be supplied
after the node is created, which the new late-parsed counted_by
mechanism needs: the type is built when the attribute is seen, but its
argument isn't parsed until the enclosing record is complete.

- Drop the TrailingObjects coupled-decl storage in favour of an
ASTContext-allocated array held by the ArrayRef the base class already
has, so the decls can be attached after construction.
  - Add CountAttributedType::setCountExpr for in-place completion.
- Add ASTContext::getIncompleteCountAttributedType (count-less, not
uniqued) and completeCountAttributedType. Incomplete nodes are not
registered in ASTContext.Types until completed, so a node abandoned with
a null count is never reachable.

No functional change: getCountAttributedType still builds a
fully-formed, count-carrying type as before.


    [9 lines not shown]
DeltaFile
+47-5clang/lib/AST/ASTContext.cpp
+28-15clang/include/clang/AST/TypeBase.h
+39-3clang/lib/AST/Type.cpp
+16-0clang/include/clang/AST/ASTContext.h
+2-2clang/lib/Sema/SemaBoundsSafety.cpp
+132-255 files

LLVM/project 7e57486llvm/docs LangRef.md, llvm/lib/IR Verifier.cpp

[IR] Provide intrinsics for speculative loads (#179642)

Introduce two new intrinsics to enable vectorization of loops with early
exits that have potentially faulting loads.

1. `@llvm.speculative.load` - perform a load that may access memory
beyond the allocated object. It must be used in combination with 
`@llvm.can.load.speculatively` to ensure the load is guaranteed to not
trap. The number of accessible bytes must be provided, either as IR value
or via an oracle function.

2. `@llvm.can.load.speculatively` - Returns true if it's safe to
speculatively load a given number of bytes from a pointer. The semantics
are target-dependent. On some targets, this may check that the access
does not cross page boundaries, or stricter checks for example on
AArch64 with MTE, which limits the access size to 16 bytes.

`@llvm.speculative.load` is lowered to a regular load in SelectionDAG
without MODereferenceable.

    [15 lines not shown]
DeltaFile
+185-0llvm/test/Verifier/speculative-load.ll
+183-0llvm/test/CodeGen/AArch64/can-load-speculatively.ll
+162-0llvm/test/CodeGen/X86/speculative-load-intrinsic.ll
+157-0llvm/test/CodeGen/AArch64/speculative-load-intrinsic.ll
+132-0llvm/docs/LangRef.md
+66-0llvm/lib/IR/Verifier.cpp
+885-013 files not shown
+1,222-019 files

LLVM/project b0874d1llvm/include/llvm/CodeGen MachineInstr.h, llvm/include/llvm/CodeGen/GlobalISel GenericMachineInstrs.h GIMatchTableExecutorImpl.h

[GlobalISel] Drop poison flags by default in combiners (#218306)

GlobalISel TableGen combiners were implicitly copying poison-generating
flags from the root instruction to newly-created instructions. This is
unsafe because the replacement instruction may not preserve the same
`nuw`/`nsw` guarantees.

Drop those flags by default for combiners, while keeping explicit
`MIFlags` preservation intact.

Fixes #210470
DeltaFile
+29-4llvm/include/llvm/CodeGen/GlobalISel/GIMatchTableExecutorImpl.h
+23-0llvm/test/CodeGen/AArch64/GlobalISel/combine-integer.mir
+4-6llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h
+7-1llvm/utils/TableGen/GlobalISelCombinerEmitter.cpp
+5-0llvm/include/llvm/CodeGen/MachineInstr.h
+2-2llvm/test/TableGen/GlobalISelCombinerEmitter/pattern-parsing.td
+70-133 files not shown
+81-139 files

LLVM/project 45473e8clang/lib/Headers riscv_packed_simd.h, clang/test/CodeGen/RISCV rvp-intrinsics.c

[RISCV][P-ext] Support Packed Subvector Join (#224233)

This PR adds support for the Packed Subvector Join intrinsics:

- `__riscv_pjoin2_i8x8`
- `__riscv_pjoin2_u8x8`
- `__riscv_pjoin2_i16x4`
- `__riscv_pjoin2_u16x4`
DeltaFile
+90-0clang/test/CodeGen/RISCV/rvp-intrinsics.c
+28-0cross-project-tests/intrinsic-header-tests/riscv_packed_simd.c
+17-0clang/lib/Headers/riscv_packed_simd.h
+135-03 files

FreeBSD/src e70ff92sys/dev/ice ice_iov.c

ice: Add malformed virtchnl injection points

Extend the optional ice(4) failure injection facility with semantic
corruption points for queue configuration, RSS keys and tables, and
interrupt mappings.

Each point mutates an otherwise valid request after the common
virtchnl length check.  This exercises the PF semantic validators with a
real VF while preserving the normal wire format and mailbox path.

The queue point selects unaligned Tx or Rx bases, an unaligned or
unrepresentable receive buffer, an invalid frame size, duplicate queue
IDs, or a bad VSI.  The RSS points select short advertised data or an
out-of-range LUT entry.  The interrupt point selects an invalid ITR,
traffic on vector zero, duplicate vectors, or a bad VSI.

The points remain absent unless the kernel is built with
options DRIVER_FAILPOINTS and retain the existing PF and VF selectors.


    [3 lines not shown]
DeltaFile
+72-0sys/dev/ice/ice_iov.c
+72-01 files

FreeBSD/ports f189615misc/py-python-pygtrie distinfo pkg-descr

misc/py-python-pygtrie: remove moved port files (misc/py-pygtrie)
DeltaFile
+0-24misc/py-python-pygtrie/Makefile
+0-4misc/py-python-pygtrie/pkg-descr
+0-3misc/py-python-pygtrie/distinfo
+0-313 files

FreeBSD/ports 0c4806amisc/py-vllm/files patch-CMakeLists.txt patch-cmake_cpu__extension.cmake

misc/py-vllm: fix build with the latest pytorch
DeltaFile
+21-12misc/py-vllm/files/patch-cmake_cpu__extension.cmake
+11-0misc/py-vllm/files/patch-CMakeLists.txt
+32-122 files

FreeBSD/ports fdec694misc/py-mmcv Makefile, misc/py-mmcv/files patch-setup.py

misc/py-mmcv: fix build with the latest pytorch; update WWW

Reported by:    fallout
DeltaFile
+46-0misc/py-mmcv/files/patch-setup.py
+2-1misc/py-mmcv/Makefile
+48-12 files

FreeBSD/src d44390fsys/dev/ice ice_iov.c

ice: Validate VF virtchnl configuration

Virtchnl requests originate in guest-controlled VFs.  The existing PF
implementation checked message shape but allowed several hardware-facing
values through without complete semantic validation.

Require the exact RSS key and LUT sizes advertised to the VF, validate
every LUT entry, and pass only the validated LUT length to firmware.  A
short LUT previously caused the AdminQ command to read beyond the
received request.

Validate queue ring bases, descriptor counts, receive buffer units,
maximum frame sizes, and per-VSI consistency before disabling or
changing any queue.  This also prevents the 32-bit receive ring length
from being truncated through a 16-bit validation helper.

Advertise the PF frame-size limit in VF resources.  Leaving max_mtu
zero causes Linux iavf to request a 16382-byte frame, beyond the
9728-byte limit enforced by this driver.

    [20 lines not shown]
DeltaFile
+153-59sys/dev/ice/ice_iov.c
+153-591 files

FreeBSD/src 3eaa8b1share/man/man4 Makefile

man: Link enic.4 to if_enic.4

For consistency, create a symbolic link from enic.4 to also if_enic.4

Reviewed by:            ziaee, #manpages
Differential Revision:  https://reviews.freebsd.org/D59755
MFC after:              3 days
DeltaFile
+1-0share/man/man4/Makefile
+1-01 files

LLVM/project ed30183llvm/lib/Transforms/Vectorize LoopVectorizationPlanner.h LoopVectorize.cpp

[VPlan] Drop unused arg from addReductionResultComputation (NFC). (#224320)

The RecipeBuilder parameter is not used, remove it.
DeltaFile
+1-3llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
+2-2llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+3-52 files

LLVM/project 3bb1615clang/lib/CIR/CodeGen CIRGenTypes.cpp, clang/test/CIR/CodeGen atomic-fn-nyi.c

[CIR] Report errorNYI for function signatures involving atomic types (#221371)

CIR currently has no way to represent atomic types. In most cases this
has no meaningful effect, but it can lead to incorrect argument and
return type classification during calling convention lowering. This
change adds a diagnostic when we are processing function signatures with
atomic types.

Assisted-by: Cursor / Grok 4.6
DeltaFile
+74-0clang/test/CIR/CodeGen/atomic-fn-nyi.c
+31-0clang/lib/CIR/CodeGen/CIRGenTypes.cpp
+105-02 files

LLVM/project 930aba6flang/lib/Lower Bridge.cpp, flang/test/Lower/OpenACC acc-loop-collapse-directive-between-loops.f90

[flang][OpenACC] Attach a source location to the skipped-directive warning (#224348)

Follow-up to #223579.

Fix the source location of "compiler directive ignored: it appears
between loop levels of a collapsed or tiled loop nest" warning. Harden
`flang/test/Lower/OpenACC/acc-loop-collapse-directive-between-loops.f90`
test.

Assisted-by: AI
DeltaFile
+41-4flang/test/Lower/OpenACC/acc-loop-collapse-directive-between-loops.f90
+9-3flang/lib/Lower/Bridge.cpp
+50-72 files

FreeNAS/freenas 0cdbe9fsrc/middlewared/middlewared/plugins/truenas_s3 __init__.py

NAS-143860 / 27.0.0-BETA.1 / Restart the S3 service when the license changes (#19781)

The S3 daemon asks truenas.entitlements.check for S3_VERSIONING and
S3_AUDIT once, before it registers a bucket, and holds the answer for
the life of the process. A reload re-reads its files and not the license
-- by design, so every registration-consumed fact arrives the same way,
a restart. Nothing performed that restart: no system.post_license_update
subscriber reached the service, and the license reconcile pass carried
no S3 delegate.

So a revoked versioning entitlement went on minting versions until
someone restarted the service by hand, and -- the direction that reaches
a customer -- a granted one left every object-lock bucket the daemon had
excluded at start answering 503 after the license that would serve it
was installed.

Register a RESTART delegate for the service, ordered after the user
delegate since the credentials file the restart renders resolves every
access key through NSS. It runs only while the service is up: RESTART

    [4 lines not shown]
DeltaFile
+38-2src/middlewared/middlewared/plugins/truenas_s3/__init__.py
+38-21 files

LLVM/project c5dbb77llvm/lib/Target/AArch64 AArch64.td AArch64ValidateRetiredNames.td, llvm/test/MC/AArch64 retired-names.s

fixup! Address CR comments; make this simpler
DeltaFile
+0-43llvm/test/TableGen/aarch64-retired-names.td
+0-37llvm/lib/Target/AArch64/AArch64ValidateRetiredNames.td
+18-0llvm/test/MC/AArch64/retired-names.s
+0-12llvm/lib/Target/AArch64/AArch64.td
+18-924 files

LLVM/project f545ee7clang/lib/CIR/CodeGen CIRGenCall.cpp, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR] Implement musttail cleanup handling (#224169)

A musttail call can occur within a cleanup scope if (and only if) the
cleanup is a lifetime end marker or a stack restore. These can be safely
omitted by a direct return such as is needed for a tail call.

This change adds error checking to verify that only these cleanups are
on the EH stack when a musttail call is encountered and updates the CFG
flattening pass to add special handling that avoids routing musttail
call returns through the cleanup handler.

Assisted-by: Cursor / claude-opus-5
DeltaFile
+219-0clang/test/CIR/Transforms/flatten-cleanup-scope-musttail.cir
+80-0clang/test/CIR/IR/invalid-cleanup-scope-musttail.cir
+52-5clang/test/CIR/CodeGen/attr-musttail.cpp
+46-9clang/lib/CIR/Dialect/Transforms/FlattenCFG.cpp
+40-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+15-8clang/lib/CIR/CodeGen/CIRGenCall.cpp
+452-224 files not shown
+459-2210 files

OpenBSD/ports VfmC2zrwww/goaccess Makefile distinfo, www/goaccess/patches patch-src_browsers_c patch-config_goaccess_conf

   update to goaccess-1.12
VersionDeltaFile
1.11+26-10www/goaccess/patches/patch-config_goaccess_conf
1.13+2-2www/goaccess/patches/patch-src_browsers_c
1.43+2-2www/goaccess/distinfo
1.57+1-1www/goaccess/Makefile
+31-154 files

LLVM/project 173a122llvm/lib/Target/WebAssembly WebAssemblySubtarget.h WebAssemblyTargetMachine.h

WebAssembly: Partially clean up subtarget construction (#224307)

There should be just one getSubtargetImpl(Function&) override like every
other target, but this is relying on the global subtarget. Remove the
argumentless form since it's unnecessary.
WebAssemblyCoalesceFeaturesAndStripAtomics doesn't really need to
construct a full new subtarget for its purpose and can directly take the global
subtarget feature bits. This pass is also doing quite a lot of other bad things,
like mutating the TargetMachine.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+12-15llvm/lib/Target/WebAssembly/WebAssemblyCoalesceFeaturesAndStripAtomics.cpp
+4-12llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+3-3llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
+2-3llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
+2-3llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
+2-2llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
+25-386 files

NetBSD/pkgsrc-wip 8431799libks PLIST

libks: Remove +x bits

PLIST does not need to be executable.
DeltaFile
+0-0libks/PLIST
+0-01 files

NetBSD/pkgsrc-wip 0a0bcabllama.cpp TODO

llama.cpp: Add reference to CVE-2026-86317
DeltaFile
+1-1llama.cpp/TODO
+1-11 files

NetBSD/pkgsrc-wip bdfc9d1gnome-tweaks TODO

gnome-tweaks: Add reference to CVE-2026-74859
DeltaFile
+3-0gnome-tweaks/TODO
+3-01 files