CVE-2026-43311
Gravedad CVSS v3.1:
MEDIA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
08/05/2026
Última modificación:
15/05/2026
Descripción
*** Pendiente de traducción *** 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]
Impacto
Puntuación base 3.x
5.50
Gravedad 3.x
MEDIA
Productos y versiones vulnerables
| CPE | Desde | Hasta |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (incluyendo) | 6.19.6 (excluyendo) |
Para consultar la lista completa de nombres de CPE con productos y versiones, ver esta página



