CVE Catalog

CVE-2026-90209

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, a deadlock occurs during unregistering an s390dbf debug area while one of the associated debugfs files is being written to. The debugfs writing thread waits for debug_mutex held by debug_unregister(), which waits for debugfs_file_put(), causing a deadlock. The fix splits debug_unregister() into an s390dbf and debugfs part, running only the s390dbf part with debug_mutex locked.

Risk Assessment

A deadlock during debug area unregistration may cause kernel threads to hang, resulting in a system-wide hang. This can lead to service unavailability and require a restart.

Recommendation

Update the Linux kernel to a version containing the fix for this issue. Avoid simultaneous writes to debugfs files and unregistering s390dbf debug areas until the update is applied.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: s390/debug: Fix deadlock during unregister Unregistering an s390dbf debug area while one of the associated debugfs files is being written to can cause a deadlock: $ echo >.../vmur/level $ rmmod vmur =================================================== debugfs write debugfs_file_get() debug_unregister() mutex_lock(debug_mutex) debugfs_remove() wait for debugfs_file_put() debug_file_ops.write() debug_input() mutex_lock(debug_mutex) ==> DEADLOCK Fix this by splitting debug_unregister() into an s390dbf and debugfs part, and running only the s390dbf part with debug_mutex locked.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS