search for: xennet_rxshutdown

Displaying 2 results from an estimated 2 matches for "xennet_rxshutdown".

2008 Jun 05
0
GPL PV Windows xennet driver will BSOD‏
...ws xennet driver source found in the repository will BSOD if the option "Large Send Offload" is changed to disabled or if the driver is disabled. Tracked down the issue via WinDbg – If a buffer is in the free list prior to the function XenNet_RxBufferFree() being called via the function XenNet_RxShutdown() the array fl->page_list[] will be overwritten and the variable page_free will be stepped on. A simple solution, which I have verified is to dispose of the free list buffers (if there are any) by calling the function XenFreelist_Dispose() prior to calling the function XenNet_RxBufferFree()...
2008 Jun 04
0
GPL PV Windows xennet will BSOD
...dows xennet driver source found in the repository will BSOD if the option "Large Send Offload" is changed to disabled or if the driver is disabled. Tracked down the issue via WinDbg – If a buffer is in the free list prior to the function XenNet_RxBufferFree() being called via the function XenNet_RxShutdown() the array fl->page_list[] will be overwritten and the variable page_free will be stepped on. A simple solution, which I have verified is to dispose of the free list buffers (if there are any) by calling the function XenFreelist_Dispose() prior to calling the function XenNet_RxBufferFree() Here...