Looks like I'll never get any useful answer. This is NOT a Microsoft issue! Driver verifier is a tool to DETECT bugs in DRIVERS! It detected a bug in your INTEL DRIVER!!!!!!!!!!!!!!!!
What those 3 videos to understand how this works:
Defrag Tools: #16 - WinDbg - Driver Verifier | Defrag Tools | Channel 9 (Here it is explained what it is and why it is created!)
http://channel9.msdn.com/Shows/Defrag-Tools/Defrag-Tools-17-WinDbg-Driver-Verifier-Part-2
Defrag Tools: #18 - WinDbg - Driver Verifier - Part 3 | Defrag Tools | Channel 9
The developers have done a mistake and should fix this. Here is an explanation of the bug:
Bug Check 0xD6: DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION
http://msdn.microsoft.com/en-us/library/ff560267%28v=vs.85%29.aspx
The DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION bug check has a value of 0x000000D6. This indicates the driver accessed memory beyond the end of its pool allocation.
The driver allocated n bytes of memory and then referenced more than n bytes. The Driver Verifier Special Pool option detected this violation.