You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
wake on lan irq
About this tag
The wake on lan irq tag on WindowsForum.com covers discussions about Wake-on-LAN interrupt handling, particularly in the context of Linux kernel security. A notable thread addresses CVE-2026-31506, a double free vulnerability in the bcmasp Ethernet driver's Wake-on-LAN IRQ cleanup. The issue arose from mixing manual cleanup with devm_ managed resource allocation, leading to potential system instability or crashes. The fix is straightforward, but the case highlights broader lessons about driver error path correctness. While the tag is Linux-focused, it may interest Windows users who run mixed-OS environments or manage systems with Wake-on-LAN features.
CVE-2026-31506 has landed in the Linux kernel security stream as another reminder that even small cleanup mistakes in driver error paths can matter. In this case, the issue is a double free in the bcmasp Ethernet driver’s Wake-on-LAN interrupt handling, where the code tried to free an IRQ that...