CVE-2026-93083: firmware: arm_scmi: Unwind TX receiver mailbox setup failure
In the Linux kernel, the following vulnerability has been resolved:
firmware: armscmi: Unwind TX receiver mailbox setup failure
mailboxchansetup() can request an additional unidirectional TX receiver channel after successfully acquiring the primary channel. If that second request fails, the function returns immediately and leaves the primary channel allocated.
Unwind the primary mailbox channel before returning the error so probe deferral or other setup failures do not leave the channel busy for later probe attempts.
Affected Software
Event History
Frequently Asked Questions
When can this issue be triggered?
It occurs when mailbox_chan_setup() has successfully acquired the primary mailbox channel and then fails while requesting an additional unidirectional TX receiver channel.
What is the operational impact of a failed setup?
The primary mailbox channel can remain allocated after the failure. This leaves it busy and can prevent later probe attempts from acquiring the channel.
What should be done if a setup failure has already left a channel busy?
The provided fix changes the failure path to release the primary mailbox channel before returning the error. Applying a kernel version containing that fix prevents subsequent probe deferrals or setup failures from leaving the channel allocated.