NetBSD/src 4EK5snRusr.bin/nc netcat.c

   PR/60597: RVP: Instead of assuming that writing to a UDP port is an immediate
   success, wait for a bit for the ICMP port unreachable message to reach us.
VersionDeltaFile
1.10+20-10usr.bin/nc/netcat.c
+20-101 files

FreeBSD/src 17042fdsys/dev/e1000 if_em.h e1000_defines.h

e1000: Report 82576 memory ECC errors

82576 exposes clear-on-read corrected error counters for RX, TX,
switch, IPsec, descriptor-handler, PCIe retry, PCIe write, and
MSI-X memories.  The packet and descriptor memories also count
uncorrectable errors.

Sample each status register exactly once from the regular hardware
statistics update and immediately before handling a memory-error
interrupt.  Group the counters by packet buffer, descriptor handler,
and PCIe region.  Skip the absent IPsec block on 82576NS.

PRBESTS and PMSIXESTS are shared by both LAN ports.  Attribute an
indication to whichever attached port samples the clear-on-read
register first so it is not counted twice.

Hardware validation used an 82576EB revision 1.  All nine implemented
status registers reported their ECC-enable bit set.  The sysctl
counters remained clear across interface lifecycle, two-stream

    [10 lines not shown]
DeltaFile
+83-0sys/dev/e1000/if_em.c
+7-0sys/dev/e1000/e1000_regs.h
+5-0sys/dev/e1000/e1000_defines.h
+1-0sys/dev/e1000/if_em.h
+96-04 files

FreeBSD/src 4c2dda4sys/dev/e1000 if_em.h e1000_defines.h

e1000: Recover from 82576 memory errors

82576 reports fatal and non-fatal internal memory errors through
ICR.FER and ICR.NFER and identifies the affected memory in its
native PEIND layout.  Fatal errors can stop transmit, receive, or
both until software resets and reinitializes the port.

Enable the controller-wide parity detector and implemented PEINDM
reaction bits after hardware initialization, while preserving unrelated
register state and omitting the absent IPsec memories on 82576NS.
Enable both interrupt causes and capture the read-clear PEIND register
in the interrupt filter.

Keep the causes masked while the iflib admin task owns the event.
Acknowledge non-fatal packet data errors without disrupting the port.
Request normal port reinitialization for FER, a fatal PEIND source, or
the memory hang indication.  Do not apply the later I210/I350 register
layout or their special PCIe parity reset order.


    [14 lines not shown]
DeltaFile
+101-12sys/dev/e1000/if_em.c
+10-0sys/dev/e1000/e1000_defines.h
+1-0sys/dev/e1000/if_em.h
+112-123 files

FreeBSD/ports e0937f7misc/nnn Makefile distinfo

misc/nnn: Update to 5.3

Changelog: https://github.com/jarun/nnn/releases/tag/v5.3

PR:             297555
Approved by:    submitter is maintainer
DeltaFile
+3-3misc/nnn/distinfo
+1-1misc/nnn/Makefile
+4-42 files

FreeBSD/src 8367882sys/dev/e1000 if_em.h e1000_regs.h

e1000: Report corrected I350 ECC errors

I350 does not interrupt for corrected internal ECC errors.  Instead,
the PCIe, DMA, packet buffer, loopback, and management memories expose
sticky status bits in their region-specific status registers.

Sample those bits with the regular hardware statistics update, preserve
the RX and TX packet buffer ECC enable state while clearing RW1C
indications, and expose counters grouped by memory region.  Each counter
records observed indication bits rather than exact error counts because
repeated corrections between samples collapse into one sticky bit.

On an I350 (8086:1521 revision 1), the ECC enables remained set.  All
corrected-error status registers remained clear across boot, interface
down/up, three FER recovery resets, and bidirectional line-rate traffic.
The device has no documented corrected error injector.  Therefore, the
per-region paths were validated against the register definitions rather
than an injected SRAM error.


    [2 lines not shown]
