Answer in brief
CVE-2026-90066 records a Unknown severity vulnerability in samples/ftrace: Fix kthread_stop() on ERR_PTR in ftrace-direct-multi-modify. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=e1067a07cfbc5a36abad3752fafe4c79e06db1bb <7a96b9f6d5ba23dbce66c8a4a242effd4c01a830 || >=e1067a07cfbc5a36abad3752fafe4c79e06db1bb <98b7b2a29ae87937aa02ab9391543ef8c602cd94 || >=e1067a07cfbc5a36abad3752fafe4c79e06db1bb <626614df9080d7052fbe24dc90b5434717ab7a9f || >=e1067a07cfbc5a36abad3752fafe4c79e06db1bb <cf839636911d8313f3ecd098329fd0b96499e4cf || >=e1067a07cfbc5a36abad3752fafe4c79e06db1bb <6727b7618f49401acf373fa3ec5712e2ec52e5cf | 7a96b9f6d5ba23dbce66c8a4a242effd4c01a830, 98b7b2a29ae87937aa02ab9391543ef8c602cd94, 626614df9080d7052fbe24dc90b5434717ab7a9f, cf839636911d8313f3ecd098329fd0b96499e4cf, 6727b7618f49401acf373fa3ec5712e2ec52e5cf |
| Linux/Linuxgeneric | 5.16 | Not reported |
Published upstream
Sep 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Sep 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Sep 17, 2026
In the Linux kernel, the following vulnerability has been resolved: samples/ftrace: Fix kthread_stop() on ERR_PTR in ftrace-direct-multi-modify ftrace_direct_multi_init() assigns kthread_run()'s return value to simple_tsk without an IS_ERR() check. When kthread_run() fails it returns ERR_PTR(-ENOMEM), but init still returns 0, so the module loads with simple_tsk holding an error pointer. On unload, ftrace_direct_multi_exit() then passes that ERR_PTR to kthread_stop(), leading to a null-pointer-dereference. Check the return value of kthread_run() with IS_ERR(); on failure, unregister the ftrace direct call and propagate the error code.
Quoted source text, attributed separately from HOL analysis.