CVE-2026-80997: net: ipa: fix stalled modem TX queue after runtime resume

Published Sep 11, 2026
·
Updated

In the Linux kernel, the following vulnerability has been resolved:

net: ipa: fix stalled modem TX queue after runtime resume

ipastartxmit() unconditionally stops the TX queue before calling pmruntimeget(), relying on the wake scheduled by runtime resume (ipamodemwakequeuework()) to restart it once power is ACTIVE. But that work is queued from within the runtime resume callback, before the device's power state reaches RPMACTIVE, so it can run while the device is still RPMRESUMING. The wake is then consumed too early: the transmit it restarts stops the queue again, pmruntimeget() returns -EINPROGRESS without arranging any future wake (deferredresume exists only for RPMSUSPENDING), and after the resume completes nothing is left to wake the queue. Transmit stalls permanently: packets pile up in the qdisc behind the stopped queue, the device runtime-suspends, and since the netdev registers no ndotxtimeout the watchdog never fires. Observed on SM7635 (Fairphone 6) as the cellular data path going permanently deaf within hours, RX included, since nothing resumes the suspended endpoints.

Close the window by making the wake work wait for the resume to complete (pmruntimegetsync()) before waking the queue. Every queue stop is then guaranteed a later wake that happens while power is ACTIVE; a transmit racing a new suspend/resume cycle re-schedules the work. If the device could not be resumed, wake the queue anyway so pending packets are dropped by the transmit path rather than stranded.

The STARTED power flag used to narrow this window: a wake running before the transmit path's stop suppressed that stop, but only once, as the flag was cleared by the first stop it absorbed. Removing the flag made a single transmit during an in-flight resume sufficient to strand the queue, which is the form observed.

With an accelerated reproducer (autosuspend delay shortened to 5 ms, ~20 packets/s of TX), an unpatched kernel stalled three times in 230 s / 4380 packets; with this patch the same test ran 3601 s / 70298 packets without a stall.

Affected Software

1 affected component
Linux Kernel

Event History

Sep 11, 2026
CVE Published
via MITRE·07:42 PM
Data Sourced
via MITRE·07:42 PM
Description

Frequently Asked Questions

1

Which systems are known to be affected in practice?

The issue was observed on SM7635 hardware, specifically the Fairphone 6, where the cellular data path could become permanently unresponsive within hours.

2

What conditions trigger the failure?

It occurs when transmission is attempted during a runtime-resume transition. The queue wake work can run while the device is still resuming, allowing a subsequent transmit to stop the queue without a later wake being scheduled.

3

How can an administrator recognize an affected device?

Packets accumulate in the qdisc behind a stopped transmit queue, while cellular connectivity becomes permanently deaf, including receive traffic. The device can runtime-suspend afterward, and the network watchdog does not recover it because the netdev has no ndo_tx_timeout handler.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203