PC Review


Reply
Thread Tools Rate Thread

driver path exerciser test in hct-help!!!!!!!

 
 
zyx
Guest
Posts: n/a
 
      11th Apr 2007
Hi,

In driver path exerciser test I get a wdm error 20f.In documentation
the following is given.

A Power IRP has an invalid status. (Any Power IRP must have its status
initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)

But previously I enabled driver verifier and tested my driver.when I
tested it didnt give me any I/O verification errror.I enabled both i/o
verification and enhanced i/o verification option.even though I didnt
get this error.But now its showing in hardware compatinility test.
Thanks in advance

 
Reply With Quote
 
 
 
 
Don Burn
Guest
Posts: n/a
 
      11th Apr 2007
Device path exerciser has hooks to work directly with driver verifier. The
tool is available through the DDK/WDK, you should run it standalone and
debug your driver.


--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr
Remove StopSpam to reply

"zyx" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
>
> In driver path exerciser test I get a wdm error 20f.In documentation
> the following is given.
>
> A Power IRP has an invalid status. (Any Power IRP must have its status
> initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)
>
> But previously I enabled driver verifier and tested my driver.when I
> tested it didnt give me any I/O verification errror.I enabled both i/o
> verification and enhanced i/o verification option.even though I didnt
> get this error.But now its showing in hardware compatinility test.
> Thanks in advance
>



 
Reply With Quote
 
zyx
Guest
Posts: n/a
 
      12th Apr 2007
Hi,
I am not getting you.sorry I am new to this.what do you mean by
standalone.previously I ran the driver with verifier.exe that comes
along with OS.In that as I said before I enabled both the I/O
verification and enhanced I/O verfication.But I didnt get this error.
I am not sure whether I am testing my driver in a right way.steps I
did
1.Installed hct with default options.
2.I installed my driver,ie I have connected the hardware to the
system.
3.I just selected only driver path exerciser ans started the test.
observations:
Initially I got a blue screen .Dump shows that it crashes in
omci.sys.I am not sure what this means.Automatically my system
rebooted and I got the wdm error 20f in my driver.
Thanks in advance.

On Apr 11, 7:47 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
> Device path exerciser has hooks to work directly with driver verifier. The
> tool is available through the DDK/WDK, you should run it standalone and
> debug your driver.
>
> --
> Don Burn (MVP, Windows DDK)
> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> Website:http://www.windrvr.com
> Blog:http://msmvps.com/blogs/WinDrvr
> Remove StopSpam to reply
>
> "zyx" <vidhya_542...@yahoo.co.in> wrote in message
>
> news:(E-Mail Removed)...
>
>
>
> > Hi,

>
> > In driver path exerciser test I get a wdm error 20f.In documentation
> > the following is given.

>
> > A Power IRP has an invalid status. (Any Power IRP must have its status
> > initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)

>
> > But previously I enabled driver verifier and tested my driver.when I
> > tested it didnt give me any I/O verification errror.I enabled both i/o
> > verification and enhanced i/o verification option.even though I didnt
> > get this error.But now its showing in hardware compatinility test.
> > Thanks in advance- Hide quoted text -

>
> - Show quoted text -



 
Reply With Quote
 
Don Burn
Guest
Posts: n/a
 
      12th Apr 2007
Driver Verifier is for the most part a kernel support routine cheker, so if
your driver does not run a certain path it does not check that path.
Device Path exerciser has specific hooks into the verifier through
undocumented interfaces, this is mentioned in the documentation for device
path exerciser that comes with the DDK. So you have a bug in your driver,
and you need to track it down.

