Answer in brief
CVE-2026-68416 records a Unknown severity vulnerability in mtd: fix double free and WARN_ON in add_mtd_device() error paths. 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 | >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <ffe21a3545b439e7b11578a701c22a847c149561 || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <e1e96aca1bdf391e2f49531c270ffc134e5b49a5 || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <f98ae09c727dcf34f745c875661c64b642e4abfa || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <820f983d641937a787e841ee4b93501f69f5683e || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <9d4af746af8ce27eefc2338b2feaa1e01f28b6c3 | ffe21a3545b439e7b11578a701c22a847c149561, e1e96aca1bdf391e2f49531c270ffc134e5b49a5, f98ae09c727dcf34f745c875661c64b642e4abfa, 820f983d641937a787e841ee4b93501f69f5683e, 9d4af746af8ce27eefc2338b2feaa1e01f28b6c3 |
| Linux/Linuxgeneric | 6.6 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: mtd: fix double free and WARN_ON in add_mtd_device() error paths When device_register() or mtd_nvmem_add() fails inside add_mtd_device() for a partition, the error handling triggers mtd_release() via put_device() or device_unregister(). mtd_release() calls release_mtd_partition() which frees the mtd_info structure. However, callers such as mtd_add_partition() and add_mtd_partitions() also call free_partition() in their error paths, resulting in a double free. Additionally, release_mtd_partition() hits WARN_ON(!list_empty( &mtd->part.node)) because the partition node is still linked in the parent's partitions list when the release callback fires from the add_mtd_device() error path. Fix this by overriding dev->type and dev->release before put_device() in the error paths, so that device_release() invokes a no-op function instead of mtd_release(). For the mtd_nvmem_add() failure case, device_unregister() is replaced with device_del() to separate the device removal from the final kobject reference drop, allowing the override to take effect before put_device() is called. The callers' error paths (list_del + free_partition) remain the sole owners of mtd_info lifetime on add_mtd_device() failure, which is the expected contract. The normal partition teardown path is not affected: del_mtd_device() goes through kref_put() -> mtd_device_release() -> device_unregister() with dev->type still set to &mtd_devtype, so mtd_release() -> release_mtd_partition() continues to work correctly for the regular removal case.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-68416 records a Unknown severity vulnerability in mtd: fix double free and WARN_ON in add_mtd_device() error paths. 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 | >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <ffe21a3545b439e7b11578a701c22a847c149561 || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <e1e96aca1bdf391e2f49531c270ffc134e5b49a5 || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <f98ae09c727dcf34f745c875661c64b642e4abfa || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <820f983d641937a787e841ee4b93501f69f5683e || >=19bfa9ebebb5ec0695def57eb1d80de7e9cab369 <9d4af746af8ce27eefc2338b2feaa1e01f28b6c3 | ffe21a3545b439e7b11578a701c22a847c149561, e1e96aca1bdf391e2f49531c270ffc134e5b49a5, f98ae09c727dcf34f745c875661c64b642e4abfa, 820f983d641937a787e841ee4b93501f69f5683e, 9d4af746af8ce27eefc2338b2feaa1e01f28b6c3 |
| Linux/Linuxgeneric | 6.6 | Not reported |
Published upstream
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 10, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 10, 2026
In the Linux kernel, the following vulnerability has been resolved: mtd: fix double free and WARN_ON in add_mtd_device() error paths When device_register() or mtd_nvmem_add() fails inside add_mtd_device() for a partition, the error handling triggers mtd_release() via put_device() or device_unregister(). mtd_release() calls release_mtd_partition() which frees the mtd_info structure. However, callers such as mtd_add_partition() and add_mtd_partitions() also call free_partition() in their error paths, resulting in a double free. Additionally, release_mtd_partition() hits WARN_ON(!list_empty( &mtd->part.node)) because the partition node is still linked in the parent's partitions list when the release callback fires from the add_mtd_device() error path. Fix this by overriding dev->type and dev->release before put_device() in the error paths, so that device_release() invokes a no-op function instead of mtd_release(). For the mtd_nvmem_add() failure case, device_unregister() is replaced with device_del() to separate the device removal from the final kobject reference drop, allowing the override to take effect before put_device() is called. The callers' error paths (list_del + free_partition) remain the sole owners of mtd_info lifetime on add_mtd_device() failure, which is the expected contract. The normal partition teardown path is not affected: del_mtd_device() goes through kref_put() -> mtd_device_release() -> device_unregister() with dev->type still set to &mtd_devtype, so mtd_release() -> release_mtd_partition() continues to work correctly for the regular removal case.
Quoted source text, attributed separately from HOL analysis.