FreeBSD/src 8d1d329sys/dev/ixgbe if_sriov.c

ixgbe: check negotiated API for VF queue query

The GET_QUEUES handler switches on msg[0], which contains the mailbox
command rather than the negotiated API version.  It therefore cannot
reject API 1.0 or an unnegotiated VF as intended.

Switch on the API version stored for the VF.

MFC after:      1 week
DeltaFile
+1-1sys/dev/ixgbe/if_sriov.c
+1-11 files

FreeBSD/src 9fc83casys/dev/ixgbe if_sriov.c

ixgbe: reject VF requests before CTS

A VF that sends a non-reset request before completing reset negotiation
has not received CTS.  The PF ignores the request but currently reports
success, leaving the VF with a false view of the programmed state.

Return failure for the ignored request.  This restores the behavior lost
when the mailbox helpers were renamed.

Fixes:          36c516b31136 ("ixgbe: update if_sriov to use the new mailbox apis")
MFC after:      1 week
DeltaFile
+1-1sys/dev/ixgbe/if_sriov.c
+1-11 files

FreeBSD/src 35374c3sys/dev/ixgbe ixgbe_common.c ixgbe_82598.c

ixgbe: avoid signed overflow in pause time calculation

pause_time is promoted to signed int before multiplication.  Its default
value of 65535 multiplied by 65537 exceeds INT_MAX and triggers UBSAN,
even though the result is assigned to a u32.

Make the multiplier unsigned so the calculation has the intended u32
semantics.  Linux commit 3b70683fc4d6 reported the failure in the generic
path and used the same mechanical correction.  The 82598-specific flow
control operation contains the identical expression, so correct it as well.

MFC after:      1 week
DeltaFile
+1-1sys/dev/ixgbe/ixgbe_common.c
+1-1sys/dev/ixgbe/ixgbe_82598.c
+2-22 files

LLVM/project 3a809f6libcxx/test/libcxx clang_tidy.sh.py, libcxxabi .clang-tidy

