[OSR-DETECTED-SPAM] RE: intelide.pdb not on MS public symbol server?

Those errors are probably normal. Many 3rd party drivers don’t have pdb’s
on http://msdl.microsoft.com/download, and spldr does not.

Good luck,

mm

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@msn.com
Sent: Sunday, February 27, 2011 3:02 PM
To: Kernel Debugging Interest List
Subject: [windbg] intelide.pdb not on MS public symbol server?

Hi, I am new to driver development. I am trying to learn using windbg. I
installed win 7 32 free on VMware Player. I am using an example from DDK
that can be found in src\general\ioctl\kmdf. I want to set a breakpoint at
the Driver Entry. I set my symbol path as
SRV*C:\WinDDK\7600.16385.0\symbol*http://msdl.microsoft.com/download/symbols
; C:\WinDDK\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386.
But, I can’t set the breakpoint because I get the message that correct
symbola aren’t loaded. I used the !sym noisy and .reload /f and found
somethnig interesting

DBGHELP:
c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\intel
ide.pdb - file not found
DBGHELP:
c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\sys\i
ntelide.pdb - file not found
DBGHELP:
c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\symbo
ls\sys\intelide.pdb - file not found
DBGHELP: intelide.pdb - file not found
*** ERROR: Module load completed but symbols could not be loaded for
intelide.sys

DBGHELP:
c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\spldr
.pdb - file not found
DBGHELP:
c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\sys\s
pldr.pdb - file not found
DBGHELP:
c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\symbo
ls\sys\spldr.pdb - file not found
DBGHELP: spldr.pdb - file not found
*** ERROR: Module load completed but symbols could not be loaded for
spldr.sys

How to solve the problem? Thank you all very much.


WINDBG is sponsored by OSR

For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars

To unsubscribe, visit the List Server section of OSR Online at
http://www.osronline.com/page.cfm?name=ListServer

>I want to set a breakpoint at the Driver Entry. …But, I can’t set the

breakpoint because I get the message that correct symbola >aren’t loaded.

Symbols can’t be loaded until the module you’re debugging is loaded on the
target machine, so that’s probably your issue. If you want to set a
breakpoint on a module before it’s loaded you can set an “unresolved
breakpoint” with bu:

bu mydriver!driverentry

-scott


Scott Noone
Consulting Associate and Chief System Problem Analyst
OSR Open Systems Resources, Inc.
http://www.osronline.com

Yes, that solved my problem. Thank you Scott very much. I have lost 2 days trying to solve the problem, but without success. Thank you very much Scott.