BSOD - DRIVER_POWER_STATE_ERROR 0x0000009f ntoskrnl.exe - Windows 10

0

I have a problem with my laptop. I randomly get BSODs with the same error message. DRIVER_POWER_STATE_ERROR. Sometimes evey day, then none for weeks, but the problem really bothers me. I read a lot of posts here and there, and many people seem to have the same or a similar problem, but I never found a solution that worked for me.

Additionally I have problems with starting the laptop. I have the feeling it depends on whether the Power cable is plugged in or not. Usually it only takes about 10 seconds, but sometimes several minutes. When it gets stuck on the login screen plugging in or unplugging the power cable usually helps. I am pretty sure it's a driver problem.

Additionally I read somewhere, I should perform "sfc /scannow". It found some corrupted files which it could not repair. But I also read somewhere else that one should not worry about that too much. So, I'm lost here as well.

Now some hard facts:

  • Lenovo Thinkpad T440p
  • Windows 10

Any help is very much appreciated.

Thanks a lot in advance.

Update: Here is the Link with

  • original minidump dmp files from Windows
  • output files from BlueScreenView
  • CBS file connected to sfc scannow
  • Analysis from WinDbg for one dmp file
windows-10
bsod
ntoskrnl.exe
asked on Super User Jun 30, 2016 by El Cattivo • edited Jul 31, 2016 by El Cattivo

1 Answer

0

Looking at the dump (!irp command with value from parameter 4 (ffffe001dbbf8c10)) shows that the Synaptic Touchpad driver causes the crash:

7: kd> !irp ffffe001dbbf8c10
Irp is active with 9 stacks 6 is current (= 0xffffe001dbbf8e48)
 No Mdl: No System Buffer: Thread 00000000:  Irp stack trace.  Pending has been returned
     cmd  flg cl Device   File     Completion-Context
 [N/A(0), N/A(0)]
            0  0 00000000 00000000 00000000-00000000    

            Args: 00000000 00000000 00000000 00000000
 [N/A(0), N/A(0)]
            0  0 00000000 00000000 00000000-00000000    

            Args: 00000000 00000000 00000000 00000000
 [N/A(0), N/A(0)]
            0  0 00000000 00000000 00000000-00000000    

            Args: 00000000 00000000 00000000 00000000
 [N/A(0), N/A(0)]
            0  0 00000000 00000000 00000000-00000000    

            Args: 00000000 00000000 00000000 00000000
 [IRP_MJ_POWER(16), IRP_MN_WAIT_WAKE(0)]
            0  0 ffffe001d63a4640 00000000 fffff801a3d41ec0-00000000    
           \Driver\ACPI i8042prt!I8xPowerUpToD0Complete
            Args: 00000000 00000000 00000000 00000002
>[IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
            0 e1 ffffe001d87de9f0 00000000 00000000-00000000    pending
           \Driver\i8042prt
            Args: 00051100 00000001 00000001 00000002
 [IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
            0 e1 ffffe001d76b2e20 00000000 fffff801a3e11060-00000000 Success Error Cancel pending
          *** WARNING: Unable to verify timestamp for SynTP.sys
*** ERROR: Module load completed but symbols could not be loaded for SynTP.sys
 \Driver\SynTP  kbdclass!KeyboardClassPowerComplete
            Args: 00051100 00000001 00000001 00000002
 [IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
            0 e1 ffffe001d8619cc0 00000000 fffff8023a51d418-ffffe001d5af5940 Success Error Cancel pending
           \Driver\kbdclass nt!PopRequestCompletion
            Args: 00051100 00000001 00000001 00000002
 [N/A(0), N/A(0)]

Image path: \SystemRoot\system32\DRIVERS\SynTP.sys
Image name: SynTP.sys
Timestamp:        Fri Apr 15 03:46:43 2016 

The driver is relatively new April 2016), try to find a newer driver or install older drivers and disable the automatic driver update.

answered on Super User Jul 31, 2016 by magicandre1981 • edited Mar 20, 2017 by Community

User contributions licensed under CC BY-SA 3.0