irp

  • Thread starter Thread starter nadir
  • Start date Start date
N

nadir

when I shutdown my windows xp a blu screen appears and I
get this error message
multiple_irp_complete_requests
I use a Trust 4 port compact UBS hub.
kan it be related to this hub?
 
-----Original Message-----
when I shutdown my windows xp a blu screen appears and I
get this error message
multiple_irp_complete_requests
I use a Trust 4 port compact UBS hub.
kan it be related to this hub?
.
Cause
A driver has called IoCompleteRequest to ask that an IRP
be completed, but the packet has already been completed.

Resolving the Problem
This is a tough bug to find because the simplest case a
driver that attempted to complete its own packet twice is
usually not the source of the problem. More likely, two
separate drivers each believe that they own the packet,
and each has attempted to complete it. The first request
succeeds, and the second fails, resulting in this bug
check.

Tracking down which drivers in the system caused the
error is difficult, because the trail of the first driver
has been covered by the second. However, the driver stack
for the current request can be found by examining the
device object fields in each of the stack locations.

It sounds like your USB hub may be the cause.
 
when I shutdown my windows xp a blu screen appears and I
get this error message
multiple_irp_complete_requests
I use a Trust 4 port compact UBS hub.
kan it be related to this hub?


The following article is written for Win2000 but the error messages carry
over to XP as well. It appears that this error is more of a nuisance error:
Notice that a process that has already completed is being requested again
by a driver. The article mentions one driver that is known to cause this
and the recommended "fix" is to update drivers. There may be other drivers
that this applies to since this article was released. That's all I could
find out about this... Here's the link for the article:

"Stop 0x00000044 Multiple_IRP_Complete_Requests" Error Message During a Shutdown or Standby Operation
http://support.microsoft.com/?kbid=294876
 
Back
Top