Handling IRP_MN_BOGUS.

Hi All,
The Driver verifier is giving a bug check for my WDM function
driver. Teh details are attached at the end of the mail and I really do
not know how to handle this IRP.
Any help is appriciated. My driver does not handle the
IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at
all. Is it a requirement to handle this major function.
My driver is not a WMI data provider and hence this dispatch routine is
not provided.

Any help is highly appriciated.

Thanks in advance,

  • Aj

Here are the details of the crash:

***********************************************************************

* THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT *

* WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *

***********************************************************************

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled
out

a dispatch routine for a required IRP major function
(Irp

= 87996F00 ).

IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS

[ DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000
00000000 00000000 ]

http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&mino
r=0x21f&lang=0x9
http:or=0x21f&lang=0x9></http:>

Just forward it down and you’re gonna be alright.

Calvin Guan (DDK MVP)
Sr. Staff Engineer
NetXtreme Vista/LH Server Miniport
Broadcom Corporation


From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 5:15 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
??? The Driver verifier is giving a bug check for my WDM function driver. Teh details are attached at the end of the mail and I really do not know how to handle this IRP.
Any help is appriciated. My driver does not handle the IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at all. Is it a requirement to handle this major function.
My driver is not a?WMI data provider and hence this dispatch routine is not provided.
?
Any help is highly appriciated.
?
Thanks in advance,

  • Aj
    ?
    Here are the details of the crash:
    ?
    ***********************************************************************
    * THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT??? *
    * WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *
    ***********************************************************************

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled out
??? a dispatch routine for a required IRP major function (Irp
??? = 87996F00 ).
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000 00000000 00000000]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&minor=0x21f&lang=0x9
?


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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

Yes, as a pnp driver you must handle pnp/power/wmi even if you don’t do anything with them. Have you considered using KMDF to write your driver instead of using WDM ?Since it appears you are starting from scratch, there is no conversion issue and KMDF will make all of these problems go away and let you focus on the problem you are trying to solve vs the requirements of the OS to have your driver load and run properly.

d

From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 5:15 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
??? The Driver verifier is giving a bug check for my WDM function driver. Teh details are attached at the end of the mail and I really do not know how to handle this IRP.
Any help is appriciated. My driver does not handle the IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at all. Is it a requirement to handle this major function.
My driver is not a?WMI data provider and hence this dispatch routine is not provided.
?
Any help is highly appriciated.
?
Thanks in advance,

  • Aj
    ?
    Here are the details of the crash:
    ?
    ***********************************************************************
    * THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT??? *
    * WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *
    ***********************************************************************

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled out
??? a dispatch routine for a required IRP major function (Irp
??? = 87996F00 ).
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000 00000000 00000000]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&minor=0x21f&lang=0x9
?


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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

I’m sure you’re not required to support the WMI irp. My best guess is that your DRIVER_OBJECT has been corrupted in the vicinity of its dispatch table.

One thing I’d try is dumping the driver object, find the address of the dispatch table, and do a dds on that table. Or some other dump, the idea being that the corrupted entry may be followed by other data or may in itself give some idea what the corrupting source is.

Another would be to break on DriverEntry, find the address of this entry [ntddk.h or wdm.h give the indices], and set a write access breakpoint on it [problem is that the corruption could happen on any of the 4 bytes, and the size of the write is also unknown, which is why I’d look at the corrupting values first]. Then run until that breakpoint gets hit [if the bugcheck comes first, then it was probably the wrong breakpoint]. Of course, if the value at DriverEntry is the same as what you saw in the bugcheck, then my whole initial guess is bogus.

Guesses do have that problem…

My bad- I was thinking non-WDM here.

Thanks Calvin. Appriciate your help.

  • Aj

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Calvin (Hao) Guan
Sent: Wednesday, November 29, 2006 5:42 PM
To: Windows System Software Devs Interest List
Subject: RE: [ntdev] Handling IRP_MN_BOGUS.

Just forward it down and you’re gonna be alright.

Calvin Guan (DDK MVP)
Sr. Staff Engineer
NetXtreme Vista/LH Server Miniport
Broadcom Corporation


From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 5:15 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
??? The Driver verifier is giving a bug check for my WDM function driver. Teh details are attached at the end of the mail and I really do not know how to handle this IRP.
Any help is appriciated. My driver does not handle the IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at all. Is it a requirement to handle this major function.
My driver is not a?WMI data provider and hence this dispatch routine is not provided.
?
Any help is highly appriciated.
?
Thanks in advance,

  • Aj
    ?
    Here are the details of the crash:
    ?
    ***********************************************************************
    * THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT??? *
    * WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *
    ***********************************************************************

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled out
??? a dispatch routine for a required IRP major function (Irp
??? = 87996F00 ).
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000 00000000 00000000]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&minor=0x21f&lang=0x9
?


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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