DeltaFile
+79-0sys/dev/e1000/if_em.c
+8-0sys/dev/e1000/e1000_defines.h
+3-0sys/dev/e1000/e1000_regs.h
+1-0sys/dev/e1000/if_em.h
+91-04 files

FreeBSD/src 28bbe1dsys/dev/e1000 if_em.h e1000_regs.h

e1000: Recover from I350 memory errors

I350 reports uncorrectable internal memory errors through ICR.FER and
identifies the affected region in PEIND.  Depending on the region and
memory, hardware stops transmit, receive, or all PCIe and DMA traffic
until the port is reset and reinitialized.

Enable FER and all regional indication masks.  Capture the read-clear
status in the interrupt filter.
Record the fatal PCIe, DMA, and LAN status registers, keep FER masked
while recovery is pending, and expose per-region indication counters.

Use the datasheet required port reset before master disable order for
PCIe parity errors.  Reset for PCIe, DMA, and traffic-affecting LAN
errors.  Statistics and VF-mailbox parity errors only require their
status to be discarded and cleared; management-memory recovery remains
under firmware control.

Validated on an I350 (8086:1521 revision 1).  Three software-set FER

    [7 lines not shown]
DeltaFile
+122-37sys/dev/e1000/if_em.c
+10-5sys/dev/e1000/e1000_defines.h
+2-0sys/dev/e1000/if_em.h
+2-0sys/dev/e1000/e1000_regs.h
+136-424 files

NetBSD/src r3YFRBVlib/libutil getfsspecname.c

   PR/60599: RVP: getfsspecname(3) returns ESRCH instead of ENOENT
VersionDeltaFile
1.9+11-5lib/libutil/getfsspecname.c
+11-51 files

LLVM/project e6b3396clang/lib/AST/ByteCode InterpBuiltin.cpp, clang/test/AST/ByteCode builtin-functions.cpp

