NetBSD/pkgsrc-wip 3f2a722py-pre-commit distinfo Makefile

py-pre-commit: update to 4.6.1

Fixes

* Install language: node hooks via git.
  * Fixes npm 12.x compatibility
* Set JULIA_DEPOT_PATH for language: julia.
* Produce error on mistyped --repo for pre-commit autoupdate.
* Improve performance of commit existence check in pre-push.
* Avoid duplicating conflicted filenames during pre-commit run --all-files.
DeltaFile
+3-3py-pre-commit/distinfo
+1-1py-pre-commit/Makefile
+0-2py-pre-commit/PLIST
+1-1py-pre-commit/COMMIT_MSG
+5-74 files

NetBSD/pkgsrc-wip 5b8cebdbats-core distinfo COMMIT_MSG

bats-core: update to 1.14.0

Added:

* --errexit flag to enable errexit (set -e) behavior for commands run in
  run
* pretty formatter: add non-interactive, color-only mode for CI
  environments

Fixed:

* junit formatter:
  * avoid interference between env and internals
  * remove control characters (\x00-\x08\x0B\x0C\x0E-\x1F)
  * don't report (skipped) last test as failed when teardown_suite
    generates FD3 output
  * fix(junit-formatter): skipped tests outputs reported as
* fix failures with --gather-test-outputs-in when tests change directory
* run now honors set -e in your functions

    [20 lines not shown]
DeltaFile
+3-3bats-core/distinfo
+1-1bats-core/COMMIT_MSG
+1-1bats-core/Makefile
+5-53 files

FreeBSD/src 297394eshare/man/man4 igc.4

igc(4): document adaptive interrupt moderation

Describe the disabled, adaptive, and low-latency settings and their
interrupt-rate tradeoffs.

MFC after:      1 week
DeltaFile
+14-0share/man/man4/igc.4
+14-01 files

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

e1000: restore packet-size AIM

Restore the packet-size calculation introduced in a69ed8dfb381 and used
by igb(4) until the iflib conversion in f2d6ace4a684.  It derives
interrupt holdoff from average packet size, so RSS queue count does not
change its behavior.

The calculation follows the pre-iflib code.  Retain the current normal
and low-latency rate caps, and keep the current setting when an interval
has no usable sample.

Fixes:          3e501ef89667 ("e1000: Re-add AIM")
MFC after:      1 week
DeltaFile
+67-107sys/dev/e1000/if_em.c
+8-3sys/dev/e1000/if_em.h
+75-1102 files

FreeBSD/src e389a05sys/dev/igc igc_txrx.c

igc: count TSO wire segments in the AIM counters

The transmit path bills one packet of ipi_len bytes per request.  For
TSO that is the whole unsegmented payload, up to 64 KiB, rather than a
packet size that appears on the wire.

Count the segments the hardware emits and the header carried by each
segment.  Non-TSO accounting is unchanged.

MFC after:      1 week
DeltaFile
+19-2sys/dev/igc/igc_txrx.c
+19-21 files

FreeBSD/src 072e098sys/dev/e1000 em_txrx.c igb_txrx.c

e1000: count TSO wire segments in the AIM counters

The transmit paths billed one packet of ipi_len bytes per request.  For
TSO that is the whole unsegmented payload, up to 64KB, so the average
size the moderation calculation sees is not a size that appears on the
wire.

Count the segments the hardware will put on the wire and the header each
of them carries.

Non-TSO accounting is unchanged.

MFC after:      1 week
DeltaFile
+19-2sys/dev/e1000/em_txrx.c
+19-2sys/dev/e1000/igb_txrx.c
+38-42 files

FreeBSD/src 01e7acdsys/dev/igc if_igc.c if_igc.h

igc: use packet-size AIM

Use the packet-size calculation introduced for igb(4) in a69ed8dfb381
and retained there until the iflib conversion in f2d6ace4a684.  It
derives interrupt holdoff from average packet size, so RSS queue count
does not change its behavior.

The calculation follows the pre-iflib igb code.  Retain igc's normal and
low-latency rate caps, and keep the current setting when an interval has
no usable sample.

MFC after:      1 week
DeltaFile
+67-108sys/dev/igc/if_igc.c
+8-3sys/dev/igc/if_igc.h
+75-1112 files

FreeBSD/src bbf0372sys/dev/igc igc_txrx.c

igc: fix RX accounting for multi-descriptor packets

The receive path adds the running packet length to rx_bytes for every
descriptor.  A packet spanning descriptors of length l1, l2, and l3 is
therefore counted as 3*l1 + 2*l2 + l3.

