Hi All,
Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…on Windows
Vista? Not mentioned on MS site.
I am implementing Selective suspend on Windows Vista.
Thanks
Amit
Hi All,
Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…on Windows
Vista? Not mentioned on MS site.
Thanks
Amit
Output of !analyze -v?
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of amit poona
Sent: Monday, November 26, 2007 11:08 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…
Hi All,
Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…on Windows Vista? Not mentioned on MS site.
Thanks
Amit
— NTDEV 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 have opened a support request (for about 4 months now) for this exact bugcheck which is IMO caused by Vista bug. Anyway, could you post WinDbg analysis as Doron suggested? It can be different scenario with the same bugcheck in your case.
Have you USB rollup (http://support.microsoft.com/kb/941600) installed? If not, install it and try to reproduce a problem.
Best regards,
Michal Vodicka
UPEK, Inc.
[xxxxx@upek.com, http://www.upek.com]
From: xxxxx@lists.osr.com[SMTP:xxxxx@lists.osr.com] on behalf of amit poona[SMTP:xxxxx@gmail.com]
Reply To: Windows System Software Devs Interest List
Sent: Tuesday, November 27, 2007 8:08 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…Hi All,
Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…on Windows Vista? Not mentioned on MS site.
I am implementing Selective suspend on Windows Vista.
Thanks
Amit
— NTDEV 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
Yes I have installed http://support.microsoft.com/kb/941600. My Driver works
fine on Windows XP.
the bugcheck on Vista mentions…
BUGCODE_USB_DRIVER (fe)
USB Driver bugcheck, first parameter is USB bugcheck code.
Arguments:
Arg1: 00000008, USBBUGCODE_RESERVED_USBHUB
Arg2: 00000006, USBHUB_TRAP_FATAL_TIMEOUT
Arg3: 00000005, TimeoutCode: Timeout_PCE_Suspend_Action3 -
PortData->PortSuspendEvent
Arg4: 8cbf6f58, TimeoutContext - PortData
This happens when PoRequestPowerIrp for PowerDeviceD3 does not complete when
system is put into standby for multiple times.
Thanks
Amit
On 11/27/07, Michal Vodicka wrote:
>
> I have opened a support request (for about 4 months now) for this exact
> bugcheck which is IMO caused by Vista bug. Anyway, could you post WinDbg
> analysis as Doron suggested? It can be different scenario with the same
> bugcheck in your case.
>
> Have you USB rollup (http://support.microsoft.com/kb/941600) installed? If
> not, install it and try to reproduce a problem.
>
> Best regards,
>
> Michal Vodicka
> UPEK, Inc.
> [xxxxx@upek.com, http://www.upek.com]
>
> > ----------
> > From: xxxxx@lists.osr.com[
> SMTP:xxxxx@lists.osr.com] on behalf of amit poona[SMTP:
> xxxxx@gmail.com]
> > Reply To: Windows System Software Devs Interest List
> > Sent: Tuesday, November 27, 2007 8:08 AM
> > To: Windows System Software Devs Interest List
> > Subject: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…
> >
> >
> > Hi All,
> >
> > Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…on
> Windows Vista? Not mentioned on MS site.
> >
> > I am implementing Selective suspend on Windows Vista.
> > –
> > Thanks
> > Amit
> > — NTDEV 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
> >
>
> —
> NTDEV 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
>
–
Thanks
Amit
It looks like yet another appearance of the same bug or class of bugs (I already saw D0, D2 and port reset IRPs blocked). It is still under investigation but it seems there is real bug in OS drivers (race conditions as usual).
However, I’d recommend to analyse it carefully because you can have a bug at your side as well. Start with examining all threads blocked in your driver (if any) and continue with revealing the exact order of events (PnP and power IRPs) which lead to this state. If you’re sure the problem isn’t at your side, report it, please. Even if they find a bug, it is necessary to have “business justification” to get a hotfix. More reported cases is better.
Best regards,
Michal Vodicka
UPEK, Inc.
[xxxxx@upek.com, http://www.upek.com]
From: xxxxx@lists.osr.com[SMTP:xxxxx@lists.osr.com] on behalf of amit poona[SMTP:xxxxx@gmail.com]
Reply To: Windows System Software Devs Interest List
Sent: Thursday, November 29, 2007 11:36 AM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…Yes I have installed http:. My Driver works fine on Windows XP.
>
> the bugcheck on Vista mentions…
>
> BUGCODE_USB_DRIVER (fe)
> USB Driver bugcheck, first parameter is USB bugcheck code.
> Arguments:
> Arg1: 00000008, USBBUGCODE_RESERVED_USBHUB
> Arg2: 00000006, USBHUB_TRAP_FATAL_TIMEOUT
> Arg3: 00000005, TimeoutCode: Timeout_PCE_Suspend_Action3 - PortData->PortSuspendEvent
> Arg4: 8cbf6f58, TimeoutContext - PortData
>
> This happens when PoRequestPowerIrp for PowerDeviceD3 does not complete when system is put into standby for multiple times.
>
> Thanks
> Amit
>
> On 11/27/07, Michal Vodicka > wrote:
>
> I have opened a support request (for about 4 months now) for this exact bugcheck which is IMO caused by Vista bug. Anyway, could you post WinDbg analysis as Doron suggested? It can be different scenario with the same bugcheck in your case.
>
> Have you USB rollup (http:) installed? If not, install it and try to reproduce a problem.
>
> Best regards,
>
> Michal Vodicka
> UPEK, Inc.
> [xxxxx@upek.com mailto:xxxxx, http:]
>
> > ----------
> > From: xxxxx@lists.osr.com [SMTP:xxxxx@lists.osr.com mailto:smtp:xxxxx] on behalf of amit poona[SMTP:xxxxx@gmail.com mailto:xxxxx]
> > Reply To: Windows System Software Devs Interest List
> > Sent: Tuesday, November 27, 2007 8:08 AM
> > To: Windows System Software Devs Interest List
> > Subject: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…
> >
> >
> > Hi All,
> >
> > Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…on Windows Vista? Not mentioned on MS site.
> >
> > I am implementing Selective suspend on Windows Vista.
> > –
> > Thanks
> > Amit
> > — NTDEV is sponsored by OSR For our schedule of WDF, WDM, debugging and other seminars visit: http: To unsubscribe, visit the List Server section of OSR Online at http:
> >
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http:
>
> To unsubscribe, visit the List Server section of OSR Online at http:
>
>
>
>
>
> –
> Thanks
> Amit — NTDEV 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
></http:></http:></http:></http:></mailto:xxxxx></mailto:smtp:xxxxx></http:></mailto:xxxxx></http:></http:>
Thanks Michal.
On 11/29/07, Michal Vodicka wrote:
>
> It looks like yet another appearance of the same bug or class of bugs (I
> already saw D0, D2 and port reset IRPs blocked). It is still under
> investigation but it seems there is real bug in OS drivers (race conditions
> as usual).
>
> However, I’d recommend to analyse it carefully because you can have a bug
> at your side as well. Start with examining all threads blocked in your
> driver (if any) and continue with revealing the exact order of events (PnP
> and power IRPs) which lead to this state. If you’re sure the problem isn’t
> at your side, report it, please. Even if they find a bug, it is necessary to
> have “business justification” to get a hotfix. More reported cases is
> better.
>
> Best regards,
>
> Michal Vodicka
> UPEK, Inc.
> [xxxxx@upek.com, http://www.upek.com]
>
> > ----------
> > From: xxxxx@lists.osr.com[
> SMTP:xxxxx@lists.osr.com] on behalf of amit poona[SMTP:
> xxxxx@gmail.com]
> > Reply To: Windows System Software Devs Interest List
> > Sent: Thursday, November 29, 2007 11:36 AM
> > To: Windows System Software Devs Interest List
> > Subject: Re: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…
> >
> > Yes I have installed http:. My Driver
> works fine on Windows XP.
> >
> > the bugcheck on Vista mentions…
> >
> > BUGCODE_USB_DRIVER (fe)
> > USB Driver bugcheck, first parameter is USB bugcheck code.
> > Arguments:
> > Arg1: 00000008, USBBUGCODE_RESERVED_USBHUB
> > Arg2: 00000006, USBHUB_TRAP_FATAL_TIMEOUT
> > Arg3: 00000005, TimeoutCode: Timeout_PCE_Suspend_Action3 -
> PortData->PortSuspendEvent
> > Arg4: 8cbf6f58, TimeoutContext - PortData
> >
> > This happens when PoRequestPowerIrp for PowerDeviceD3 does not complete
> when system is put into standby for multiple times.
> >
> > Thanks
> > Amit
> >
> > On 11/27/07, Michal Vodicka > xxxxx@upek.com>> wrote:
> >
> > I have opened a support request (for about 4 months now) for this
> exact bugcheck which is IMO caused by Vista bug. Anyway, could you post
> WinDbg analysis as Doron suggested? It can be different scenario with the
> same bugcheck in your case.
> >
> > Have you USB rollup (http:)
> installed? If not, install it and try to reproduce a problem.
> >
> > Best regards,
> >
> > Michal Vodicka
> > UPEK, Inc.
> > [xxxxx@upek.com mailto:xxxxx, <
> http://www.upek.com>]
> >
> > > ----------
> > > From: xxxxx@lists.osr.com [
> SMTP:xxxxx@lists.osr.com mailto:smtp:> xxxxx@lists.osr.com>] on behalf of amit poona[SMTP:
> xxxxx@gmail.com mailto:xxxxx]
> > > Reply To: Windows System Software Devs Interest List
> > > Sent: Tuesday, November 27, 2007 8:08 AM
> > > To: Windows System Software Devs Interest List
> > > Subject: [ntdev] BUGCODE_USB_DRIVER (FE), 0x8, 0x6, 0x5,…
> > >
> > >
> > > Hi All,
> > >
> > > Does any one know about BUGCODE_USB_DRIVER (FE), 0x8, 0x6,
> 0x5,…on Windows Vista? Not mentioned on MS site.
> > >
> > > I am implementing Selective suspend on Windows Vista.
> > > –
> > > Thanks
> > > Amit
> > > — NTDEV is sponsored by OSR For our schedule of WDF, WDM,
> debugging and other seminars visit: http: To
> unsubscribe, visit the List Server section of OSR Online at <
> http://www.osronline.com/page.cfm?name=ListServer>
> > >
> >
> > —
> > NTDEV is sponsored by OSR
> >
> > For our schedule of WDF, WDM, debugging and other seminars visit:
> > http:
> >
> > To unsubscribe, visit the List Server section of OSR Online at <
> http://www.osronline.com/page.cfm?name=ListServer>
> >
> >
> >
> >
> >
> > –
> > Thanks
> > Amit — NTDEV 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
> >
>
> —
> NTDEV 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
>
–
Thanks
Amit</http:></http:></mailto:xxxxx></mailto:smtp:></mailto:xxxxx></http:></http:>