AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74334

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 RDMA subsystem, specifically related to improper locking during access to the memory region's protection domain (PD), which can lead to race conditions. This flaw could potentially allow for inconsistent access to memory regions, impacting system stability and security. Organizations using Linux systems with RDMA capabilities should prioritize this patch to mitigate risks associated with memory access vulnerabilities.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: RDMA/nldev: Fix locking when accessing mr->pd Sashiko points out that, due to rereg_mr, the PD is actually variable and all the touches in nldev are racy. Use mr->device instead of mr->pd->device. Getting the PD restrack ID is more tricky. To avoid disturbing all the happy paths, add an rdma_restrack_sync() operation which is sort of like flush_workqueue() or synchronize_irq(): after it returns, all the old nldev touches to the mr are gone and everything sees the new PD. This makes it safe to reach into the PD pointer.