AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72494

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 RDMA/irdma driver in the Linux kernel, where improper handling of a waitqueue and request_done flag could lead to synchronization issues. The impact may include potential race conditions that could compromise system stability or security. Organizations using affected Linux systems, particularly those leveraging RDMA technology, should prioritize applying the patch to mitigate any associated risks.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: RDMA/irdma: Replace waitqueue and flag with completion The driver previously used a waitqueue along with an explicit request_done flag, but without proper barriers around request_done. An earlier patch by Gui-Dong Han <hanguidong02@gmail.com> attempted to fix this by adding the missing memory barriers. Rather than adding the barriers, this patch replaces the waitqueue+flag with a completion, which is designed for this exact purpose.