Answer in brief
CVE-2026-68129 records a Unknown severity vulnerability in gve: fix Rx queue stall on alloc failure. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <299d5728a7312fdd02059b074aebbe4ebbd391e4 || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <0c317349b4baa5038d1fc373bf46d5a2419d1710 || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <91e0249f3ef62b75fe8c9c9372eaba32876e4b3a || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <689b9f588d2d7323dc66293fe594a68d030f400f || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <b65352a1bac64442ad95e64f385b40ccb9f1b0db | 299d5728a7312fdd02059b074aebbe4ebbd391e4, 0c317349b4baa5038d1fc373bf46d5a2419d1710, 91e0249f3ef62b75fe8c9c9372eaba32876e4b3a, 689b9f588d2d7323dc66293fe594a68d030f400f, b65352a1bac64442ad95e64f385b40ccb9f1b0db |
| Linux/Linuxgeneric | 5.14 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: gve: fix Rx queue stall on alloc failure When the system is under extreme memory pressure, page allocations can fail during the Rx buffer refill loop. If the number of buffers posted to hardware falls below a critical low threshold and the refill loop exits due to allocation failures, the queue can stall: 1. The device drops incoming packets because there are no descriptors. 2. Since no packets are processed, no Rx completions are generated. 3. Because no completions occur, NAPI is never scheduled, preventing the refill loop from running again even after memory is freed. This results in a permanent queue stall. Resolve this by introducing a starvation recovery timer for each Rx queue. If the number of buffers posted to hardware falls below a critical low threshold, start a timer to periodically reschedule NAPI. Once NAPI runs and successfully refills the queue above the threshold, the timer is not rescheduled. The threshold is set to 32 because a single maximum-sized Receive Segment Coalescing (RSC) packet can consume up to 19 descriptors in the Rx path. Lower thresholds (such as 8 or 16) would be insufficient to process a complete maximum-sized RSC packet, risking packet drops or unexpected hardware behavior under memory pressure. Setting the threshold to 32 guarantees a safe margin to handle at least one full RSC packet.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-68129 records a Unknown severity vulnerability in gve: fix Rx queue stall on alloc failure. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <299d5728a7312fdd02059b074aebbe4ebbd391e4 || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <0c317349b4baa5038d1fc373bf46d5a2419d1710 || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <91e0249f3ef62b75fe8c9c9372eaba32876e4b3a || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <689b9f588d2d7323dc66293fe594a68d030f400f || >=9b8dd5e5ea48bbb7532d20c4093a79d8283e4029 <b65352a1bac64442ad95e64f385b40ccb9f1b0db | 299d5728a7312fdd02059b074aebbe4ebbd391e4, 0c317349b4baa5038d1fc373bf46d5a2419d1710, 91e0249f3ef62b75fe8c9c9372eaba32876e4b3a, 689b9f588d2d7323dc66293fe594a68d030f400f, b65352a1bac64442ad95e64f385b40ccb9f1b0db |
| Linux/Linuxgeneric | 5.14 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: gve: fix Rx queue stall on alloc failure When the system is under extreme memory pressure, page allocations can fail during the Rx buffer refill loop. If the number of buffers posted to hardware falls below a critical low threshold and the refill loop exits due to allocation failures, the queue can stall: 1. The device drops incoming packets because there are no descriptors. 2. Since no packets are processed, no Rx completions are generated. 3. Because no completions occur, NAPI is never scheduled, preventing the refill loop from running again even after memory is freed. This results in a permanent queue stall. Resolve this by introducing a starvation recovery timer for each Rx queue. If the number of buffers posted to hardware falls below a critical low threshold, start a timer to periodically reschedule NAPI. Once NAPI runs and successfully refills the queue above the threshold, the timer is not rescheduled. The threshold is set to 32 because a single maximum-sized Receive Segment Coalescing (RSC) packet can consume up to 19 descriptors in the Rx path. Lower thresholds (such as 8 or 16) would be insufficient to process a complete maximum-sized RSC packet, risking packet drops or unexpected hardware behavior under memory pressure. Setting the threshold to 32 guarantees a safe margin to handle at least one full RSC packet.
Quoted source text, attributed separately from HOL analysis.