FreeBSD/doc 7291b7bwebsite/content/en/cgi man.cgi

man.cgi: remove stale manpage releases

Remove some outdated manual pages releases which are not really
supported by man.cgi: Slackware, SLES, Ubuntu interim releases.
DeltaFile
+0-9website/content/en/cgi/man.cgi
+0-91 files

LLVM/project 24c7377llvm/lib/Target/AArch64 AArch64SchedPredNeoverse.td AArch64SchedNeoverseV2.td, llvm/test/tools/llvm-mca/AArch64/Neoverse V2-basic-instructions.s V1-basic-instructions.s

[AArch64][NeoverseV1/V2] Fix extended/shifted-register scheduling for ADD[S]/SUB[S]/AND[S]/BIC[S] (#220920)

Verified with llvm-exegesis on Neoverse V1 and V2 hardwares.

Opcodes                | Before              | After

-----------------------|---------------------|------------------------------
ADDWrx/SUBWrx | 2c (SchedAlias) | IsRealArithExtendW: 1c or 2c
ADDSWrx/SUBSWrx | IsCheapLSL | IsRealArithExtendW: 1c or 2c
ADDSXrx/SUBSXrx | IsCheapLSL | static 2c (always real extend)
ADDSXrx64/SUBSXrx64 | IsCheapLSL | static 1c (always passthrough)
ANDS/BICS Wrs,Xrs      | static 2c           | NeoverseShift0: 1c or 2c

IsCheapLSL checks the shift *amount* (<=4), which is the wrong axis for
the extend-register forms (need the extend *type* instead) and does not
apply to ANDS/BICS (no amount threshold, just shift-present-or-not).
NeoverseNoLSL becomes NeoverseShift0: adding LSR, ASR and ROR in
addition to LSL. Does not apply it on NeoverseV3 and others as it is not
validated using llvm-exegesis on these hardwares.
DeltaFile
+65-65llvm/test/tools/llvm-mca/AArch64/Neoverse/V1-basic-instructions.s
+59-59llvm/test/tools/llvm-mca/AArch64/Neoverse/V2-basic-instructions.s
+32-12llvm/lib/Target/AArch64/AArch64SchedNeoverseV1.td
+16-1llvm/lib/Target/AArch64/AArch64SchedNeoverseV2.td
+14-0llvm/lib/Target/AArch64/AArch64SchedPredNeoverse.td
+186-1375 files

FreeNAS/freenas 35957fa

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 7d5716d

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 6d2e44csrc/middlewared/middlewared/plugins/usage gather.py

NAS-143924 / 27.0.0-BETA.1 / Fix webshare share gathering in usage reporting (#19800)

## Problem
`sharing.webshare` is a typesafe service, so its `query` hands back
pydantic entries rather than dicts, and the gather loop subscripted
them. A single configured webshare was enough to raise `TypeError` — and
since `gather()` swallows a failing stat function wholesale, that
dropped the entire `shares` payload, SMB/NFS/iSCSI included, leaving
only a log line behind.

## Solution
Read `enabled` and `is_home_base` off the entry as attributes.
DeltaFile
+1-1src/middlewared/middlewared/plugins/usage/gather.py
+1-11 files

FreeNAS/freenas e320c6bsrc/middlewared/middlewared/api/v26_0_0 s3.py, src/middlewared/middlewared/plugins/filesystem_ acl.py

Fix S3 backport
DeltaFile
+3-3src/middlewared/middlewared/plugins/truenas_s3/__init__.py
+3-3src/middlewared/middlewared/plugins/filesystem_/acl.py
+1-0src/middlewared/middlewared/api/v26_0_0/s3.py
+7-63 files

LLVM/project 4f10e03llvm/lib/Target TargetMachineC.cpp

llvm-c: Compute the DataLayout from the triple and ABI

Drop a use of createDataLayout

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+5-2llvm/lib/Target/TargetMachineC.cpp
+5-21 files

LLVM/project db349a4clang-tools-extra/clang-tidy/readability NonConstParameterCheck.cpp, clang-tools-extra/docs ReleaseNotes.md

[clang-tidy] Fix false positive in readability-non-const-parameter for atomic builtins (#221951)

Atomic builtins are represented in the AST by `AtomicExpr` rather than
`CallExpr`, so `readability-non-const-parameter` never analysed their
operands and assumed the pointed-to data was only read. It then
suggested making those pointer parameters point to const, and applying
the fix-it produced code that no longer compiles.

The most visible case is the `expected` operand of a compare-exchange,
which per the C standard must be a pointer to non-const because it
receives the old value when the exchange fails:
https://godbolt.org/z/sovKf3G3c

Before this change the check reported `expected` as a candidate for
pointer-to-const. The GNU builtins are affected the same way, and there
the address operand `obj` was reported too, as were the destination
operand of `__atomic_load()` and the old-value operand of
`__atomic_exchange()`.


    [5 lines not shown]
DeltaFile
+35-0clang-tools-extra/test/clang-tidy/checkers/readability/non-const-parameter.cpp
+30-0clang-tools-extra/test/clang-tidy/checkers/readability/non-const-parameter.c
+8-1clang-tools-extra/clang-tidy/readability/NonConstParameterCheck.cpp
+6-0clang-tools-extra/docs/ReleaseNotes.md
+79-14 files

FreeNAS/freenas 7b7835fsrc/middlewared/middlewared/plugins/usage gather.py

Fix webshare share gathering in usage reporting

## Problem
`sharing.webshare` is a typesafe service, so its `query` hands back pydantic entries rather than dicts, and the gather loop subscripted them. A single configured webshare was enough to raise `TypeError` — and since `gather()` swallows a failing stat function wholesale, that dropped the entire `shares` payload, SMB/NFS/iSCSI included, leaving only a log line behind.

## Solution
Read `enabled` and `is_home_base` off the entry as attributes.
DeltaFile
+1-1src/middlewared/middlewared/plugins/usage/gather.py
+1-11 files

LLVM/project bb50aa7libcxx/test/benchmarks regex.bench.cpp

[libc++] Add some basic benchmarks for std::regex (#223633)
DeltaFile
+97-0libcxx/test/benchmarks/regex.bench.cpp
+97-01 files

LLVM/project 47f4f0fllvm/lib/Analysis ValueTracking.cpp, llvm/test/Transforms/InstCombine recurrence.ll

[ValueTracking] Compute known bits for `umin` and `umax` recurrences (#222890)
DeltaFile
+371-0llvm/test/Transforms/InstCombine/recurrence.ll
+49-19llvm/lib/Analysis/ValueTracking.cpp
+420-192 files

LLVM/project 26dd406llvm/tools/llc/lib llcdriver.cpp

llc: Compute the DataLayout from the triple and ABI

This is the minimum change to avoid createDataLayout. Future work
will be needed here to really drop use of the ABIName field.
DeltaFile
+1-1llvm/tools/llc/lib/llcdriver.cpp
+1-11 files

FreeNAS/freenas b7d6e0csrc/middlewared/middlewared/plugins/docker state_setup.py, src/middlewared/middlewared/plugins/pool_ import_pool.py

Enforce canmount=noauto across the whole apps dataset tree

## Problem
We only re-assert canmount=noauto on the five structural ix-apps datasets, never on the per-app volume datasets beneath app_mounts. If one of those ends up canmount=on - a hand-rolled zfs recv migration, or simply the ZFS default when a replication task runs without properties - the boot mount sweep mounts it while correctly skipping its noauto parent, and docker then mounts /mnt/.ix-apps straight over the top. The volume stays mounted but unreachable: zfs reports mounted=yes, stat returns ENOENT, and the container fails with "bind source path does not exist". Nothing recovers from this on its own, because the remount path only mounts datasets reporting mounted=no.

## Solution
Walk the whole apps tree in a single query and set canmount=noauto wherever it drifted. This is hooked into the docker start reconcile and, more importantly, into pool import right after the root dataset properties are normalized. The import hook is what actually prevents the breakage - it runs while the pool is imported but none of it is mounted yet, so the recursive mount that follows never encounters a canmount=on descendant. Pool import cannot fail because of it; a failure only logs a warning.

The docker setup plugin here is a service rather than the module-level functions it became elsewhere, so the enforcement lives on docker.setup as a sync impl plus an async wrapper, and the callers in import_pool go through middleware.call rather than a typed accessor.
DeltaFile
+30-0src/middlewared/middlewared/plugins/docker/state_setup.py
+18-0tests/api2/test_apps.py
+16-0src/middlewared/middlewared/plugins/pool_/import_pool.py
+64-03 files

LLVM/project 6f653e2libc/src/grp setgrent.cpp getgrent.cpp, libc/test/src/grp CMakeLists.txt grp_test_utils.h

[libc] Add getgrent, setgrent, and endgrent entrypoints (#224372)

Implement the POSIX group database iteration entrypoints getgrent,
setgrent, and endgrent on top of grp_utils and FlatFileDatabase.

Non-reentrant calls read into a process-global DynamicBuffer that grows
to the high-water mark of the largest group record seen. endgrent closes
the file stream without freeing the buffer so pointers returned prior to
endgrent remain valid until the next non-reentrant call.

* Add getgrent, setgrent, and endgrent entrypoints
* Define getgrent, setgrent, and endgrent in include/grp.yaml
* Expose entrypoints across Linux target architectures
* Add hermetic integration tests in test/src/grp/getgrent_test.cpp

Assisted-by: Automated tooling, human reviewed.
DeltaFile
+212-0libc/test/src/grp/getgrent_test.cpp
+62-0libc/test/src/grp/grp_test_utils.h
+43-0libc/src/grp/CMakeLists.txt
+30-0libc/src/grp/getgrent.cpp
+28-0libc/test/src/grp/CMakeLists.txt
+27-0libc/src/grp/setgrent.cpp
+402-010 files not shown
+546-116 files

LLVM/project ad0072dflang/lib/Optimizer/HLFIR/Transforms InlineHLFIRCopy.cpp ConvertToFIR.cpp, flang/test/Fir allocation-policy-pipeline.fir

Reland [flang][HLFIR] make copyin/copyout allocation inline (#224063) (#224570)

This patch moves most allocations of copyin/copyout to the compiler so
that small buffers can be stack allocated, even when the loops are not
inlined. The main motivation is to allow better memory management when
the code ends-up in device region, but this also benefits CPU by giving
more control over allocations.

In the future, we may just consider inlining everything including
copyout, but very early attempts to do so showed that this increased WRF
compile times significantly at O2 for no benefits and the copyout runtime
was just modified to do "copy on change" so I do not want to inline it
until more this new approached is tested more broadly.

Hence this patch just moves to use `ShallowCopyDirect` for the copy-in
and a new `CopyOutAssignDirect` for the copy-out (so that the new copy
on change policy can be integrated) for non assumed-rank non polymorphic
copy-in/copy-out, and does the allocation inline for the buffer
following the same rules as in `inlineHLFIRCopyin` (i.e. small buffers

    [9 lines not shown]
DeltaFile
+119-52flang/lib/Optimizer/HLFIR/Transforms/ConvertToFIR.cpp
+71-95flang/test/HLFIR/copy-in-out-codegen.fir
+49-42flang/test/Lower/dummy-argument-optional-2.f90
+9-58flang/lib/Optimizer/HLFIR/Transforms/InlineHLFIRCopy.cpp
+33-30flang/test/Lower/dummy-argument-assumed-shape-optional.f90
+52-3flang/test/Fir/allocation-policy-pipeline.fir
+333-28032 files not shown
+633-48338 files

FreeNAS/freenas ebedb16

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

FreeNAS/freenas 975f5dfsrc/middlewared/middlewared/plugins/docker __init__.py state_setup.py, src/middlewared/middlewared/plugins/pool_ import_pool.py

NAS-142807 / 27.0.0-BETA.1 / Enforce canmount=noauto across the whole apps dataset tree (#19699)

## Problem
We only re-assert canmount=noauto on the five structural ix-apps
datasets, never on the per-app volume datasets beneath app_mounts. If
one of those ends up canmount=on - a hand-rolled zfs recv migration, or
simply the ZFS default when a replication task runs without properties -
the boot mount sweep mounts it while correctly skipping its noauto
parent, and docker then mounts /mnt/.ix-apps straight over the top. The
volume stays mounted but unreachable: zfs reports mounted=yes, stat
returns ENOENT, and the container fails with "bind source path does not
exist". Nothing recovers from this on its own, because the remount path
only mounts datasets reporting mounted=no.

## Solution
Walk the whole apps tree in a single query and set canmount=noauto
wherever it drifted. This is hooked into the docker start reconcile and,
more importantly, into pool import right after the root dataset
properties are normalized. The import hook is what actually prevents the

    [3 lines not shown]
DeltaFile
+26-0src/middlewared/middlewared/plugins/docker/state_setup.py
+18-0tests/api2/test_apps.py
+16-0src/middlewared/middlewared/plugins/pool_/import_pool.py
+5-0src/middlewared/middlewared/plugins/docker/__init__.py
+65-04 files

LLVM/project 1985f37llvm/cmake/modules LLVMExternalProjectUtils.cmake

[CMake] Do not use llvm-rc without Clang in external projects (#224505)

On Windows, configuring LLVM without Clang but with external projects

i.e. 
```
-DLLVM_ENABLE_PROJECTS=
-DLLVM_ENABLE_RUNTIMES=orc-rt
```

llvm-rc is selected as the rc compiler but requires clang for
pre-processing. Only select llvm-rc for external projects when Clang is
also part of the toolchain, otherwise CMake uses the host rc compiler.
DeltaFile
+2-2llvm/cmake/modules/LLVMExternalProjectUtils.cmake
+2-21 files

OpenBSD/ports 7hkDzlReditors/xwpe Makefile

   set COMPILER; gnu17
VersionDeltaFile
1.41+4-0editors/xwpe/Makefile
+4-01 files

OpenBSD/ports 3xIbavjeditors/xwpe distinfo Makefile, editors/xwpe/patches patch-we_fl_unix_c patch-Makefile_in

   update to xwpe-1.6.9, new version pointed out by Juan M. Mendez Rey
   (new upstream at https://codeberg.org/mendezr/xwpe, taking over from
   https://identicalsoftware.com/xwpe/)
VersionDeltaFile
1.7+33-0editors/xwpe/pkg/PLIST
1.40+16-12editors/xwpe/Makefile
1.3+11-14editors/xwpe/patches/patch-Makefile_in
1.5+5-9editors/xwpe/patches/patch-we_fl_unix_c
1.4+5-5editors/xwpe/pkg/DESCR
1.6+2-2editors/xwpe/distinfo
+72-421 files not shown
+72-427 files

LLVM/project b35e493llvm/include/llvm/Analysis Loads.h, llvm/lib/Analysis Loads.cpp MemoryDependenceAnalysis.cpp

[MemoryDependenceAnalysis] Migrate `isStorePreservingMemoryLocation` to Loads (NFC) (#223700)

Minor opportunity to expose the helper and move it out of MDA.
DeltaFile
+2-34llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
+30-0llvm/lib/Analysis/Loads.cpp
+11-0llvm/include/llvm/Analysis/Loads.h
+43-343 files

NetBSD/pkgsrc nVHIcvhdoc TODO

   TODO: wish for a native Java SWT package
VersionDeltaFile
1.27932+6-1doc/TODO
+6-11 files

FreeBSD/ports cae903cdevel/llvm22 Makefile.RUNTIMES Makefile

devel/llvm22: fix arm64 and FLANG plists

In the arm64 case, add a missing file.  In the FLANG case, delete an
empty directory.

PR:             298493, 298511
Reported by:    yuri
DeltaFile
+3-0devel/llvm22/Makefile
+1-0devel/llvm22/Makefile.RUNTIMES
+4-02 files

OpenBSD/src 6arUMVhsys/dev/pci/drm/i915/gt intel_sseu.c, sys/dev/pci/drm/include/linux bitmap.h

   unstub intel_slicemask_from_xehp_dssmask()
VersionDeltaFile
1.11+17-1sys/dev/pci/drm/include/linux/bitmap.h
1.9+0-4sys/dev/pci/drm/i915/gt/intel_sseu.c
+17-52 files

FreeBSD/ports a1d58f9devel/llvm-devel Makefile.COMMANDS Makefile.snapshot, devel/llvm-devel/files patch-flang-rt_lib_runtime_environment.cpp patch-clang_lib_Interpreter_IncrementalExecutor.cpp

devel/llvm-devel: new snapshot

Sponsored by:   DARPA, AFRL
DeltaFile
+52-13devel/llvm-devel/pkg-plist
+0-11devel/llvm-devel/files/patch-clang_lib_Interpreter_IncrementalExecutor.cpp
+0-10devel/llvm-devel/files/patch-flang-rt_lib_runtime_environment.cpp
+3-3devel/llvm-devel/distinfo
+2-2devel/llvm-devel/Makefile.snapshot
+2-0devel/llvm-devel/Makefile.COMMANDS
+59-391 files not shown
+60-397 files

OpenBSD/ports Hj0qK7rsysutils/firmware/vmm Makefile, sysutils/firmware/vmm/patches patch-sgabios_sgabios_S

   fix rcs id in patch
VersionDeltaFile
1.6+0-9sysutils/firmware/vmm/patches/patch-sgabios_sgabios_S
1.38+2-2sysutils/firmware/vmm/Makefile
+2-112 files

LLVM/project 69410bellvm/test/CodeGen/AMDGPU alloc-aligned-tuples-gfx1250.mir

[AMDGPU][CodeGen] Replace non-existent opcodes in gfx1250 test (#223767)

`IMAGE_LOAD_V5_V1` and `IMAGE_SAMPLE_C_CL_O_V4_V8` don't exist on
gfx1250. This keeps the tests' intent without relying on them.
DeltaFile
+4-3llvm/test/CodeGen/AMDGPU/alloc-aligned-tuples-gfx1250.mir
+4-31 files

LLVM/project 7db8a89llvm/include/llvm/CodeGen SelectionDAG.h RegisterClassInfo.h, llvm/include/llvm/CodeGen/GlobalISel IRTranslator.h InstructionSelect.h

[llvm] Adjust LLVM_ABI annotations (#224293)

The automatic LLVM_ABI annotations script has been broken since #208780.
PR #223354 restores its functionality. In the meantime, some API
annotations regressed. This PR aims to fix all of these regressions.

This was applied by calling the updated ids-check-helper.py from #223354
on the public LLVM headers on a macOS host and clang-formatting the
results.

The effort to build LLVM as a dylib is tracked in #109483.
DeltaFile
+12-11llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
+8-8llvm/include/llvm/Support/RWMutex.h
+5-5llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
+5-4llvm/include/llvm/CodeGen/RegisterClassInfo.h
+4-4llvm/include/llvm/CodeGen/SelectionDAG.h
+5-3llvm/include/llvm/MC/MCAsmStreamer.h
+39-3519 files not shown
+75-6925 files

LLVM/project e1c8d71lld/test/ELF icf3.s icf2.s

[ELF,test] Reorganize ICF tests by the property they exercise (#224567)

icf-merge.s now covers relocations into SHF_MERGE sections, adding
section symbol addends at and past the end of the section.

icf-reference-graph.s collects reference shapes: the cycle from icf2.s
and icf3.s, a section referencing itself, and chains that differ only
beyond the initial hash's reach. Only the cycle was covered before.
DeltaFile
+111-0lld/test/ELF/icf-reference-graph.s
+84-13lld/test/ELF/icf-merge.s
+0-26lld/test/ELF/icf14.s
+0-18lld/test/ELF/icf-merge-sec.s
+0-17lld/test/ELF/icf2.s
+0-16lld/test/ELF/icf3.s
+195-905 files not shown
+195-13411 files

LLVM/project d932489clang/lib/CodeGen CGCleanup.cpp CGException.cpp

[CodeGen] Don't use CreateRuntimeFunction() for intrinsics (#224329)

These should just use getIntrinsic().
DeltaFile
+2-15clang/lib/CodeGen/CGException.cpp
+4-12clang/lib/CodeGen/CGCleanup.cpp
+6-272 files