Hi Doron,
This driver is already done and is going in maintenance phase. Our team is trying to get it WHQLed certified and we banged in to this issue. The next driver that I write will be in KMDF.

Thanks for you help,

  • Aj

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Doron Holan
Sent: Wednesday, November 29, 2006 5:47 PM
To: Windows System Software Devs Interest List
Subject: RE: [ntdev] Handling IRP_MN_BOGUS.

Yes, as a pnp driver you must handle pnp/power/wmi even if you don’t do anything with them. Have you considered using KMDF to write your driver instead of using WDM ?Since it appears you are starting from scratch, there is no conversion issue and KMDF will make all of these problems go away and let you focus on the problem you are trying to solve vs the requirements of the OS to have your driver load and run properly.

d

From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 5:15 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
??? The Driver verifier is giving a bug check for my WDM function driver. Teh details are attached at the end of the mail and I really do not know how to handle this IRP.
Any help is appriciated. My driver does not handle the IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at all. Is it a requirement to handle this major function.
My driver is not a?WMI data provider and hence this dispatch routine is not provided.
?
Any help is highly appriciated.
?
Thanks in advance,

  • Aj
    ?
    Here are the details of the crash:
    ?
    ***********************************************************************
    * THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT??? *
    * WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *
    ***********************************************************************

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled out
??? a dispatch routine for a required IRP major function (Irp
??? = 87996F00 ).
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000 00000000 00000000]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&minor=0x21f&lang=0x9
?


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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

It scares me just a little bit :slight_smile: that you are turning on driver verifier this late in the development cycle, but to each his own

d

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 6:08 PM
To: Windows System Software Devs Interest List
Subject: RE: [ntdev] Handling IRP_MN_BOGUS.

Hi Doron,
This driver is already done and is going in maintenance phase. Our team is trying to get it WHQLed certified and we banged in to this issue. The next driver that I write will be in KMDF.

Thanks for you help,

  • Aj

-----Original Message-----
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Doron Holan
Sent: Wednesday, November 29, 2006 5:47 PM
To: Windows System Software Devs Interest List
Subject: RE: [ntdev] Handling IRP_MN_BOGUS.

Yes, as a pnp driver you must handle pnp/power/wmi even if you don’t do anything with them. Have you considered using KMDF to write your driver instead of using WDM ?Since it appears you are starting from scratch, there is no conversion issue and KMDF will make all of these problems go away and let you focus on the problem you are trying to solve vs the requirements of the OS to have your driver load and run properly.

d

From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 5:15 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
??? The Driver verifier is giving a bug check for my WDM function driver. Teh details are attached at the end of the mail and I really do not know how to handle this IRP.
Any help is appriciated. My driver does not handle the IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at all. Is it a requirement to handle this major function.
My driver is not a?WMI data provider and hence this dispatch routine is not provided.
?
Any help is highly appriciated.
?
Thanks in advance,

  • Aj
    ?
    Here are the details of the crash:
    ?
    ***********************************************************************
    * THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT??? *
    * WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *
    ***********************************************************************

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled out
??? a dispatch routine for a required IRP major function (Irp
??? = 87996F00 ).
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000 00000000 00000000]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&minor=0x21f&lang=0x9
?


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

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

Calvin are you willing to start a conversation by email? I don’t want to
mention the subject in the newsgroup.

“Calvin (Hao) Guan” wrote in message
news:xxxxx@ntdev…

Just forward it down and you’re gonna be alright.

Calvin Guan (DDK MVP)
Sr. Staff Engineer
NetXtreme Vista/LH Server Miniport
Broadcom Corporation

________________________________________
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Ajitabh Saxena
Sent: Wednesday, November 29, 2006 5:15 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
The Driver verifier is giving a bug check for my WDM function driver. Teh
details are attached at the end of the mail and I really do not know how to
handle this IRP.
Any help is appriciated. My driver does not handle the IRP_MJ_SYSTEM_CONTROL
and does not register this dispatch routine at all. Is it a requirement to
handle this major function.
My driver is not a WMI data provider and hence this dispatch routine is not
provided.

Any help is highly appriciated.

Thanks in advance,
- Aj

Here are the details of the crash:


* THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT
WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *


WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled out
a dispatch routine for a required IRP major function (Irp
= 87996F00 ).
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000
00000000 00000000]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&amp;major=0xc9&amp;minor=0x21f&amp;lang=0x9


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

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

Pass these IRPs down blindly.

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Ajitabh Saxena”
To: “Windows System Software Devs Interest List”
Sent: Thursday, November 30, 2006 4:14 AM
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
The Driver verifier is giving a bug check for my WDM function
driver. Teh details are attached at the end of the mail and I really do
not know how to handle this IRP.
Any help is appriciated. My driver does not handle the
IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at
all. Is it a requirement to handle this major function.
My driver is not a WMI data provider and hence this dispatch routine is
not provided.

