CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel's scheduling subsystem, specifically in the handling of deferred reenqueuing of tasks. If a destroyed Deferred Scheduling Queue (DSQ) is encountered, it can lead to a system crash due to a triggered BUG_ON condition, potentially impacting system stability. Linux system administrators and developers working with kernel-level scheduling should prioritize addressing this issue to ensure system reliability and prevent unexpected crashes.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: sched_ext: Don't BUG_ON a destroyed DSQ in process_deferred_reenq_users scx_bpf_dsq_reenq() queues a deferred reenq (dru) that runs from run_deferred(), not ops.dispatch(). If the DSQ is destroyed before the dru runs, process_deferred_reenq_users() sees dsq->id == SCX_DSQ_INVALID and hits the BUG_ON. destroy_dsq() doesn't flush pending drus, so just skip. tj: Read dsq->id once with READ_ONCE(). Reading it separately in the INVALID check and the BUG_ON would leave a window where destroy_dsq() can invalidate the id between the two reads and still trigger the BUG_ON.