[libc++abi] Add a clang-tidy config and test (#207324)

This essentially copies the `.clang-tidy` file from libc++ into
libc++abi, except that the naming conventions are updated to not add
underscores and some checks are disabled that don't pass currently. They
will be fixed in follow-ups.
DeltaFile
+55-0libcxxabi/.clang-tidy
+3-2libcxx/test/libcxx/clang_tidy.sh.py
+58-22 files

LLVM/project e147e5blibcxx/include/__atomic clear_padding.h

[libc++] Simplify clear_padding.h a bit (#212426)
DeltaFile
+10-23libcxx/include/__atomic/clear_padding.h
+10-231 files

LLVM/project 090b656libcxx/include/__memory array_cookie.h unique_ptr.h, libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers assert.subscript.pass.cpp

[libc++] Make __has_array_cookie a variable template (#212767)

Using variable templates is slightly faster to compile and more
readable, so we might as well use them.
DeltaFile
+3-5libcxx/include/__memory/array_cookie.h
+4-4libcxx/include/__memory/unique_ptr.h
+2-2libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/assert.subscript.pass.cpp
+9-113 files

FreeBSD/src 8fa2a75sys/dev/ixgbe ixgbe_type.h ixgbe_x550.c

ixgbe: fix unaligned access in ixgbe_update_flash_X550()

ixgbe_host_interface_command() treats its buffer as a u32 array.  The
local union contained only byte-sized fields, giving it one-byte stack
alignment and allowing unaligned accesses on strict-align systems.

Add a u32 member to the union to provide the required alignment and
pass that member to ixgbe_host_interface_command().

No functional change is expected on x86.

Obtained from:  Intel ix 3.4.39
MFC after:      1 week
DeltaFile
+1-2sys/dev/ixgbe/ixgbe_x550.c
+1-0sys/dev/ixgbe/ixgbe_type.h
+2-22 files

FreeBSD/src 985bef0sys/dev/ixgbe ixgbe_phy.c

ixgbe: retry incoherent SFP identifier reads

FreeBSD's I2C helper already retries failed transactions.  Limit this
new outer loop to successful reads with an invalid identifier so that
retry budget is not multiplied.

DPDK commit message

net/ixgbe: retry misbehaving SFP read

Some XGS-PON SFPs ACK I2C reads and return uninitialized data while
their microcontroller boots.  A bogus identifier can cause an otherwise
working module to be marked unsupported.

Retry the identifier read several times, checking for both successful
I2C completion and a valid SFP identifier.

Signed-off-by: Stephen Douthit <stephend at silicom-usa.com>
Signed-off-by: Jeff Daly <jeffd at silicom-usa.com>

    [4 lines not shown]
DeltaFile
+17-3sys/dev/ixgbe/ixgbe_phy.c
+17-31 files

FreeBSD/ports a86e7f3java/openjdk21 distinfo Makefile

java/openjdk21: Update to version 21.0.12

Includes the following FreeBSD specific fixes:
- Set wxneeded flag on executables on FreeBSD.
- Fix build with clang 22.

Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-3java/openjdk21/distinfo
+3-3java/openjdk21/Makefile
+6-62 files

LLVM/project 5aec353llvm/test/CodeGen/PowerPC copysignl.ll

[NFC][PowerPC] add more `copysign` tests (#213236)
DeltaFile
+433-110llvm/test/CodeGen/PowerPC/copysignl.ll
+433-1101 files

LLVM/project 69fb339clang/test/SemaOpenCL builtins-amdgcn-image-bvh-intersect-ray-err.cl, llvm/lib/Target/AMDGPU AMDGPU.td

AMDGPU: Do not give gfx12.5 bvh-ray-tracing-insts

bvh-ray-tracing-insts was listed in the FeatureGFX12 generation, so
gfx1250/gfx1251/gfx12-5-generic inherited it even though they have no BVH.
Move the feature out of the common base and into FeatureISAVersion12, which
This stops clang from wrongly accepting __builtin_amdgcn_image_bvh_intersect_ray*
on gfx1250.

Co-authored-by: Claude (Claude-Opus-4.8)
DeltaFile
+15-0clang/test/SemaOpenCL/builtins-amdgcn-image-bvh-intersect-ray-err.cl
+2-1llvm/lib/Target/AMDGPU/AMDGPU.td
+2-0llvm/test/CodeGen/AMDGPU/llvm.amdgcn.intersect_ray.ll
+1-0llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.intersect_ray.ll
+20-14 files

FreeBSD/src a859814sys/dev/ixgbe ixgbe_82599.c

ixgbe: check EEPROM read in 82599 D3 path

DPDK commit message

net/ixgbe/base: fix unchecked return value

Check the return value from ixgbe_read_eeprom() before using the
control word to configure link disable during D3.

Fixes:          b7ad3713b958 ("ixgbe/base: allow to disable link on D3")
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 (eb3684b191)
MFC after:      1 week
DeltaFile
+5-3sys/dev/ixgbe/ixgbe_82599.c
+5-31 files

LLVM/project 6ebd9e1llvm/include/llvm/ExecutionEngine/Orc/RTBridge Calls.h, llvm/include/llvm/ExecutionEngine/Orc/RTBridge/SPS Calls.h

[ORC] Add VoidVoid and IntVoid Callers, with tests. (#213211)

Add rt::VoidVoidCaller (void()) and rt::IntVoidCaller (int64_t())
runtime-agnostic interfaces and their rt::sps implementations, targeting
the orc_rt_ci_sps_call_void_void and orc_rt_ci_sps_call_int_void
controller-interface wrappers. Both are experimental and may be removed.

Extend SPSCallersTest to cover the new callers. VoidVoidCaller is the
first caller instantiated with a void result type, which exposed a
latent bug in sps::Caller::callAsync: its result handler declared a
CalleeRetT parameter, ill-formed when CalleeRetT is void. It now
special-cases void via `if constexpr`.
DeltaFile
+114-0llvm/unittests/ExecutionEngine/Orc/SPSCallersTest.cpp
+44-10llvm/include/llvm/ExecutionEngine/Orc/RTBridge/SPS/Calls.h
+23-0llvm/include/llvm/ExecutionEngine/Orc/RTBridge/Calls.h
+181-103 files

FreeBSD/src 21e03absys/dev/ixgbe if_ix.c

ixgbe: avoid flow control counter overflow

DPDK commit message

net/ixgbe: fix flow control frame byte adjustment

LXONTXC and LXOFFTXC are 32-bit counters for transmitted XON and XOFF
packets.  Their deltas are summed and used to adjust the transmitted
packet and byte counters.

Perform the addition in 64 bits so it cannot wrap before the result is
used for the byte adjustment.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

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

Signed-off-by: Daniil Iskhakov <dish at amicon.ru>

    [4 lines not shown]
DeltaFile
+3-3sys/dev/ixgbe/if_ix.c
+3-31 files

LLVM/project b7f90a0clang/test/CodeGen/AArch64 ptrauth-function-attributes-synthetic.c, llvm/test/Instrumentation/AddressSanitizer ptrauth-module-flags-aarch64.ll

Address review comments
DeltaFile
+54-4llvm/test/Instrumentation/AddressSanitizer/ptrauth-module-flags-aarch64.ll
+32-20clang/test/CodeGen/AArch64/ptrauth-function-attributes-synthetic.c
+37-0llvm/test/Transforms/GCOVProfiling/ptrauth-module-flags-aarch64.ll
+123-243 files

FreeBSD/src e451789sys/dev/ixgbe ixgbe_e610.c

ixgbe: copy ACI buffer before command retry

DPDK commit message

net/ixgbe/base: add missing buffer copy for ACI

Add the missing buffer copy in ixgbe_aci_send_cmd().

The retry path saves the original descriptor and allocates storage for
the command buffer so both can be restored before another attempt.  It
did not copy the original command buffer into that storage.

Fixes:          25b48e569f2f
Cc: stable at dpdk.org

Signed-off-by: Dan Nowlin <dan.nowlin at intel.com>
Signed-off-by: Yuan Wang <yuanx.wang at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>


    [2 lines not shown]
DeltaFile
+1-0sys/dev/ixgbe/ixgbe_e610.c
+1-01 files

FreeBSD/src 6020de5sys/dev/ixgbe if_ixv.c

ixv: fix multicast address enumeration

if_foreach_llmaddr() adds each callback return value to its running
count.  Returning the incremented count made the address indices grow
as 0, 1, 3, 7, and so on, eventually writing beyond the multicast
address array.

Return one address per callback and stop copying when the array is
full, matching the ixv-1.6.12 driver.

Fixes:          ff06a8dbb677 ("Mechanically convert ixgbe(4) to IfAPI")
MFC after:      1 week
DeltaFile
+4-2sys/dev/ixgbe/if_ixv.c
+4-21 files

LLVM/project 8db13dellvm/lib/Transforms/Vectorize VPlanPatternMatch.h VPlanTransforms.cpp

[VPlan] Remove redundant x && (y && x) -> x && y combine (#213219)

It can be subsumed by making the combine above commutative. In theory
this isn't NFC as it changes the order, in practice it doesn't make a
difference.
DeltaFile
+4-10llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+5-0llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
+9-102 files

FreeBSD/src 2a678cfsys/dev/ixgbe ixgbe_mbx.c

ixgbe: fail fast on VF-held PF mailboxes

The active PF mailbox operations use the legacy helpers.  The mailbox API
import changed check_for_msg into a read-only probe and added up to 2,000
500-microsecond lock retries.  If a VF leaves VFU set, the PF cannot acquire
the lock, busy-waits for up to one second, and leaves VFREQ pending so the
delay can repeat.

Give the legacy checker its old consume-on-check behavior so a failed read
does not leave VFREQ asserted.  If VFU is already set, fail immediately
instead of retrying, while preserving retries for PF-side contention.  Do
not force RVFU, which would discard peer transaction state.

MFC after:      1 week
DeltaFile
+23-3sys/dev/ixgbe/ixgbe_mbx.c
+23-31 files

FreeBSD/ports b372b4fgraphics/bmeps Makefile distinfo

graphics/bmeps: Update 4.40.0 => 4.41.0

Changelog:
https://sourceforge.net/p/dktools/wiki/News%20and%20Change%20Log/#h-4410-2026-04-27

PR:             297180
Reported by:    takefu at airport.fm (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3graphics/bmeps/distinfo
+1-1graphics/bmeps/Makefile
+4-42 files

NetBSD/pkgsrc lBqpD3gdoc CHANGES-2026

   Updated www/drupal11 to 11.4.4
VersionDeltaFile
1.4871+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc xuux354www/drupal11 Makefile distinfo

   Update to 11.4.4

   Upstream changelog is too long, please visit:
   https://www.drupal.org/project/drupal/releases
VersionDeltaFile
1.5+2,716-509www/drupal11/PLIST
1.5+4-4www/drupal11/distinfo
1.9+2-2www/drupal11/Makefile
+2,722-5153 files

LLVM/project 136347bllvm/utils/TableGen/Common CodeGenDAGPatterns.cpp CodeGenDAGPatterns.h

[TableGen] Speed up intrinsic lookups with DenseMap (NFC) (#213198)

Store in DenseMap, avoids linear lookups.
Speeds up NVPTX -gen-dag-isel and -gen-instr-info by 10%.
RISCV shows similar gains.
Neutral or marginally beneficial for other targets.
DeltaFile
+6-8llvm/utils/TableGen/Common/CodeGenDAGPatterns.h
+4-0llvm/utils/TableGen/Common/CodeGenDAGPatterns.cpp
+10-82 files

LLVM/project 09d8e6dclang/test/CodeGenOpenCL builtins-amdgcn-gfx13.cl, llvm/lib/TargetParser AMDGPUTargetParser.cpp

AMDGPU: Add missing msad-insts to gfx13 frontend feature map

fillAMDGCNFeatureMap omitted msad-insts for gfx1310/gfx13-generic, so
clang wrongly rejected __builtin_amdgcn_msad_u8 on those targets even
though the backend enables the feature (FeatureGFX9 generation, inherited
through FeatureGFX13). Add it to the gfx13 case.

Co-authored-by: Claude (Claude-Opus-4.8)
DeltaFile
+23-0clang/test/CodeGenOpenCL/builtins-amdgcn-gfx13.cl
+9-4llvm/test/CodeGen/AMDGPU/llvm.amdgcn.msad.u8.ll
+1-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+33-43 files

NetBSD/pkgsrc 2QyB2fjdoc CHANGES-2026

   Updated security/p5-Net-DNS-SEC to 1.27
VersionDeltaFile
1.4870+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc vn73aR2security/p5-Net-DNS-SEC Makefile distinfo

   Update to 1.27

   Upstream changes:
   1.27 Jan 16, 2026
           Provide deprecation status for RSA and DSA (per RFC9904)
VersionDeltaFile
1.26+4-4security/p5-Net-DNS-SEC/distinfo
1.62+3-4security/p5-Net-DNS-SEC/Makefile
+7-82 files

LLVM/project 81f89bbllvm/lib/Target/AArch64 AArch64SVEInstrInfo.td, llvm/test/CodeGen/AArch64 vector-absolute-difference.ll sve-partial-reduce-dot-product.ll

[LLVM][CodeGen][SVE] Use pairwise instruction for partial_reduce_[s/u]mla. (#212772)
DeltaFile
+22-24llvm/test/CodeGen/AArch64/sve-partial-reduce-wide-add.ll
+14-13llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
+5-8llvm/test/CodeGen/AArch64/sve-partial-reduce-dot-product.ll
+4-4llvm/test/CodeGen/AArch64/vector-absolute-difference.ll
+45-494 files

FreeBSD/src 4096019sys/dev/ixgbe ixgbe_vf.c ixgbe_mbx.c

ixgbe: respect peer mailbox ownership

A VF currently treats an existing VFU bit as a successful acquisition,
while the PF checks its own PFU bit before claiming the mailbox.  Check
both the local and peer ownership bits before setting local ownership.
This prevents same-side callers from sharing the mailbox and avoids an
acquisition attempt while the peer owns it.

VFLR does not clear VFMAILBOX.VFU.  Clear stale VF ownership and cached
mailbox status after the reset indication settles and before sending the
reset request, so the ownership check cannot strand a reinitialized VF.

Adapt only the live ownership checks from Intel ix 3.4.39.  Do not import
its upgraded-mailbox changes, which are not active in FreeBSD.

Obtained from:  Intel ix 3.4.39
MFC after:      1 week
DeltaFile
+8-2sys/dev/ixgbe/ixgbe_mbx.c
+7-0sys/dev/ixgbe/ixgbe_vf.c
+15-22 files

LLVM/project ea56c33llvm/test/CodeGen/AMDGPU buffer-fat-pointer-atomicrmw-fmin.ll buffer-fat-pointer-atomicrmw-fadd.ll

[MachineLICM] Use `RegisterClassInfo::getRegPressureSetLimit` (#211715)

This recommits #119826, which taught `MachineLICM` to use
`RegisterClassInfo` when computing register pressure limits so
reserved registers are accounted for (#118787).

The original change was reverted by eeac0ff because it increased
compile time by causing repeated `RegisterClassInfo` computations.

This PR is based on #210826, in which `MachineRegisterClassInfo`
analysis pass was added. `MachineRegisterClassInfo` is required
by `MachineLICM` now, but the intervening machine passes that do
not affect `RegisterClassInfo` now preserve it, so the analysis
is reused instead of recomputed.

Assisted-by: TRAE CLI (GPT-5.5)
DeltaFile
+3,809-3,814llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmin.ll
+3,809-3,814llvm/test/CodeGen/AMDGPU/flat-atomicrmw-fmax.ll
+3,465-3,511llvm/test/CodeGen/AMDGPU/global-atomicrmw-fmin.ll
+3,465-3,511llvm/test/CodeGen/AMDGPU/global-atomicrmw-fmax.ll
+3,299-3,240llvm/test/CodeGen/AMDGPU/buffer-fat-pointer-atomicrmw-fadd.ll
+2,594-2,524llvm/test/CodeGen/AMDGPU/buffer-fat-pointer-atomicrmw-fmin.ll
+20,441-20,41468 files not shown
+47,110-46,02774 files

LLVM/project 81a8451llvm/lib/Target/Mips MipsCallingConv.td MipsRegisterInfo.cpp, llvm/test/CodeGen/Mips write_register_gp.ll

[Mips] Fix $gp was restored when used as global register variable (#201778)

The function `eliminateDeadMI` would check `if (MRI.isReserved(Reg))`,
now we only set GP to reserved when `!Subtarget.isABICalls()`. So
`eliminateDeadMI` delete the `move $gp, $4`. And we would restore $gp
after instr selection through `$gp_64 = LD $sp_64, 8`.

Check the module metadata `llvm.named.register.$28` to detect if $28 is
used as global register. Then append new conditon when set $gp to
reserverd status and return CalleeSavedRegs without $gp.

Fix #176546.
DeltaFile
+31-0llvm/test/CodeGen/Mips/write_register_gp.ll
+17-5llvm/lib/Target/Mips/MipsRegisterInfo.cpp
+13-0llvm/lib/Target/Mips/MipsCallingConv.td
+61-53 files