Any help is highly appriciated.

Thanks in advance,
- Aj

Here are the details of the crash:



* THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT

WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *



WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled
out

a dispatch routine for a required IRP major function
(Irp

= 87996F00 ).

IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS

[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000
00000000 00000000]

http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&amp;major=0xc9&amp;mino
r=0x21f&lang=0x9
http:or=0x21f&lang=0x9>


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

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

When I passed the IRP blindliy to the lower driver the verifier is
giving me the following exception

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xB9F00400] An IRP dispatch handler (
B9F00400 ) has returned a status that is inconsistent
with
the Irp’s IoStatus.Status field. ( Irp = 8B4C8F00 -
Irp->IoStatus.Status = C00000BB - returned = 00000000
)
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[ DevObj=8A674B60, FileObject=00000000, Parameters=8A577B68 00000000
00000000 00000000 ]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&mino
r=0x224&lang=0x9
Break, Ignore, Zap, Remove, Disable all (bizrd)? I

Please let me know what I am missing here.

  • Thanks,
    Aj

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Maxim S.
Shatskih
Sent: Thursday, November 30, 2006 12:16 AM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] Handling IRP_MN_BOGUS.

Pass these IRPs down blindly.

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Ajitabh Saxena”
To: “Windows System Software Devs Interest List”
Sent: Thursday, November 30, 2006 4:14 AM
Subject: [ntdev] Handling IRP_MN_BOGUS.

Hi All,
The Driver verifier is giving a bug check for my WDM function
driver. Teh details are attached at the end of the mail and I really do
not know how to handle this IRP.
Any help is appriciated. My driver does not handle the
IRP_MJ_SYSTEM_CONTROL and does not register this dispatch routine at
all. Is it a requirement to handle this major function.
My driver is not a WMI data provider and hence this dispatch routine is
not provided.

Any help is highly appriciated.

Thanks in advance,
- Aj

Here are the details of the crash:



* THIS VALIDATION BUG IS FATAL AND WILL CAUSE THE VERIFIER TO HALT

WINDOWS (BUGCHECK) WHEN THE MACHINE IS NOT UNDER A KERNEL DEBUGGER! *



WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xBA496C05] This driver has not filled
out

a dispatch routine for a required IRP major function
(Irp

= 87996F00 ).

IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS

[DevObj=867C72A8, FileObject=00000000, Parameters=86995710 00000000
00000000 00000000]

http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&amp;major=0xc9&amp;mino
r=0x21f&lang=0x9
http:or=0x21f&lang=0x9>


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

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


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

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

Ajitabh Saxena wrote:

When I passed the IRP blindliy to the lower driver the verifier is
giving me the following exception

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xB9F00400] An IRP dispatch handler (
B9F00400 ) has returned a status that is inconsistent
with
the Irp’s IoStatus.Status field. ( Irp = 8B4C8F00 -
Irp->IoStatus.Status = C00000BB - returned = 00000000
)
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[ DevObj=8A674B60, FileObject=00000000, Parameters=8A577B68 00000000
00000000 00000000 ]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&mino
r=0x224&lang=0x9
Break, Ignore, Zap, Remove, Disable all (bizrd)? I

Please let me know what I am missing here.

Did you do this:

IoCallDriver( lowerdriver, Irp );
return STATUS_SUCCESS;

or did you do this:

return IoCallDriver( lowerdriver, Irp );

The latter should be correct.


Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.

Thanks Tim.
It fixed the issue.

  • Aj

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Tim Roberts
Sent: Thursday, November 30, 2006 12:40 PM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] Handling IRP_MN_BOGUS.

Ajitabh Saxena wrote:

When I passed the IRP blindliy to the lower driver the verifier is
giving me the following exception

WDM DRIVER ERROR: [bcmWDmpc.sys @ 0xB9F00400] An IRP dispatch handler
(
B9F00400 ) has returned a status that is
inconsistent with
the Irp’s IoStatus.Status field. ( Irp = 8B4C8F00 -
Irp->IoStatus.Status = C00000BB - returned =
00000000
)
IRP_MJ_SYSTEM_CONTROL.IRP_MN_BOGUS
[ DevObj=8A674B60, FileObject=00000000, Parameters=8A577B68 00000000
00000000 00000000 ]
http://www.microsoft.com/hwdq/bc/default.asp?os=5.1.2600&major=0xc9&mi
no
r=0x224&lang=0x9
Break, Ignore, Zap, Remove, Disable all (bizrd)? I

Please let me know what I am missing here.

Did you do this:

IoCallDriver( lowerdriver, Irp );
return STATUS_SUCCESS;

or did you do this:

return IoCallDriver( lowerdriver, Irp );

The latter should be correct.


Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

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