Add each descriptor length once.  Single-descriptor accounting remains
unchanged.

MFC after:      1 week
DeltaFile
+1-1sys/dev/igc/igc_txrx.c
+1-11 files

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

e1000: make AIM counter sampling coherent

Sample free-running counters by delta instead of clearing them from the
interrupt filter, which can race their producers.  Publish byte and
packet counts together at the TX and RX doorbells so each sample is
coherent.

Aggregate every TX ring assigned to the interrupt vector so unequal RX
and TX queue counts are safe.  Count RX bytes only after a frame is
accepted.

MFC after:      1 week
DeltaFile
+72-25sys/dev/e1000/if_em.c
+42-4sys/dev/e1000/if_em.h
+6-2sys/dev/e1000/em_txrx.c
+3-1sys/dev/e1000/igb_txrx.c
+123-324 files

FreeBSD/src e355334sys/dev/igc if_igc.c if_igc.h

igc: synchronize interrupt moderation state

Keep the saved EITR value synchronized with hardware across
reinitialization.  Correct EITR encoding, decoding, and MSI-X register
selection, and reject nonpositive fallback rates.

Apply the packet-buffer fallback without permanently disabling AIM.

MFC after:      1 week
DeltaFile
+25-10sys/dev/igc/if_igc.c
+4-2sys/dev/igc/if_igc.h
+29-122 files

FreeBSD/src b6b379bshare/man/man4 em.4

em(4): document adaptive interrupt moderation

Describe the disabled, adaptive, and low-latency settings and their
interrupt-rate tradeoffs.

MFC after:      1 week
DeltaFile
+14-0share/man/man4/em.4
+14-01 files

FreeBSD/src 2290ea7sys/dev/igc if_igc.c if_igc.h

igc: make AIM counter sampling coherent

Sample free-running counters by delta instead of clearing them from the
interrupt filter, which can race their producers.  Publish byte and
packet counts together at the TX and RX doorbells so each sample is
coherent.

Aggregate every TX ring assigned to the interrupt vector so unequal RX
and TX queue counts are safe.  Count RX bytes only after a frame is
accepted.

MFC after:      1 week
DeltaFile
+72-25sys/dev/igc/if_igc.c
+41-4sys/dev/igc/if_igc.h
+3-1sys/dev/igc/igc_txrx.c
+116-303 files

FreeBSD/src 6ef368asys/dev/e1000 if_em.c if_em.h

e1000: synchronize interrupt moderation state

Keep the saved EITR and PBA values synchronized with hardware across
reinitialization.  Correct EITR encoding, decoding, and MSI-X register
selection, and reject nonpositive fallback rates.

Treat only sub-gigabit links as sub-gigabit and apply the packet-buffer
fallback without permanently disabling AIM.

MFC after:      1 week
DeltaFile
+38-22sys/dev/e1000/if_em.c
+4-2sys/dev/e1000/if_em.h
+42-242 files

LLVM/project dc26bf5lld/ELF Relocations.cpp, lld/test/ELF x86-64-gotpc-relax-too-far.s

