CVE-2026-97569
Received Received - Intake

Queue Stop Due to Deferred Completions in Linux Kernel bnxt_en Driver

Vulnerability report for CVE-2026-97569, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-25

Last updated on: 2026-09-25

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: bnxt_en: Prevent queue stop with deferred completions When the driver receives a burst of packets, it can mark a BD with the NO_CMPL bit to defer completions. The expectation is that the last packet in the ring will have this bit unset and the completion generated by that packet will cleanup that packet and the ones preceding it. This helps to reduce the number of completions fired. The suppressed completions are controlled by the driver and the number of packets with suppressed completions scales with the size of the ring. SW USO packets, on the other hand, have an upper bound on the maximum number of BDs which can be consumed which does not scale with the ring size. So, for small rings it is possible that: a burst of packets is handed to the driver, the driver defers completions for all of the packets because the number of free descriptors stays above the threshold in the driver. Then, a USO packet arrives, but the number of BDs available is not enough and the USO code exits early. In this case, you end up in a state where the ring is full of packets with their completions suppressed, which can cause the queue to stop and never be restarted. Assuming default CONFIG_MAX_SKB_FRAGS, this is only possible for small rings (<= 457 descriptors, below the driver default value) when a burst of packets fills the ring, followed by a large USO packet that can't fit. For larger rings, the delta between the completion suppression threshold and the BDs required for SW USO is large enough that completions will fire and this case is unreachable. This issue was pointed out by Sashiko and while it seems fairly unlikely given that the queue size must be small to trigger this, it is indeed possible. Fix this by tracking the last BD which deferred completions and centralizing the logic for deciding when to ring the doorbell. The NO_CMPL bit is now cleared in bnxt_txr_db_kick(), so every doorbell site is covered, including the SW USO early exit. This guarantees the ring always ends in a BD which generates a completion to clean it and wake the queue.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-25
Last Modified
2026-09-25
Generated
2026-09-25
AI Q&A
2026-09-25
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Currently, no data is known.

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel's bnxt_en driver allows a network queue to stop permanently. It occurs when the driver defers packet completions to reduce overhead, but a specific packet type (SW USO) arrives that cannot fit in the available space. This leaves the queue full of packets with deferred completions, causing the queue to stop and never restart.

Detection Guidance

This vulnerability is specific to the Linux kernel's bnxt_en driver and may not have direct detection commands. Monitor for network queue stops or performance degradation in systems using Broadcom NetXtreme network adapters. Check kernel logs for bnxt_en related errors or warnings.

Impact Analysis

If exploited, this vulnerability could cause network performance issues or outages by stopping a network queue. It may lead to packet loss, increased latency, or service disruptions in systems using the affected bnxt_en driver.

Mitigation Strategies

Update the Linux kernel to a version containing the fix for this vulnerability. If updating is not immediately possible, consider disabling the bnxt_en driver or limiting ring sizes to values above the problematic threshold (457 descriptors).

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-97569. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart