NetBSD/pkgsrc-wip 51f3e22freetds Makefile distinfo

freetds: update to 1.5.19
DeltaFile
+3-3freetds/distinfo
+1-1freetds/Makefile
+4-42 files

LLVM/project ee82d66clang/www cxx_status.html

[Clang][docs] Tweaks entries for recent DRs (#189187)

1. According to WG21 N5031, P3868R1 is also a DR.
2. Consistently add one space between the link and `(`.
3. Show the "Yes" status in a green cell (`class="full"`).
DeltaFile
+8-8clang/www/cxx_status.html
+8-81 files

LLVM/project 1a54cfbllvm/include/llvm/Transforms/Utils LoopUtils.h, llvm/lib/Transforms/Utils LoopUtils.cpp

[LoopUtils] Return 0 for estimated zero trip count loops. (#217330)

getLoopEstimatedTripCount previously returned std::nullopt for loops
with estimated tip counts of zero. This was historically due to some
callers expecting trip counts > 0.

After auditing all callers, it looks like only one call in LoopVectorize
cannot handle zero trip counts (would lead to divide by 0). Updating the
code there to explicitly check for 0 allows us to update
getEstimatedTripCount to return 0 instead of std::nullopt.

This allows us to properly preserve branch weights in the remainder
loops when vectorizing the loop, for cases where the remainder does not
execute per the estimate via updateLoopMetadataAndProfileInfo.

This fixes ~120 prof-check failures in the LoopVectorizer tests.

PR: https://github.com/llvm/llvm-project/pull/217330
DeltaFile
+208-0llvm/test/Transforms/LoopUnroll/estimated-trip-count.ll
+38-38llvm/test/Transforms/LoopVectorize/AArch64/check-prof-info.ll
+15-18llvm/test/Transforms/LoopVectorize/branch-weights.ll
+7-7llvm/unittests/Transforms/Utils/LoopUtilsTest.cpp
+8-6llvm/include/llvm/Transforms/Utils/LoopUtils.h
+2-10llvm/lib/Transforms/Utils/LoopUtils.cpp
+278-793 files not shown
+299-859 files

LLVM/project 74f4eb5llvm/lib/Target/AMDGPU GCNProcessors.td AMDGPU.td, llvm/test/Object/AMDGPU elf-header-flags-mach.yaml

[AMDGPU] Define gfx1250-strict target
DeltaFile
+30-0llvm/lib/Target/AMDGPU/AMDGPU.td
+9-0llvm/test/tools/llvm-readobj/ELF/AMDGPU/elf-headers.test
+7-0llvm/test/Object/AMDGPU/elf-header-flags-mach.yaml
+6-0llvm/lib/Target/AMDGPU/GCNProcessors.td
+5-0llvm/unittests/TargetParser/TargetParserTest.cpp
+5-0llvm/test/tools/llvm-objdump/ELF/AMDGPU/subtarget.ll
+62-015 files not shown
+91-221 files

FreeBSD/ports a312662security/vuxml/vuln 2026.xml

security/vuxml: Document MariaDB vulnerabilities
DeltaFile
+51-0security/vuxml/vuln/2026.xml
+51-01 files

FreeBSD/ports a95d27adatabases/sq Makefile distinfo

databases/sq: Update to 0.54.1

Upstream added a DuckDB driver, whose Go bindings ship prebuilt static
libraries only for darwin, linux and windows. Build with the
duckdb_use_lib tag so that the bindings link against the system
libduckdb instead.
DeltaFile
+7-7databases/sq/distinfo
+4-1databases/sq/Makefile
+11-82 files

FreeBSD/ports 5375936databases/duckdb Makefile

databases/duckdb: Do not pull in dependencies of unselected extensions

The extension loop adds each extension's library dependencies with

        LIB_DEPENDS+=${PORT_OPTIONS:M${opt}:?${${opt}_LIB_DEPENDS}:}

The intent is "if this extension's option is selected, append its
<OPT>_LIB_DEPENDS", mirroring the two lines above it. Those work because
${PORT_OPTIONS:M${opt}:S/...} is empty-in-empty-out, but :? does not
behave the same way: per make(1), it evaluates the variable *name* -- not
the value the preceding modifiers produced -- as a conditional
expression. The condition here is therefore the bare word PORT_OPTIONS,
which is always true, so the true branch is always taken:

        PORT_OPTIONS=FOO BAR
        ${PORT_OPTIONS:MAWS} -> ""
        ${PORT_OPTIONS:MAWS:?${AWS_LIB_DEPENDS}:} -> libaws.so:devel/aws

As a result AVRO_LIB_DEPENDS (avro-c, jansson, snappy), AWS_LIB_DEPENDS

    [13 lines not shown]
DeltaFile
+1-1databases/duckdb/Makefile
+1-11 files

FreeBSD/ports aa656d9Mk/Uses samba.mk, devel/tevent017 Makefile

*/*: depends of devel/talloc244

Update dependency of devel/tevent017 to use devel/talloc244 instead
of devel/talloc243 since these version of samba can support it.
Update Mk/Uses/samba.mk for relecting such changes.

PR:     294595
Reported by:    Jordan Ostref, ml at netfence.it
Reviewed by:    kiwi
Approved by:    samba (kiwi)
Sponsored by:   Klara, Inc.
DeltaFile
+3-3net/samba423/Makefile
+3-2net/samba422/Makefile
+3-2devel/tevent017/Makefile
+2-2Mk/Uses/samba.mk
+11-94 files

OPNSense/core 27ced6asrc/opnsense/mvc/app/controllers/OPNsense/Firewall/forms dialogSNatRule.xml dialogOneToOneRule.xml, src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes JsonAuditField.php

mvc: add JsonAuditField and implement in firewall (#10726)

Adds a reusable audit field type for model records. Models can opt in with a single JsonAuditField, while ApiMutableModelControllerBase manages some of the created and updated information.

The audit data is stored as JSON so it can be extended later without adding more model fields.

An additionally user supplied note field can store why an item has been changed.

A migration moves legacy created/updated into the new JSON fieldtype.

---------

Co-authored-by: Ad Schellevis <ad at opnsense.org>
DeltaFile
+147-0src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/JsonAuditField.php
+74-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/forms/dialogSNatRule.xml
+74-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/forms/dialogOneToOneRule.xml
+74-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/forms/dialogNptRule.xml
+74-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/forms/dialogFilterRule.xml
+74-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/forms/dialogDNatRule.xml
+517-013 files not shown
+621-5619 files

LLVM/project 542e06bclang/lib/Sema TreeTransform.h SemaConcept.cpp, clang/test/SemaCXX cxx2c-fold-exprs.cpp

[Clang] Fix C++26 fold expression normalization of PackIndexingExpr (#218577)

It turns out that PackIndexingExpr doesn't create any PackExpansionTypes
for unexpanded packs and thus we don't have to remove the packs during
the normalization.

This also reverts the previous attempt f3fd5b2dd9 that doesn't
completely solve the problem.

Fixes #218548
DeltaFile
+18-0clang/test/SemaCXX/cxx2c-fold-exprs.cpp
+6-0clang/lib/Sema/SemaConcept.cpp
+0-4clang/lib/Sema/TreeTransform.h
+24-43 files

OPNSense/src 6de4b6dsys/dev/e1000 e1000_phy.c e1000_ich8lan.c

e1000: Avoid signed shifts while assembling PHY IDs

PHY identifier words are promoted to signed int when the cast is applied
after the shift.  Cast each 16-bit register value first so identifiers
with their high bit set are assembled as unsigned data.

(cherry picked from commit 13a7470096567480676e24545b3c1d6404f3f2ec)
DeltaFile
+1-1sys/dev/e1000/e1000_phy.c
+1-1sys/dev/e1000/e1000_ich8lan.c
+1-1sys/dev/e1000/e1000_82571.c
+3-33 files

OPNSense/src 04011f4sys/dev/e1000 e1000_82571.c

e1000: Avoid a signed manageability VLAN bitmap shift

A manageability VLAN can select bit 31 of its VFTA register.  Use an
unsigned value when constructing the register mask.

(cherry picked from commit 392fbdcf2232f12cb973d00ae931740c72d970c6)
DeltaFile
+1-1sys/dev/e1000/e1000_82571.c
+1-11 files

OPNSense/src 5a45248sys/dev/e1000 e1000_82571.c

e1000: Preserve errors while disabling D0 LPLU

Return a PHY write failure immediately when disabling D0 low-power
link-up on 82571-family controllers.

(cherry picked from commit b1da641d23a95c4e7f61b7a546938ec8fceb47e7)
DeltaFile
+2-0sys/dev/e1000/e1000_82571.c
+2-01 files

OPNSense/src 852e664sys/dev/e1000 e1000_mac.c

e1000: Verify i210 and i211 multicast table writes

The i210 and i211 can occasionally fail to accept multicast table
writes, particularly while addresses are added and removed rapidly.
Read the table back and rewrite mismatches for up to three passes.

This prevents multicast reception from retaining stale filter state
while keeping the workaround limited to the affected controllers.

(cherry picked from commit bb8d0944b5d53863f00492b69b7bf13d2618fc95)
DeltaFile
+33-0sys/dev/e1000/e1000_mac.c
+33-01 files

OPNSense/src 3790691sys/dev/e1000 e1000_mac.c

e1000: Avoid a signed multicast bitmap shift

The multicast hash bit can be 31.  Use an unsigned value so setting the
bit cannot shift a signed integer into its sign bit.

(cherry picked from commit a86d65b2c99bab3fe46389b3b51ad27956dccfe9)
DeltaFile
+1-1sys/dev/e1000/e1000_mac.c
+1-11 files

OPNSense/src 5a08258sys/dev/e1000 e1000_vf.c e1000_mac.c

e1000: fix data type in MAC hash

DPDK commit message

net/e1000/base: fix data type in MAC hash

One of the bit shifts in MAC hash calculation triggers a static analysis
warning about a potential overflow. Fix the data type to avoid this.

Fixes: af75078fece3 ("first public release")
Cc: stable at dpdk.org

Signed-off-by: Barbara Skobiej <barbara.skobiej at intel.com>
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>

Obtained from:  DPDK (458734aaac)

(cherry picked from commit a09034d561cbb3792ecc0146b41d4794ab3bda37)
DeltaFile
+4-2sys/dev/e1000/e1000_vf.c
+4-2sys/dev/e1000/e1000_mac.c
+8-42 files

OPNSense/src 5f7937dsys/dev/e1000 e1000_vf.c e1000_mac.c

e1000: fix MAC address hash bit shift

DPDK commit message

net/e1000/base: fix MAC address hash bit shift

In e1000_hash_mc_addr_generic() the expression:

"mc_addr[4] >> 8 - bit_shift", right shifting "mc_addr[4]"

shift by more than 7 bits always yields zero, so hash becomes not so
different. Add initialization with bit_shift = 1, and add a loop
condition to ensure bit_shift will be always in [1..8] range.

Fixes: af75078fece3 ("first public release")
Cc: stable at dpdk.org

Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov at intel.com>
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>

    [5 lines not shown]
DeltaFile
+2-2sys/dev/e1000/e1000_vf.c
+2-2sys/dev/e1000/e1000_mac.c
+4-42 files

OPNSense/src 439513bsys/dev/e1000 e1000_82575.c

e1000: fix reset for 82580

DPDK commit message

net/e1000/base: fix reset for 82580

Fix setting device reset status bit in e1000_reset_hw_82580() function
for 82580 by first reading the register value, and then setting the
device reset bit.

Fixes: af75078fece3 ("first public release")
Cc: stable at dpdk.org

Signed-off-by: Barbara Skobiej <barbara.skobiej at intel.com>
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>

Obtained from:  DPDK (88a1eb79ef)

(cherry picked from commit 53e4711616041a668ab61f2ce86c9fa139ab67a9)
DeltaFile
+4-2sys/dev/e1000/e1000_82575.c
+4-21 files

OpenBSD/ports GN76Gdynet/neighbot Makefile distinfo

   Update to 0.5.16

   OK tb@
VersionDeltaFile
1.2+2-2net/neighbot/distinfo
1.3+1-1net/neighbot/Makefile
+3-32 files

OPNSense/src ba2cafdsys/dev/e1000 e1000_mac.c e1000_hw.h

e1000: add LPI counters

DPDK commit message

net/e1000/base: add LPI counters

Add new fields in structure to indicate if EEE LPI entries have been
observed on Tx and Rx path.

Signed-off-by: Sasha Neftin <sasha.neftin at intel.com>
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>

Obtained from:  DPDK (2e8078ee69)

(cherry picked from commit d1c20195c0fae27b6b1d526c03d8844f200e5c86)
DeltaFile
+2-0sys/dev/e1000/e1000_mac.c
+2-0sys/dev/e1000/e1000_hw.h
+4-02 files

OPNSense/src a72cd5fsys/dev/e1000 if_em.c

e1000: Export EEE Low Power Idle counters

Accumulate the clear-on-read transmit and receive LPI event counters
on EEE capable PCH and I350 family devices.  Expose the 64-bit totals
under the per-device eee sysctl node.

(cherry picked from commit eff55e5e098b85855335d8df151787b6b034973f)
DeltaFile
+28-0sys/dev/e1000/if_em.c
+28-01 files

OPNSense/src 705b288sys/dev/e1000 e1000_ich8lan.c

e1000: fix unchecked return

DPDK commit message

net/e1000/base: fix unchecked return

Static analysis has detected a write that is not checked for errors,
leading to ignored error return value. Add a check.

Fixes: edcdb3c5f71b ("e1000/base: fix link flap on 82579")
Cc: stable at dpdk.org

Signed-off-by: Dima Ruinskiy <dima.ruinskiy at intel.com>
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>

Obtained from:  DPDK (b0b6b50c20)

(cherry picked from commit c80aface0f4662c7dc46eed3fbb27b64ab931500)
DeltaFile
+2-0sys/dev/e1000/e1000_ich8lan.c
+2-01 files

OPNSense/src 343c213sys/dev/e1000 e1000_phy.c

e1000: Check PHY control register reads

Do not modify a zero-initialized PHY control value when its preceding
read failed.

(cherry picked from commit c276a80a4e52c065ed631e498ed2c3d284b45c75)
DeltaFile
+17-3sys/dev/e1000/e1000_phy.c
+17-31 files

OPNSense/src b448cc7sys/dev/e1000 e1000_ich8lan.c

e1000: Compare decoded PCH LTR latencies

The LTR encoding combines a value and a nonlinear scale, so encoded
values cannot be compared directly.  Decode both the device latency and
the platform maximum before deciding whether to clamp the request.

(cherry picked from commit 6058dfa40238e2cd6ac6f2377986fdff99d14686)
DeltaFile
+4-2sys/dev/e1000/e1000_ich8lan.c
+4-21 files

OPNSense/src 57bab01sys/dev/e1000 e1000_ich8lan.c

e1000: Allow more time for PCH ULP exit

Firmware may take up to one second to unconfigure ULP, and affected
Lenovo systems have required nearly two seconds.  Allow 2.5 seconds
before treating the transition as a PHY failure.

This extends DPDK commit 7aa4c34581a5 using the field-tested bound
from Linux commit 3cf31b1a9eff.

(cherry picked from commit e49cb7f757f6db8976b0d247e6a897eab5867634)
DeltaFile
+1-4sys/dev/e1000/e1000_ich8lan.c
+1-41 files

OPNSense/src 52329b7sys/dev/e1000 e1000_ich8lan.h e1000_ich8lan.c

e1000: Reconfigure modern PCH K1 clock synchronization

Meteor Lake and newer PCH generations can lose packets while the MAC
and PHY clocks synchronize.  Move K1 power-down to P1 and extend the
PHY K1 exit timeout before PHY access and after reset.

Use the longer 1 Gb/s PLL clock-gate timeout added by Linux so K1 can
remain enabled without the power penalty of disabling it.  Apply the
workaround through the newer PTP and NVP generations.

This follows DPDK commits ba54bdc79d94 and d88ef2356ecc, with the
longer exit time observed in Linux 578294b8b60d.

(cherry picked from commit 17d90d5b9350239a87e66a3612cb9b084b2d75e9)
DeltaFile
+80-4sys/dev/e1000/e1000_ich8lan.c
+5-0sys/dev/e1000/e1000_ich8lan.h
+85-42 files

OPNSense/src cb3b9b4sys/dev/e1000 e1000_hw.h e1000_phy.h

e1000: Retry transient MDIC failures on modern PCH

Some Meteor Lake and newer systems sporadically fail an MDIC PHY
transaction while the MAC and PHY clocks synchronize.  Retry twice
before reporting the transaction failure.

Disable retries around PHY interface transitions where an MDI error
is expected.  Preserve and restore the configured retry count on every
exit from those flows.

This follows DPDK commit bdca22d62ff0, extended to the PTP and NVP PCH
types.

(cherry picked from commit df34ccfc913d6635e957c685d7452a05911eab89)
DeltaFile
+117-79sys/dev/e1000/e1000_phy.c
+26-0sys/dev/e1000/e1000_ich8lan.c
+4-0sys/dev/e1000/e1000_phy.h
+1-0sys/dev/e1000/e1000_hw.h
+148-794 files

OpenBSD/ports l2yRN3Inet/sniproxy Makefile distinfo

   Update to 0.14.0

   OK tb@
VersionDeltaFile
1.15+2-2net/sniproxy/distinfo
1.20+1-1net/sniproxy/Makefile
+3-32 files

OPNSense/src 2fdf892sys/dev/e1000 e1000_defines.h e1000_mac.c

e1000: fix semaphore timeout value

DPDK commit message

net/e1000/base: fix semaphore timeout value

According to datasheet, software ownership of SWSM.SWESMBI bit should
not exceed 100ms. Current implementation caused incorrect timeout
counter values, where each iteration equals 50us delay. Because of that
driver was allowed to wait for semaphore even for 1.5s. This might
trigger DPC timeout.

This implementation hardcodes value to 2000, which multiplied by 50us,
gives 100ms of possible wait time.

Fixes: af75078fece3 ("first public release")
Cc: stable at dpdk.org

Signed-off-by: Pawel Malinowski <pawel.malinowski at intel.com>

    [6 lines not shown]
DeltaFile
+1-1sys/dev/e1000/e1000_mac.c
+1-0sys/dev/e1000/e1000_defines.h
+2-12 files

OPNSense/src 31ccea1sys/dev/e1000 e1000_mac.h e1000_i210.h

e1000: Separate hardware semaphore policies by family

The shared semaphore helper accesses both the 82571 retry counter and
the I210 one-time-clear flag.  Those fields occupy overlapping members
of the device-specific union.  On 82571, incrementing the counter thus
enables the I210 recovery and clears SMBI after the first timeout.

Give 82571, generic 80003/82575, and I210/I211 users distinct acquire
paths.  Preserve the legacy peer-driver policy on 82571 and one-time
recovery on I210.

The separation follows the Intel e1000 base code in DPDK.

(cherry picked from commit 26251926892585e0746c2b65227e56cf9b2fed58)
DeltaFile
+124-2sys/dev/e1000/e1000_i210.c
+59-3sys/dev/e1000/e1000_82571.c
+11-40sys/dev/e1000/e1000_mac.c
+4-1sys/dev/e1000/e1000_82575.c
+1-1sys/dev/e1000/e1000_mac.h
+2-0sys/dev/e1000/e1000_i210.h
+201-476 files