[ELF] Retain .got for revertible no-PIC GOTPCRELX optimization (#212077)

Commit 9d6ec280fc537b55ef8641ea85d3522426bc5766 (2023) sets
GotSection::hasGotOffRel when adjustGotPcExpr returns R_RELAX_GOT_PC,
keeping .got alive for an optimization that X86_64::relaxOnce may
revert.

R_RELAX_GOT_PC_NOPIC (e.g. `addq`) in -no-pie mode has the same issue.
DeltaFile
+16-0lld/test/ELF/x86-64-gotpc-relax-too-far.s
+3-3lld/ELF/Relocations.cpp
+19-32 files

LLVM/project 7af5c42mlir/lib/Dialect/Tosa/IR TosaCanonicalizations.cpp, mlir/test/Dialect/Tosa canonicalize.mlir

[mlir][tosa] Fix mul/intdiv folds crashing on dynamic-shaped results (#212073)

`tosa.mul` and `tosa.intdiv` fold constant splat operands by building a
`DenseElementsAttr` of the result type, which asserts when that type has
a dynamic shape. When the operands are constants but the result type is
dynamic, folding aborted. Guard `mulBinaryFolder` and the `IntDivOp`
splat path on a static result shape, matching the other fold paths in
these ops.

Signed-off-by: Víctor Pérez Carrasco <victor.pc.upm at gmail.com>
DeltaFile
+25-0mlir/test/Dialect/Tosa/canonicalize.mlir
+4-1mlir/lib/Dialect/Tosa/IR/TosaCanonicalizations.cpp
+29-12 files

FreeBSD/ports b5533b5devel/nextpnr-devel distinfo Makefile

devel/nextpnr-devel: Update to 2026-07-24
DeltaFile
+3-3devel/nextpnr-devel/distinfo
+2-2devel/nextpnr-devel/Makefile
+5-52 files

OpenBSD/src hEQbiiSsys/arch/amd64/include pci_machdep.h, sys/arch/amd64/pci acpipci.c

   Exclude PCI-PCI bridge windows from acpidmar(4) with match based on header type

   This introduces acpipci_domain_to_seg() to translate OpenBSD's pci domains
   to ACPI segments for rare multi-segment machines (qemu)

   ok kettenis@
VersionDeltaFile
1.18+171-17sys/dev/acpi/acpidmar.c
1.12+23-1sys/arch/amd64/pci/acpipci.c
1.33+2-1sys/arch/amd64/include/pci_machdep.h
+196-193 files

LLVM/project 40f8720lld/ELF Thunks.cpp Thunks.h

[ELF] Replace getAArch64ThunkDestVA with Thunk::getDestVA. NFC (#212071)

Suggested by
https://github.com/llvm/llvm-project/pull/209962/changes#r3595552131
DeltaFile
+9-15lld/ELF/Thunks.cpp
+2-0lld/ELF/Thunks.h
+11-152 files

FreeBSD/ports c118b09devel/electron43 distinfo, devel/electron43/files patch-chrome_browser_about__flags.cc patch-BUILD.gn

devel/electron43: Update to 43.2.0

Changelog: https://github.com/electron/electron/releases/tag/v43.2.0

Reported by:    GitHub (watch releases)
DeltaFile
+36-36devel/electron43/files/patch-chrome_browser_about__flags.cc
+11-11devel/electron43/files/patch-BUILD.gn
+8-8devel/electron43/files/patch-electron_shell_browser_api_electron__api__app.cc
+7-7devel/electron43/distinfo
+6-6devel/electron43/files/patch-ui_ozone_platform_wayland_host_wayland__frame__manager.cc
+10-1devel/electron43/files/patch-electron_shell_browser_feature__list.cc
+78-6910 files not shown
+104-9616 files

FreeBSD/ports d50a113deskutils/cherrytree distinfo Makefile

deskutils/cherrytree: update the port to version 1.7.1

Reported by:    portscout
DeltaFile
+3-3deskutils/cherrytree/distinfo
+1-1deskutils/cherrytree/Makefile
+4-42 files

FreeBSD/ports efb2ff2sysutils/sg3_utils Makefile distinfo, sysutils/sg3_utils/files patch-src_sg__wr__mode.c

sysutils/sg3_utils: 1.49

This is the first new release in three years.  Among other changes, it
updates sg_opcodes with features needed by CTL's ATF tests.  Also,
switch the build to cmake and take maintainership.

Much thanks to diizzy for help with the patch.

https://github.com/doug-gilbert/sg3_utils/blob/main/ChangeLog

PR:             296938
Sponsored by:   ConnectWise
Approved by:    diizzy (ports)
DeltaFile
+0-28sysutils/sg3_utils/files/patch-src_sg__wr__mode.c
+11-12sysutils/sg3_utils/Makefile
+11-3sysutils/sg3_utils/distinfo
+2-4sysutils/sg3_utils/pkg-plist
+24-474 files

FreeBSD/ports 6a689efmisc/gitlogue distinfo Makefile.crates, misc/gitlogue/files patch-Cargo.lock patch-Cargo.toml

misc/gitlogue: Update 0.9.0 => 0.10.0

Changelog:
https://github.com/unhappychoice/gitlogue/releases/tag/v0.10.0

Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3

(cherry picked from commit 8570b3ee73498247f05987e7d63112e75e1088d5)
DeltaFile
+92-128misc/gitlogue/distinfo
+46-64misc/gitlogue/Makefile.crates
+4-6misc/gitlogue/Makefile
+4-4misc/gitlogue/files/patch-Cargo.lock
+3-3misc/gitlogue/files/patch-Cargo.toml
+149-2055 files

FreeBSD/ports 8570b3emisc/gitlogue distinfo Makefile.crates, misc/gitlogue/files patch-Cargo.lock patch-Cargo.toml

misc/gitlogue: Update 0.9.0 => 0.10.0

Changelog:
https://github.com/unhappychoice/gitlogue/releases/tag/v0.10.0

Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3
DeltaFile
+92-128misc/gitlogue/distinfo
+46-64misc/gitlogue/Makefile.crates
+4-6misc/gitlogue/Makefile
+4-4misc/gitlogue/files/patch-Cargo.lock
+3-3misc/gitlogue/files/patch-Cargo.toml
+149-2055 files

FreeBSD/ports 13b3a90devel/R-cran-rgexf Makefile distinfo

devel/R-cran-rgexf: Update to 0.17.0

Reported by:    portscout
DeltaFile
+4-2devel/R-cran-rgexf/Makefile
+3-3devel/R-cran-rgexf/distinfo
+7-52 files

FreeBSD/src 41a46c2sys/dev/e1000 em_txrx.c igb_txrx.c

e1000: fix rx accounting for multi-descriptor packets

The receive paths accumulate ri->iri_len across the descriptors making
up a packet, then add that running total to rxr->rx_bytes on every
iteration of the loop.  A packet spanning descriptors of length l1, l2
and l3 thus contributes 3*l1 + 2*l2 + l3 instead of l1 + l2 + l3.

Single descriptor packets, the common case, are accounted correctly,
so this only shows up on jumbo frames.

Add the per descriptor length instead.  iflib memsets the if_rxd_info
before each isc_rxd_pkt_get() call, so summing len gives the same total
as the final iri_len, and the frame error path that returns without
incrementing rx_packets keeps counting bytes exactly as before.

MFC after:      1 week
DeltaFile
+2-2sys/dev/e1000/em_txrx.c
+1-1sys/dev/e1000/igb_txrx.c
+3-32 files

LLVM/project a8a36f1llvm/lib/Transforms/Vectorize VPlan.cpp VPlanHelpers.h

[LV] Extract fixupHeaderPhiBackedges from VPlan::execute (NFC) (#212063)

Hoist the header-phi backedge fixup loop at the end of VPlan::execute
into a helper VPTransformState::fixupHeaderPhiBackedges.
DeltaFile
+22-18llvm/lib/Transforms/Vectorize/VPlan.cpp
+5-0llvm/lib/Transforms/Vectorize/VPlanHelpers.h
+27-182 files

FreeBSD/src 941113asys/dev/e1000 if_em.c

e1000: fix 82574 MSI-X interrupt throttling

em_newitr() and the per-queue interrupt_rate sysctl both tested
que->msix to decide whether an 82574 is running in MSI-X mode.  0 is a
valid MSI-X vector so queue 0 was misclassified as legacy/MSI.

Test sc->intr_type == IFLIB_INTR_MSIX instead.  While here, index the tx
EITR read by tque->msix rather than tque->me so it matches the register
em_newitr() actually writes; the two differ once tx_num_queues exceeds
rx_num_queues.

Also seed que->itr_setting in em_initialize_receive_unit() with the rate
the hardware was just programmed with.  Otherwise an itr_setting left
over from AIM across an interface re-init makes the change detection in
em_newitr() suppress the write that would restore it, leaving the
hardware at the default rate while software believes otherwise.

Fixes:          3e501ef89667 ("e1000: Re-add AIM")
MFC after:      3 days
DeltaFile
+20-4sys/dev/e1000/if_em.c
+20-41 files

FreeBSD/ports 3178c8fmail/cone distinfo Makefile

mail/cone: Update to 2.4

ChangeLog:
https://sourceforge.net/p/courier/courier.git/ci/master/tree/cone/ChangeLog

MFH:            2026Q3
(cherry picked from commit 1aaf986511ee51738f6449516c23b0744d4e0d69)
DeltaFile
+3-3mail/cone/distinfo
+1-1mail/cone/Makefile
+4-42 files

FreeBSD/ports 1aaf986mail/cone distinfo Makefile

mail/cone: Update to 2.4

ChangeLog:
https://sourceforge.net/p/courier/courier.git/ci/master/tree/cone/ChangeLog

MFH:            2026Q3
DeltaFile
+3-3mail/cone/distinfo
+1-1mail/cone/Makefile
+4-42 files

LLVM/project 0a7d5c7llvm/test/CodeGen/Hexagon swp-epilog-phi12.mir

[Hexagon] Fix missing requires assert for swp-epilog-phi12.mir (#212062)
DeltaFile
+1-0llvm/test/CodeGen/Hexagon/swp-epilog-phi12.mir
+1-01 files