You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
pds core
About this tag
The pds core tag on WindowsForum.com covers discussions about the Linux kernel's pds_core driver, particularly a security fix tracked as CVE-2025-37886. This vulnerability involved a memory-safety bug where a stack-allocated wait_context could be used after it was freed, leading to potential kernel crashes under specific firmware timing conditions. The fix moved the wait_context to a permanent location in the driver's queue structure. The issue has a CVSS v3.1 score of 5.5 (medium severity). Content under this tag focuses on kernel driver stability, memory safety, and interrupt handling in the pds_core component.
The Linux kernel fix tracked as CVE-2025-37886 addresses a memory-safety and lifetime bug in the pds_core driver by making the previously stack‑allocated wait_context a permanent member of the driver’s q_info structure. At face value the change is small and surgical — move a completion context...