In the Linux kernel, the following vulnerability has been...
Unreviewed
Published
Sep 18, 2025
to the GitHub Advisory Database
•
Updated Sep 18, 2025
Description
Published by the National Vulnerability Database
Sep 18, 2025
Published to the GitHub Advisory Database
Sep 18, 2025
Last updated
Sep 18, 2025
In the Linux kernel, the following vulnerability has been resolved:
net/mlx5e: xsk: Fix crash on regular rq reactivation
When the regular rq is reactivated after the XSK socket is closed
it could be reading stale cqes which eventually corrupts the rq.
This leads to no more traffic being received on the regular rq and a
crash on the next close or deactivation of the rq.
Kal Cuttler Conely reported this issue as a crash on the release
path when the xdpsock sample program is stopped (killed) and restarted
in sequence while traffic is running.
This patch flushes all cqes when during the rq flush. The cqe flushing
is done in the reset state of the rq. mlx5e_rq_to_ready code is moved
into the flush function to allow for this.
References