Discussion:
problem with DbgPrint in storport miniport
(too old to reply)
hitesh
2010-08-13 11:13:07 UTC
Permalink
hi all,
i am writing storport miniport driver.
i am using function DebugPrint to print the message.
i have enabled all messages but still it is not printing.
if i use "DebugView" software and select option "Enable Verbose Kernel
Output" in target machine then it is also printing on my host
machine's WinDbg.
does anybody have any idea what it is doing when we enable the option
"Enable Kernel Verbose" ?

or how to print the message in WinDbg without using "DebugView"?

thanks,
Hitesh
Maxim S. Shatskih
2010-08-13 11:37:03 UTC
Permalink
Google for "Debug Print Filter"
--
Maxim S. Shatskih
Windows DDK MVP
***@storagecraft.com
http://www.storagecraft.com
Post by hitesh
hi all,
i am writing storport miniport driver.
i am using function DebugPrint to print the message.
i have enabled all messages but still it is not printing.
if i use "DebugView" software and select option "Enable Verbose Kernel
Output" in target machine then it is also printing on my host
machine's WinDbg.
does anybody have any idea what it is doing when we enable the option
"Enable Kernel Verbose" ?
or how to print the message in WinDbg without using "DebugView"?
thanks,
Hitesh
eagersh
2010-08-16 19:40:41 UTC
Permalink
Post by hitesh
hi all,
i am writing storport miniport driver.
i am using function DebugPrint to print the message.
i have enabled all messages but still it is not printing.
if i use "DebugView" software and select option "Enable Verbose Kernel
Output" in target machine then it is also printing on my host
machine's WinDbg.
does anybody have any idea what it is doing when we enable the option
"Enable Kernel Verbose" ?
or how to print the message in WinDbg without using "DebugView"?
thanks,
Hitesh
You need enable debug tracing in StorPort driver. Run in WinDbg
following command:
ed nt!kd_STORMINIPORT_mask 0xf

Igor Sharovar

Loading...