CVE-2026-43311
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
08/05/2026
Last modified:
15/05/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
soc/tegra: pmc: Fix unsafe generic_handle_irq() call<br />
<br />
Currently, when resuming from system suspend on Tegra platforms,<br />
the following warning is observed:<br />
<br />
WARNING: CPU: 0 PID: 14459 at kernel/irq/irqdesc.c:666<br />
Call trace:<br />
handle_irq_desc+0x20/0x58 (P)<br />
tegra186_pmc_wake_syscore_resume+0xe4/0x15c<br />
syscore_resume+0x3c/0xb8<br />
suspend_devices_and_enter+0x510/0x540<br />
pm_suspend+0x16c/0x1d8<br />
<br />
The warning occurs because generic_handle_irq() is being called from<br />
a non-interrupt context which is considered as unsafe.<br />
<br />
Fix this warning by deferring generic_handle_irq() call to an IRQ work<br />
which gets executed in hard IRQ context where generic_handle_irq()<br />
can be called safely.<br />
<br />
When PREEMPT_RT kernels are used, regular IRQ work (initialized with<br />
init_irq_work) is deferred to run in per-CPU kthreads in preemptible<br />
context rather than hard IRQ context. Hence, use the IRQ_WORK_INIT_HARD<br />
variant so that with PREEMPT_RT kernels, the IRQ work is processed in<br />
hardirq context instead of being deferred to a thread which is required<br />
for calling generic_handle_irq().<br />
<br />
On non-PREEMPT_RT kernels, both init_irq_work() and IRQ_WORK_INIT_HARD()<br />
execute in IRQ context, so this change has no functional impact for<br />
standard kernel configurations.<br />
<br />
[treding@nvidia.com: miscellaneous cleanups]
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.19.6 (excluding) |
To consult the complete list of CPE names with products and versions, see this page



