In the Linux kernel, the following vulnerability has been resolved:
net: mvneta: re-enable percpu interrupt on resume
On Marvell MPIC platforms (Armada 370/XP/38x), mvneta uses a percpu IRQ disable/enable scheme for NAPI: the ISR (mvneta_percpu_isr) calls disable_percpu_irq() to mask the MPIC per-CPU interrupt and schedules NAPI poll, which calls enable_percpu_irq() on completion to unmask.
If suspend occurs while NAPI poll is pending (between disable_percpu_irq in the ISR and enable_percpu_irq in poll completion), the interrupt is never re-enabled:
- mvneta_percpu_isr: disable_percpu_irq() + napi_schedule()
- NAPI poll does not complete before suspend proceeds
- mvneta_stop_dev => napi_disable(): cancels the pending poll
- suspend_device_irqs => IRQCHIP_MASK_ON_SUSPEND: masks MPIC
- Resume: mpic_resume checks irq_percpu_is_enabled() => false
- mvneta_start_dev only restores device-level INTR_NEW_MASK,
Result: MPIC per-CPU interrupt stays masked permanently. The NIC generates interrupts (INTR_NEW_CAUSE != 0) but the CPU never receives them, causing complete loss of network connectivity.
Fix by calling on_each_cpu(mvneta_percpu_enable) in the resume path to unconditionally unmask the MPIC per-CPU interrupt regardless of pre-suspend state.