PatchSiren cyber security CVE debrief
CVE-2026-98157 Linux CVE debrief
A vulnerability in the Linux kernel's EDAC device sysfs has been resolved. The poll_msec sysfs store file was using simple_strtoul(), which accepts an unsigned long, but the target field (poll_msec) is an unsigned int. This mismatch could cause silent truncation on 64-bit systems for values > UINT_MAX. The issue has been fixed by using kstrtouint() instead, which rejects values larger than UINT_MAX at parse time. Additionally, a check for value < 1 has been added to reject the 0-delay case, which could cause the poll work to spin without delay and consume 100% CPU.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- Unknown
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-09-25
- Original CVE updated
- 2026-09-25
- Advisory published
- 2026-09-25
- Advisory updated
- 2026-09-25
Who should care
Defenders responsible for Linux kernel deployments using the EDAC device sysfs should assess exposure and prioritize remediation. The vulnerability's impact is limited to systems where the poll_msec sysfs store file is used with values that could be truncated.
Why it matters
Defenders should assess exposure and prioritize remediation for Linux kernel deployments using the EDAC device sysfs due to a vulnerability that could cause silent truncation and potential 100% CPU consumption.
- Potential for 100% CPU consumption by the poll work due to 0-delay case
- Silent truncation of values > UINT_MAX on 64-bit systems
- Need for verification of affected systems and versions
- Priority for applying the fix to prevent truncation and potential CPU consumption
Technical summary
The Linux kernel's EDAC device sysfs uses simple_strtoul() for the poll_msec sysfs store file, which accepts an unsigned long. However, the target field (poll_msec) is an unsigned int, causing a mismatch that could lead to silent truncation on 64-bit systems for values > UINT_MAX. The issue is resolved by using kstrtouint() instead, which rejects values larger than UINT_MAX at parse time. A check for value < 1 has also been added to prevent the 0-delay case, which could cause the poll work to spin without delay and consume 100% CPU.
Defensive priority
Defenders should assess exposure and prioritize remediation for Linux kernel deployments using the EDAC device sysfs. The vulnerability's impact is limited to systems where the poll_msec sysfs store file is used with values that could be truncated.
Recommended defensive actions
- Assess exposure of Linux kernel deployments using the EDAC device sysfs
- Verify if the poll_msec sysfs store file is used with values that could be truncated
- Apply the fix by using kstrtouint() instead of simple_strtoul()
- Monitor for potential 100% CPU consumption by the poll work
- Review compensating controls for exposed systems while remediation is scheduled and verified
- Check relevant monitoring, detection, and logs for exposed assets that need extra review
- Track exceptions, retest remediated assets, and close the item only after evidence is documented
Evidence notes
The CVE record and NVD entry provide details about the vulnerability. However, the scope of affected systems and versions is not explicitly stated, requiring verification from the supplied official sources.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-98157 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-98157
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-98157 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-98157
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/0e022ee4f8e0dc843ba4c80bb75408a7704279af
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/528052af901d6e6bbfa0e52362a70a58a5dd1e43
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/66cc9dec919dd63d8e4b3d386f7aed3ae684e645
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/ea01c061d839b520f385f112908de1c6e3391327
416baaa9-dc9f-4396-8d5f-8c081fb06d67
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.