worproject / Rockchip-Windows-Drivers

Windows on Arm drivers for RK35xx platforms.
104 stars 13 forks source link

gmac - fix hang in Ethernet driver #19

Closed idigdoug closed 6 months ago

idigdoug commented 6 months ago

Ethernet driver is hanging. Occurs due to rollover of statistics, which triggers an interrupt, and we never clear the interrupt's status.

Quick fix is to just freeze the statistics, and then they never trigger interrupts.

Additional change: disable interrupts while the DPC is pending. This noticably improves performance.