[clang][bytecode] check reduce_min element type (#216536)

Only integer types are allowed.
DeltaFile
+5-0clang/test/AST/ByteCode/builtin-functions.cpp
+3-0clang/lib/AST/ByteCode/InterpBuiltin.cpp
+8-02 files

LLVM/project 044118fclang/lib/Sema SemaTemplateDeduction.cpp SemaTemplateInstantiateDecl.cpp, clang/test/CXX/temp/temp.decls/temp.friend p5.cpp

Revert "[Clang] Support friend declarations with a dependent nested-name-specifier" (#216549)

Reverts llvm/llvm-project#208345

---

Revert dependent friend support due to GCC build failure
DeltaFile
+13-1,089clang/test/CXX/temp/temp.decls/temp.friend/p5.cpp
+105-685clang/lib/Sema/SemaAccess.cpp
+122-298clang/lib/Sema/SemaDeclCXX.cpp
+74-336clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+0-263clang/test/SemaTemplate/dependent-friend-constraints.cpp
+37-191clang/lib/Sema/SemaTemplateDeduction.cpp
+351-2,86258 files not shown
+743-3,98564 files

NetBSD/src lu6iYgpetc/defaults rc.conf

   PR/60600: Jason Thorpe: Turn off ldconfig by default; all architectures have
   been using ELF for the past 20+ years.
VersionDeltaFile
1.169+2-2etc/defaults/rc.conf
+2-21 files

FreeBSD/src 0ea53a7sys/dev/e1000 if_em.h if_em.c

e1000: Report corrected I210 and I211 ECC errors

I210 and I211 do not interrupt for corrected internal ECC errors.
Instead, the DMA packet-buffer and PCIe memories expose sticky status
bits in PBECCSTS and PCIEECCSTS.

Sample these bits with the regular hardware statistics update, preserve
the I210/I211 PBECCSTS enable state while clearing its RW1C indication,
and expose separate counters for the DMA packet buffer, PCIe transmit
data, and PCIe retry buffer.

The counters represent observed indications rather than exact error
counts because multiple corrections between samples collapse into one
sticky status bit.

Hardware validation used an I210 revision 3.  Unlike I225 and I226, the
published I210/I211 register definitions do not expose self-clearing
injectors for these corrected ECC memories.  The three counter sysctls
were present and remained zero under line-rate traffic and three fatal

    [5 lines not shown]
DeltaFile
+40-0sys/dev/e1000/if_em.c
+3-0sys/dev/e1000/if_em.h
+43-02 files

FreeBSD/src 8d2d628sys/dev/e1000 if_em.h e1000_regs.h

e1000: Recover from I210 and I211 memory errors

I210 and I211 report uncorrectable internal memory errors through
ICR.FER and identify the affected region in PEIND.  Depending on the
region, hardware stops transmit or all PCIe and DMA traffic until the
port is reset and reinitialized.

Enable FER and all regional indication masks.  Discard indication state
left by firmware before enabling reactions, capture the read-clear
status in the interrupt filter, and keep the cause masked while recovery
is pending.  Report the affected regions and expose per-region
indication counters.  Management-only errors remain under firmware
control.

PCIe region parity errors require a different recovery order from the
normal reset path.  Assert the port-local CTRL.RST bit, wait at least
3 ms, verify reset completion, disable master requests, clear
PCIEERRSTS, and then enter normal port reinitialization.  Do not use the
device-wide CTRL.DEV_RST sequence used by I225 and I226.

    [15 lines not shown]
DeltaFile
+219-25sys/dev/e1000/if_em.c
+20-0sys/dev/e1000/e1000_defines.h
+7-2sys/dev/e1000/e1000_regs.h
+8-0sys/dev/e1000/if_em.h
+254-274 files

LLVM/project 8c64b15llvm/lib/Transforms/Vectorize VectorCombine.cpp, llvm/test/Transforms/VectorCombine load-insert-store-invariant-group.ll

[VectorCombine] Drop invariant.group from scalarized stores (#212473)

!invariant.group is tied to a pointer SSA value, so it cannot be copied
from a vector store to a scalar store that uses a newly created GEP.
Drop the metadata after copying the remaining store metadata and update
the regression expectations.

Fixes https://github.com/llvm/llvm-project/issues/212472

Assisted-by: Codex
DeltaFile
+62-0llvm/test/Transforms/VectorCombine/load-insert-store-invariant-group.ll
+3-0llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+65-02 files

OPNSense/src 8a8a660sys/dev/usb usbdevs, sys/dev/usb/net if_ure.c

ure: add USB device IDs for additional RTL8152/RTL8153 adapters

Add device IDs for several USB Ethernet adapters that use
RTL8152 and RTL8153 chips but are not yet recognized by ure(4).
This includes adapters from Cisco/Linksys, D-Link, Lenovo,
Microsoft Surface, Realtek, Samsung, and TP-Link.

All added devices use chip revisions already handled by
ure_read_chipver().

Signed-off-by: Christos Longros <chris.longros at gmail.com>

Reviewed by:    adrian
Differential Revision:  https://reviews.freebsd.org/D55748
DeltaFile
+11-2sys/dev/usb/net/if_ure.c
+7-0sys/dev/usb/usbdevs
+18-22 files

OPNSense/src 5d1808asys/dev/usb/net if_ure.c

ure(4): Fix spurious link flaps from MII

A race condition in the MII layer causes spurious link down events.
In `statchg`, on link down, check if the PHY reports the link as
actually down using the BMSR register, if not, force the status of the
link to back up and restart TX. Do the same in a MII `linkchg` handler.
On actual link up, restart TX in case it went idle and down.

PR:             252165
Signed-off-by:  Rafael Kitover <rkitover at gmail.com>
Reviewed by:    pouria
Differential Revision: https://reviews.freebsd.org/D55682
DeltaFile
+66-3sys/dev/usb/net/if_ure.c
+66-31 files

LLVM/project f63a0e9clang/lib/AST/ByteCode Compiler.cpp, clang/test/AST/ByteCode cxx23.cpp

[clang][bytecode] Fix assertion failure in in valid continue stmt (#216547)

We need to handle the missing TargetLabel here, similarly to what we do
in break statements.
DeltaFile
+13-0clang/test/AST/ByteCode/cxx23.cpp
+3-1clang/lib/AST/ByteCode/Compiler.cpp
+16-12 files

FreeBSD/src d7be8a3sys/dev/e1000 if_em.h if_em.c

e1000: Report PCH packet buffer ECC statistics

PCH packet buffer ECC status contains read-clear byte counters for
corrected and uncorrected errors.  Sample them with the regular
hardware statistics update and account for the snapshot captured by
the fatal error interrupt path.

Expose the counters and the number of reset worthy interrupt
indications under dev.em.N.memory_errors.  Keeping the reset counter
separate also preserves evidence when another status reader wins the
read-clear race.

Hardware validation used an I219-LM.  Three documented ICS.ECCER
injections advanced fatal_resets from zero to three, exactly once per
reset.  corrected_packet_buffer and uncorrected_packet_buffer remained
zero, as expected because ICS does not inject a memory error or alter
PBECCSTS.

MFC after:      2 weeks
Sponsored by:   BBOX.io
DeltaFile
+36-0sys/dev/e1000/if_em.c
+2-0sys/dev/e1000/if_em.h
+38-02 files

FreeBSD/src 39762c8sys/dev/e1000 if_em.h if_em.c

e1000: Recover from PCH packet buffer ECC errors

PCH LAN controllers beginning with I217 report uncorrectable
packet buffer ECC errors through ICR.ECCER.  Descriptor memory errors
stop the MAC and require a reset before traffic can resume.

Enable the interrupt on the PCH generations whose shared code setup
enables packet buffer ECC.  Capture the read-clear PBECCSTS value in
the interrupt filter, mask ECCER while recovery is pending, and request
an iflib reset from the admin task.  Reenable the cause only after
hardware initialization succeeds.

Hardware validation used an I219-LM and the documented ICS.ECCER bit to
generate the fatal interrupt.  This synthesizes the interrupt cause but
does not corrupt packet buffer memory or alter its ECC byte counters.
Three injections in one boot each requested one reset and recovered
traffic without a panic or watchdog.  IMS.ECCER and PBECCSTS.ECC_ENABLE
remained set after every reset.


    [2 lines not shown]
DeltaFile
+99-5sys/dev/e1000/if_em.c
+3-0sys/dev/e1000/if_em.h
+102-52 files

LLVM/project cbd8145mlir/include/mlir/Dialect/LLVMIR LLVMAttrDefs.td, mlir/lib/Dialect/LLVMIR/IR LLVMAttrs.cpp

[MLIR][LLVM] Preserve pointer-valued metadata operands on import (#215743)

convertMetadataToAttrImpl only modelled ConstantInt operands wrapped in
a ConstantAsMetadata, so any metadata node containing a pointer constant
could not be represented and the whole node was rejected.

Add #llvm.md_null and #llvm.md_addrspacecast to model
ConstantPointerNull and addrspacecast constant expressions, keeping the
address space so that `ptr null` and `ptr addrspace(1) null` stay
distinct. MDAddrSpaceCastAttr verifies that its operand is itself
pointer-valued metadata.

Global values are constants, so ValueAsMetadata::get wraps them in a
ConstantAsMetadata and they never reached the ValueAsMetadata case.
Match them in the ConstantAsMetadata case instead, which also
generalizes the existing function-only handling to any named global
value and makes the addrspacecast operand representable.

Mirror both attributes in ModuleTranslation::convertMetadataAttr so the

    [6 lines not shown]
DeltaFile
+70-0mlir/test/Target/LLVMIR/Import/intrinsic-unregistered.ll
+42-3mlir/include/mlir/Dialect/LLVMIR/LLVMAttrDefs.td
+22-6mlir/lib/Target/LLVMIR/ModuleImport.cpp
+17-0mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
+16-0mlir/test/Dialect/LLVMIR/invalid.mlir
+16-0mlir/lib/Dialect/LLVMIR/IR/LLVMAttrs.cpp
+183-92 files not shown
+203-98 files

OpenBSD/ports eXKzN98multimedia/dms distinfo Makefile, multimedia/dms/patches patch-dlna_dms_dms_unix_go patch-dlna_dms_dms_others_go

   unbreak probing with IPv6-only, fix dynamic streams

   fetch merged commits for all three post-1.8.0 PRs
VersionDeltaFile
1.4+13-1multimedia/dms/Makefile
1.3+6-0multimedia/dms/distinfo
1.2+0-0multimedia/dms/patches/patch-dlna_dms_dms_unix_go
1.2+0-0multimedia/dms/patches/patch-dlna_dms_dms_others_go
+19-14 files

NetBSD/pkgsrc EuMlvLDdoc CHANGES-2026

   doc: Updated shells/zsh to 5.9.2
VersionDeltaFile
1.5307+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc p080XRHshells/zsh PLIST Makefile, shells/zsh/patches patch-Src_jobs.c

   zsh: update to 5.9.2.

   This is a bug-fix release.
VersionDeltaFile
1.84+4-5shells/zsh/distinfo
1.111+2-2shells/zsh/Makefile
1.46+3-0shells/zsh/PLIST
1.2+1-1shells/zsh/patches/patch-Src_jobs.c
+10-84 files

FreeBSD/src f1cfcfbusr.sbin/traceroute6 traceroute6.8 traceroute6.c

traceroute6: implement firewall evasion mode

Merge implementation of "traceroute -e" to traceroute6 for TCP/UDP/SCTP.

MFC-after:      2 weeks
DeltaFile
+16-12usr.sbin/traceroute6/traceroute6.c
+6-2usr.sbin/traceroute6/traceroute6.8
+22-142 files

FreeBSD/ports d01e34ddeskutils/fet Makefile distinfo

deskutils/fet: Update to 7.10.0

Changelog: https://lalescu.ro/liviu/fet/news.html
DeltaFile
+3-3deskutils/fet/distinfo
+1-1deskutils/fet/Makefile
+4-42 files

FreeBSD/ports 4fe2fadmisc/xdelta3 distinfo pkg-descr, misc/xdelta3/files patch-CMakeLists.txt patch-testing_regtest.cc

misc/xdelta3: Update to 3.2.0 and take maintainership

Port changes:
- Switch the upstream build from Autotools to CMake
  (see https://github.com/jmacd/xdelta)
- Update the declared license from GPLv2+ to Apache 2.0
  (as per https://github.com/jmacd/xdelta)
- Enable armor support and the static-library build
- Install the public header, static library, pkg-config file, and CMake
  package metadata
- Remove the obsolete regtest patch (not required anymore due to
  changes to the build infrastructure)
- Update WWW, COMMENT, and pkg-descr to reflect these chagnes
- Add a complete pkg-plist

Changelog: https://github.com/jmacd/xdelta/releases/tag/v3.2.0

PR:             297302
Reported by:    Thomas Barabosch <oss at tbarabosch.com> (new maintainer)
Reviewed by:    diizzy
DeltaFile
+18-15misc/xdelta3/Makefile
+0-11misc/xdelta3/files/patch-testing_regtest.cc
+10-0misc/xdelta3/files/patch-CMakeLists.txt
+9-0misc/xdelta3/pkg-plist
+3-4misc/xdelta3/pkg-descr
+3-3misc/xdelta3/distinfo
+43-336 files

LLVM/project 97ef3d4llvm/lib/Transforms/InstCombine InstCombineShifts.cpp, llvm/test/Transforms/InstCombine shift-cttz-ctlz.ll shift.ll

[InstCombine] Fold shl of constant by cttz into multiply of lowest set bit (#214517)

Currently, `C << cttz(X, true)` generates a DeBruijn lookup table on
RV64I (13 instructions).
And this patch adds a fold in InstCombine:
  `C << cttz(X, true)  -->  (-X & X) * C`
This reduces the instruction count from 13 to 3 on RV64I.
The fold requires that cttz has a single use (to avoid increasing
instruction count)

Alive2 proof: https://alive2.llvm.org/ce/z/TmWxrT
DeltaFile
+82-2llvm/test/Transforms/InstCombine/shift.ll
+11-0llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
+6-4llvm/test/Transforms/InstCombine/shift-cttz-ctlz.ll
+99-63 files

FreeBSD/ports ae40179audio/noctavox Makefile Makefile.crates

audio/noctavox: Update to 0.3.4

ChangeLog:      https://github.com/Jaxx497/NoctaVox/releases/tag/v0.3.4

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+117-117audio/noctavox/distinfo
+57-57audio/noctavox/Makefile.crates
+1-1audio/noctavox/Makefile
+175-1753 files

LLVM/project 4d18b27clang/lib/Driver/ToolChains CommonArgs.cpp, clang/test/Driver cuda-flush-denormals-to-zero.cu amdgpu-xnack-sramecc-flags.c

clang/AMDGPU: Stop passing redundant -target-cpu to cc1

Now that the exact target is encoded in the triple's subarch field,
-target-cpu is redundant. This avoids polluting the resultant IR with
unwanted "target-cpu" attributes. The net result is the desired codegen
when compiling libraries for a major subarch and linking it into a
program compiled for a specific arch. e.g., compiling for "gfx9-generic"
would pollute the IR with "target-cpu"="gfx9-generic", so codegen
would ultimately be performed for the generic target even after
linking into the concrete gfx9 cpu. The specialization will now be
achieved by merging the triples without the linker or optimization
passes needing to fixup function attributes.
DeltaFile
+62-62clang/test/Driver/amdgpu-mcpu.cl
+26-26clang/test/Driver/hip-sanitize-options.hip
+12-16clang/test/Driver/hip-rdc-device-only.hip
+19-7clang/lib/Driver/ToolChains/CommonArgs.cpp
+10-10clang/test/Driver/amdgpu-xnack-sramecc-flags.c
+6-6clang/test/Driver/cuda-flush-denormals-to-zero.cu
+135-12726 files not shown
+189-20832 files

LLVM/project 74c1dccllvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU AMDGPUTargetParser.td GCNProcessors.td

AMDGPU: Start using subarch in attributor instead of subtarget

Avoid querying the subtarget for functions when the relevant
properties are known from the triple. The various subtarget
group size functions should also be decoupled from the subtarget,
but those are trickier to untangle.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+26-18llvm/lib/Target/AMDGPU/AMDGPUAttributor.cpp
+9-9llvm/lib/Target/AMDGPU/GCNProcessors.td
+15-1llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+10-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+2-0llvm/lib/Target/AMDGPU/AMDGPUTargetParser.td
+62-285 files

LLVM/project 75e3236clang/lib/Driver Driver.cpp, clang/lib/Driver/ToolChains CommonArgs.cpp

clang: Start using new amdgpu subarch triples

Fixup invocations using --target=amdgcn + -mcpu to introduce
the subarch in the triple.

For offload toolchains, a single toolchain is constructed for the
top level amdgpu architecture, and the effective triple is used for
target specific tool invocations.

The specifics of the resource directory layout are tbd. This does
try to find resources in the subarch named directory. The paths
are searched at toolchain creation time, so that does not work
when there are multiple subarches.

Fixes #154925
DeltaFile
+59-59clang/test/Driver/offload-arch-translation-amdgpu.cu
+43-43clang/test/Driver/hip-phases.hip
+33-33clang/test/Driver/hip-binding.hip
+48-14clang/lib/Driver/ToolChains/CommonArgs.cpp
+43-12clang/lib/Driver/Driver.cpp
+54-0clang/test/CodeGen/amdgpu-builtin-processor-is-subarch.c
+280-161104 files not shown
+992-497110 files