Now, you may find that running the device path exerciser standalone (rather
than in the HCT's) will make it easier to reproduce and track down the bug.
Under any circumstances, I recomend the documentation for device path
exerciser that is in the directory with the tool provided with the DDK.



--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr
Remove StopSpam to reply

"zyx" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
> I am not getting you.sorry I am new to this.what do you mean by
> standalone.previously I ran the driver with verifier.exe that comes
> along with OS.In that as I said before I enabled both the I/O
> verification and enhanced I/O verfication.But I didnt get this error.
> I am not sure whether I am testing my driver in a right way.steps I
> did
> 1.Installed hct with default options.
> 2.I installed my driver,ie I have connected the hardware to the
> system.
> 3.I just selected only driver path exerciser ans started the test.
> observations:
> Initially I got a blue screen .Dump shows that it crashes in
> omci.sys.I am not sure what this means.Automatically my system
> rebooted and I got the wdm error 20f in my driver.
> Thanks in advance.
>
> On Apr 11, 7:47 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
>> Device path exerciser has hooks to work directly with driver verifier.
>> The
>> tool is available through the DDK/WDK, you should run it standalone and
>> debug your driver.
>>
>> --
>> Don Burn (MVP, Windows DDK)
>> Windows 2k/XP/2k3 Filesystem and Driver Consulting
>> Website:http://www.windrvr.com
>> Blog:http://msmvps.com/blogs/WinDrvr
>> Remove StopSpam to reply
>>
>> "zyx" <vidhya_542...@yahoo.co.in> wrote in message
>>
>> news:(E-Mail Removed)...
>>
>>
>>
>> > Hi,

>>
>> > In driver path exerciser test I get a wdm error 20f.In documentation
>> > the following is given.

>>
>> > A Power IRP has an invalid status. (Any Power IRP must have its status
>> > initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)

>>
>> > But previously I enabled driver verifier and tested my driver.when I
>> > tested it didnt give me any I/O verification errror.I enabled both i/o
>> > verification and enhanced i/o verification option.even though I didnt
>> > get this error.But now its showing in hardware compatinility test.
>> > Thanks in advance- Hide quoted text -

>>
>> - Show quoted text -

>
>



 
Reply With Quote
 
zyx
Guest
Posts: n/a
 
      12th Apr 2007
Hi,
Thanks for the info.I am getting a wdm I/O verification error of my
driver.20f.

wdm error dont create a dump.Is there a way to set in any system
properties so that we get dump.bug checks create dump.But this i/o
verfication wdm errors doesnt create dump!!!!!!! or does it create in
some other place.



On Apr 12, 4:43 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
> Driver Verifier is for the most part a kernel support routine cheker, so if
> your driver does not run a certain path it does not check that path.
> Device Path exerciser has specific hooks into the verifier through
> undocumented interfaces, this is mentioned in the documentation for device
> path exerciser that comes with the DDK. So you have a bug in your driver,
> and you need to track it down.
>
> Now, you may find that running the device path exerciser standalone (rather
> than in the HCT's) will make it easier to reproduce and track down the bug.
> Under any circumstances, I recomend the documentation for device path
> exerciser that is in the directory with the tool provided with the DDK.
>
> --
> Don Burn (MVP, Windows DDK)
> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> Website:http://www.windrvr.com
> Blog:http://msmvps.com/blogs/WinDrvr
> Remove StopSpam to reply
>
> "zyx" <vidhya_542...@yahoo.co.in> wrote in message
>
> news:(E-Mail Removed)...
>
>
>
> > Hi,
> > I am not getting you.sorry I am new to this.what do you mean by
> > standalone.previously I ran the driver with verifier.exe that comes
> > along with OS.In that as I said before I enabled both the I/O
> > verification and enhanced I/O verfication.But I didnt get this error.
> > I am not sure whether I am testing my driver in a right way.steps I
> > did
> > 1.Installed hct with default options.
> > 2.I installed my driver,ie I have connected the hardware to the
> > system.
> > 3.I just selected only driver path exerciser ans started the test.
> > observations:
> > Initially I got a blue screen .Dump shows that it crashes in
> > omci.sys.I am not sure what this means.Automatically my system
> > rebooted and I got the wdm error 20f in my driver.
> > Thanks in advance.

>
> > On Apr 11, 7:47 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
> >> Device path exerciser has hooks to work directly with driver verifier.
> >> The
> >> tool is available through the DDK/WDK, you should run it standalone and
> >> debug your driver.

>
> >> --
> >> Don Burn (MVP, Windows DDK)
> >> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> >> Website:http://www.windrvr.com
> >> Blog:http://msmvps.com/blogs/WinDrvr
> >> Remove StopSpam to reply

>
> >> "zyx" <vidhya_542...@yahoo.co.in> wrote in message

>
> >>news:(E-Mail Removed)...

>
> >> > Hi,

>
> >> > In driver path exerciser test I get a wdm error 20f.In documentation
> >> > the following is given.

>
> >> > A Power IRP has an invalid status. (Any Power IRP must have its status
> >> > initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)

>
> >> > But previously I enabled driver verifier and tested my driver.when I
> >> > tested it didnt give me any I/O verification errror.I enabled both i/o
> >> > verification and enhanced i/o verification option.even though I didnt
> >> > get this error.But now its showing in hardware compatinility test.
> >> > Thanks in advance- Hide quoted text -

>
> >> - Show quoted text -- Hide quoted text -

>
> - Show quoted text -



 
Reply With Quote
 
zyx
Guest
Posts: n/a
 
      12th Apr 2007
Hi,
I have got my bug fixed.when I run driver path exerciser test I get
bug check in omci.sys.Think so its a os component.can I just neglect
it.could you please tell ne if there are other test to test my
driver.I am sure which to run
Thanks in advance

On Apr 12, 6:26 pm, "zyx" <vidhya_542...@yahoo.co.in> wrote:
> Hi,
> Thanks for the info.I am getting a wdm I/O verification error of my
> driver.20f.
>
> wdm error dont create a dump.Is there a way to set in any system
> properties so that we get dump.bug checks create dump.But this i/o
> verfication wdm errors doesnt create dump!!!!!!! or does it create in
> some other place.
>
> On Apr 12, 4:43 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
>
>
>
> > Driver Verifier is for the most part a kernel support routine cheker, so if
> > your driver does not run a certain path it does not check that path.
> > Device Path exerciser has specific hooks into the verifier through
> > undocumented interfaces, this is mentioned in the documentation for device
> > path exerciser that comes with the DDK. So you have a bug in your driver,
> > and you need to track it down.

>
> > Now, you may find that running the device path exerciser standalone (rather
> > than in the HCT's) will make it easier to reproduce and track down the bug.
> > Under any circumstances, I recomend the documentation for device path
> > exerciser that is in the directory with the tool provided with the DDK.

>
> > --
> > Don Burn (MVP, Windows DDK)
> > Windows 2k/XP/2k3 Filesystem and Driver Consulting
> > Website:http://www.windrvr.com
> > Blog:http://msmvps.com/blogs/WinDrvr
> > Remove StopSpam to reply

>
> > "zyx" <vidhya_542...@yahoo.co.in> wrote in message

>
> >news:(E-Mail Removed)...

>
> > > Hi,
> > > I am not getting you.sorry I am new to this.what do you mean by
> > > standalone.previously I ran the driver with verifier.exe that comes
> > > along with OS.In that as I said before I enabled both the I/O
> > > verification and enhanced I/O verfication.But I didnt get this error.
> > > I am not sure whether I am testing my driver in a right way.steps I
> > > did
> > > 1.Installed hct with default options.
> > > 2.I installed my driver,ie I have connected the hardware to the
> > > system.
> > > 3.I just selected only driver path exerciser ans started the test.
> > > observations:
> > > Initially I got a blue screen .Dump shows that it crashes in
> > > omci.sys.I am not sure what this means.Automatically my system
> > > rebooted and I got the wdm error 20f in my driver.
> > > Thanks in advance.

>
> > > On Apr 11, 7:47 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
> > >> Device path exerciser has hooks to work directly with driver verifier.
> > >> The
> > >> tool is available through the DDK/WDK, you should run it standalone and
> > >> debug your driver.

>
> > >> --
> > >> Don Burn (MVP, Windows DDK)
> > >> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> > >> Website:http://www.windrvr.com
> > >> Blog:http://msmvps.com/blogs/WinDrvr
> > >> Remove StopSpam to reply

>
> > >> "zyx" <vidhya_542...@yahoo.co.in> wrote in message

>
> > >>news:(E-Mail Removed)...

>
> > >> > Hi,

>
> > >> > In driver path exerciser test I get a wdm error 20f.In documentation
> > >> > the following is given.

>
> > >> > A Power IRP has an invalid status. (Any Power IRP must have its status
> > >> > initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)

>
> > >> > But previously I enabled driver verifier and tested my driver.when I
> > >> > tested it didnt give me any I/O verification errror.I enabled both i/o
> > >> > verification and enhanced i/o verification option.even though I didnt
> > >> > get this error.But now its showing in hardware compatinility test.
> > >> > Thanks in advance- Hide quoted text -

>
> > >> - Show quoted text -- Hide quoted text -

>
> > - Show quoted text -- Hide quoted text -

>
> - Show quoted text -



 
Reply With Quote
 
Chuck
Guest
Posts: n/a
 
      20th May 2007
Not exactly!
You might want to read the following before you make any rash decisions!

http://www.file.net/process/omci.sys.html


"zyx" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
> I have got my bug fixed.when I run driver path exerciser test I get
> bug check in omci.sys.Think so its a os component.can I just neglect
> it.could you please tell ne if there are other test to test my
> driver.I am sure which to run
> Thanks in advance
>
> On Apr 12, 6:26 pm, "zyx" <vidhya_542...@yahoo.co.in> wrote:
> > Hi,
> > Thanks for the info.I am getting a wdm I/O verification error of my
> > driver.20f.
> >
> > wdm error dont create a dump.Is there a way to set in any system
> > properties so that we get dump.bug checks create dump.But this i/o
> > verfication wdm errors doesnt create dump!!!!!!! or does it create in
> > some other place.
> >
> > On Apr 12, 4:43 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
> >
> >
> >
> > > Driver Verifier is for the most part a kernel support routine cheker,

so if
> > > your driver does not run a certain path it does not check that path.
> > > Device Path exerciser has specific hooks into the verifier through
> > > undocumented interfaces, this is mentioned in the documentation for

device
> > > path exerciser that comes with the DDK. So you have a bug in your

driver,
> > > and you need to track it down.

> >
> > > Now, you may find that running the device path exerciser standalone

(rather
> > > than in the HCT's) will make it easier to reproduce and track down the

bug.
> > > Under any circumstances, I recomend the documentation for device path
> > > exerciser that is in the directory with the tool provided with the

DDK.
> >
> > > --
> > > Don Burn (MVP, Windows DDK)
> > > Windows 2k/XP/2k3 Filesystem and Driver Consulting
> > > Website:http://www.windrvr.com
> > > Blog:http://msmvps.com/blogs/WinDrvr
> > > Remove StopSpam to reply

> >
> > > "zyx" <vidhya_542...@yahoo.co.in> wrote in message

> >
> > >news:(E-Mail Removed)...

> >
> > > > Hi,
> > > > I am not getting you.sorry I am new to this.what do you mean by
> > > > standalone.previously I ran the driver with verifier.exe that comes
> > > > along with OS.In that as I said before I enabled both the I/O
> > > > verification and enhanced I/O verfication.But I didnt get this

error.
> > > > I am not sure whether I am testing my driver in a right way.steps I
> > > > did
> > > > 1.Installed hct with default options.
> > > > 2.I installed my driver,ie I have connected the hardware to the
> > > > system.
> > > > 3.I just selected only driver path exerciser ans started the test.
> > > > observations:
> > > > Initially I got a blue screen .Dump shows that it crashes in
> > > > omci.sys.I am not sure what this means.Automatically my system
> > > > rebooted and I got the wdm error 20f in my driver.
> > > > Thanks in advance.

> >
> > > > On Apr 11, 7:47 pm, "Don Burn" <b...@stopspam.windrvr.com> wrote:
> > > >> Device path exerciser has hooks to work directly with driver

verifier.
> > > >> The
> > > >> tool is available through the DDK/WDK, you should run it standalone

and
> > > >> debug your driver.

> >
> > > >> --
> > > >> Don Burn (MVP, Windows DDK)
> > > >> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> > > >> Website:http://www.windrvr.com
> > > >> Blog:http://msmvps.com/blogs/WinDrvr
> > > >> Remove StopSpam to reply

> >
> > > >> "zyx" <vidhya_542...@yahoo.co.in> wrote in message

> >
> > > >>news:(E-Mail Removed)...

> >
> > > >> > Hi,

> >
> > > >> > In driver path exerciser test I get a wdm error 20f.In

documentation
> > > >> > the following is given.

> >
> > > >> > A Power IRP has an invalid status. (Any Power IRP must have its

status
> > > >> > initialized to STATUS_NOT_SUPPORTED.) (IRP specified.)

> >
> > > >> > But previously I enabled driver verifier and tested my

driver.when I
> > > >> > tested it didnt give me any I/O verification errror.I enabled

both i/o
> > > >> > verification and enhanced i/o verification option.even though I

didnt
> > > >> > get this error.But now its showing in hardware compatinility

test.
> > > >> > Thanks in advance- Hide quoted text -

> >
> > > >> - Show quoted text -- Hide quoted text -

> >
> > > - Show quoted text -- Hide quoted text -

> >
> > - Show quoted text -

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Running Device Path Exerciser test on DTM takes forever =?Utf-8?B?aHVkaW5p?= Windows XP Drivers 0 13th Feb 2007 12:51 PM
Monitor test - missing Device Path Exerciser test Kimtt Windows XP Logo 0 8th Feb 2006 03:30 AM
Problem in Device Path Exerciser Test. Rizvi Windows XP Logo 5 24th Feb 2004 12:56 PM
System reboots continuosly on running Driver verfier/Device Path Exerciser test M.S Windows XP Logo 1 3rd Feb 2004 01:40 PM
Device path exerciser does not show up in test manager on some PCs alex zlidin Windows XP Logo 6 4th Dec 2003 05:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:42 AM.