AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74376

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's RAID 10 implementation, specifically in the handling of read and discard operations. If an r10bio is reused for a discard operation without properly resetting its read_slot, it may lead to a memory leak by skipping the cleanup of the replacement bio. System administrators and developers managing Linux-based systems with RAID 10 configurations should prioritize this issue to prevent potential resource exhaustion and ensure system stability.

CVE
CVE-2026-74376
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: md/raid10: reset read_slot when reusing r10bio for discard put_all_bios() always drops devs[i].bio, but it only drops devs[i].repl_bio when r10_bio->read_slot < 0. If discard reuses an r10bio that was previously used for a read, read_slot can still be non-negative, and discard cleanup can skip bio_put() on repl_bio. Reset read_slot to -1 when preparing an r10bio for discard so the replacement bio is always released correctly.