PC Review
Forums
Newsgroups
Windows Vista
Windows Vista General Discussion
CPU peaks/Mouse Lag in 5384.4
Forums
Newsgroups
Windows Vista
Windows Vista General Discussion
CPU peaks/Mouse Lag in 5384.4
![]() |
CPU peaks/Mouse Lag in 5384.4 |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
I have a nasty problem in 5381 and 5384.4. My CPU peaks every other second,
resulting in a temporary systom halt (cursor stops, sound interrupts, hard drive pauses...). This happenned to me in previous builds only when installed to SATA drive. In 5381 and 5384, it doesn't matter if I install it on IDE or SATA, the problem is persistent My config: Athlon 64 3000+ Socket 754 Mobo Gigabyte K8VT800 1,5 GB RAM DDR IDE and SATA drives (non-RAID) GeForce 6600 AGP Onboard Realtek AC97 Any ideas? TIA |
|
|
|
#2 |
|
Guest
Posts: n/a
|
Have you updated the video card drivers? Could be it.
-- Andre Windows Connected | http://www.windowsconnected.com Extended64 | http://www.extended64.com Blog | http://www.extended64.com/blogs/andre http://spaces.msn.com/members/adacosta "Ji?? Fiala" <jiri.fiala@stereovideo.cz> wrote in message news:%23vjWlACgGHA.3860@TK2MSFTNGP02.phx.gbl... >I have a nasty problem in 5381 and 5384.4. My CPU peaks every other second, >resulting in a temporary systom halt (cursor stops, sound interrupts, hard >drive pauses...). This happenned to me in previous builds only when >installed to SATA drive. In 5381 and 5384, it doesn't matter if I install >it on IDE or SATA, the problem is persistent > > My config: > > Athlon 64 3000+ Socket 754 > Mobo Gigabyte K8VT800 > 1,5 GB RAM DDR > IDE and SATA drives (non-RAID) > GeForce 6600 AGP > Onboard Realtek AC97 > > Any ideas? > TIA > |
|
|
|
#3 |
|
Guest
Posts: n/a
|
No, unfortunatelly this is not the case
( I tried the new nvidia betadrivers. Thanks though. "Andre Da Costa [Extended64]" <andred25@hotmail.com> píse v diskusním príspevku news:6F4D676F-15BE-4C47-A9B1-DAFDDAC9B466@microsoft.com... > Have you updated the video card drivers? Could be it. > -- > Andre > Windows Connected | http://www.windowsconnected.com > Extended64 | http://www.extended64.com > Blog | http://www.extended64.com/blogs/andre > http://spaces.msn.com/members/adacosta > "Ji?? Fiala" <jiri.fiala@stereovideo.cz> wrote in message > news:%23vjWlACgGHA.3860@TK2MSFTNGP02.phx.gbl... >>I have a nasty problem in 5381 and 5384.4. My CPU peaks every other >>second, resulting in a temporary systom halt (cursor stops, sound >>interrupts, hard drive pauses...). This happenned to me in previous builds >>only when installed to SATA drive. In 5381 and 5384, it doesn't matter if >>I install it on IDE or SATA, the problem is persistent >> >> My config: >> >> Athlon 64 3000+ Socket 754 >> Mobo Gigabyte K8VT800 >> 1,5 GB RAM DDR >> IDE and SATA drives (non-RAID) >> GeForce 6600 AGP >> Onboard Realtek AC97 >> >> Any ideas? >> TIA >> > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Download SysInternal's Process Explorer Tool, it should help you
to isolate what is causing the processor % spikes. "Jiří Fiala" <jiri.fiala@stereovideo.cz> wrote in message news:%23vjWlACgGHA.3860@TK2MSFTNGP02.phx.gbl... >I have a nasty problem in 5381 and 5384.4. My CPU peaks every other second, >resulting in a temporary systom halt (cursor stops, sound interrupts, hard >drive pauses...). This happenned to me in previous builds only when >installed to SATA drive. In 5381 and 5384, it doesn't matter if I install >it on IDE or SATA, the problem is persistent > > My config: > > Athlon 64 3000+ Socket 754 > Mobo Gigabyte K8VT800 > 1,5 GB RAM DDR > IDE and SATA drives (non-RAID) > GeForce 6600 AGP > Onboard Realtek AC97 > > Any ideas? > TIA > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
Thanks! Its DPCs - Deferred Procedure Calls. Its performance graph looks
like a haircomb with evenly distributed spikes of similar height. Anyone knows what this means? "R. McCarty" <PcEngWork-NoSpam_@mindspring.com> wrote in message news:eW%23kGeCgGHA.4304@TK2MSFTNGP05.phx.gbl... > Download SysInternal's Process Explorer Tool, it should help you > to isolate what is causing the processor % spikes. > > "Jiří Fiala" <jiri.fiala@stereovideo.cz> wrote in message > news:%23vjWlACgGHA.3860@TK2MSFTNGP02.phx.gbl... >>I have a nasty problem in 5381 and 5384.4. My CPU peaks every other >>second, resulting in a temporary systom halt (cursor stops, sound >>interrupts, hard drive pauses...). This happenned to me in previous builds >>only when installed to SATA drive. In 5381 and 5384, it doesn't matter if >>I install it on IDE or SATA, the problem is persistent >> >> My config: >> >> Athlon 64 3000+ Socket 754 >> Mobo Gigabyte K8VT800 >> 1,5 GB RAM DDR >> IDE and SATA drives (non-RAID) >> GeForce 6600 AGP >> Onboard Realtek AC97 >> >> Any ideas? >> TIA >> > > |
|
|
|
#6 |
|
Guest
Posts: n/a
|
DPC's are used by either a device driver or by the kernel. Could be that one
of the device drivers you have installed is badly written. When writing device drivers there are certain rules you need to take in account. One of these rules is to have the amount of processor time for a DPC as low as possible. So having a high number of DPC's is not necessarely a problem but the processor time the DPC needs to execute is very important because it runs in the active thread and it might hurt the performance of the process you are running like for example a game or even in your case Windows. That's also why Microsoft signs drivers with the WHQL logo they test for example the microseconds DPC's need to execute which needs to be under a certain limit. What you can do is to see if this behavious is being caused by a certain application. -- Gabriel Lozano-Morán The .NET Aficionado http://www.pointerx.net "Jir? Fiala" <stooovie@volny.cz> wrote in message news:8BBCA51D-19AF-4727-BAFA-16708674EB24@microsoft.com... > Thanks! Its DPCs - Deferred Procedure Calls. Its performance graph looks > like a haircomb with evenly distributed spikes of similar height. Anyone > knows what this means? > > "R. McCarty" <PcEngWork-NoSpam_@mindspring.com> wrote in message > news:eW%23kGeCgGHA.4304@TK2MSFTNGP05.phx.gbl... >> Download SysInternal's Process Explorer Tool, it should help you >> to isolate what is causing the processor % spikes. >> >> "Jiří Fiala" <jiri.fiala@stereovideo.cz> wrote in message >> news:%23vjWlACgGHA.3860@TK2MSFTNGP02.phx.gbl... >>>I have a nasty problem in 5381 and 5384.4. My CPU peaks every other >>>second, resulting in a temporary systom halt (cursor stops, sound >>>interrupts, hard drive pauses...). This happenned to me in previous >>>builds only when installed to SATA drive. In 5381 and 5384, it doesn't >>>matter if I install it on IDE or SATA, the problem is persistent >>> >>> My config: >>> >>> Athlon 64 3000+ Socket 754 >>> Mobo Gigabyte K8VT800 >>> 1,5 GB RAM DDR >>> IDE and SATA drives (non-RAID) >>> GeForce 6600 AGP >>> Onboard Realtek AC97 >>> >>> Any ideas? >>> TIA >>> >> >> > |
|
|
|
#7 |
|
Guest
Posts: n/a
|
It seems to be caused by faulty Nvidia driver. MS's driver in 5384 caused
the system to be virtually unusable with my Sparkle GeForce 6600, Nvidia's newest driver helped alot, but there are still minor halts every 2 seconds... Never happened in XP and Vista builds prior 5365. Thank you very much for response, though. "Gabriel Lozano-Mor?n" <gabriel@pointerx.net> wrote in message news:%23jitW3EgGHA.4464@TK2MSFTNGP04.phx.gbl... > DPC's are used by either a device driver or by the kernel. Could be that > one of the device drivers you have installed is badly written. When > writing device drivers there are certain rules you need to take in > account. One of these rules is to have the amount of processor time for a > DPC as low as possible. So having a high number of DPC's is not > necessarely a problem but the processor time the DPC needs to execute is > very important because it runs in the active thread and it might hurt the > performance of the process you are running like for example a game or even > in your case Windows. That's also why Microsoft signs drivers with the > WHQL logo they test for example the microseconds DPC's need to execute > which needs to be under a certain limit. > > What you can do is to see if this behavious is being caused by a certain > application. > > -- > Gabriel Lozano-Morán > The .NET Aficionado > http://www.pointerx.net > > > "Jir? Fiala" <stooovie@volny.cz> wrote in message > news:8BBCA51D-19AF-4727-BAFA-16708674EB24@microsoft.com... >> Thanks! Its DPCs - Deferred Procedure Calls. Its performance graph looks >> like a haircomb with evenly distributed spikes of similar height. Anyone >> knows what this means? >> >> "R. McCarty" <PcEngWork-NoSpam_@mindspring.com> wrote in message >> news:eW%23kGeCgGHA.4304@TK2MSFTNGP05.phx.gbl... >>> Download SysInternal's Process Explorer Tool, it should help you >>> to isolate what is causing the processor % spikes. >>> >>> "Jiří Fiala" <jiri.fiala@stereovideo.cz> wrote in message >>> news:%23vjWlACgGHA.3860@TK2MSFTNGP02.phx.gbl... >>>>I have a nasty problem in 5381 and 5384.4. My CPU peaks every other >>>>second, resulting in a temporary systom halt (cursor stops, sound >>>>interrupts, hard drive pauses...). This happenned to me in previous >>>>builds only when installed to SATA drive. In 5381 and 5384, it doesn't >>>>matter if I install it on IDE or SATA, the problem is persistent >>>> >>>> My config: >>>> >>>> Athlon 64 3000+ Socket 754 >>>> Mobo Gigabyte K8VT800 >>>> 1,5 GB RAM DDR >>>> IDE and SATA drives (non-RAID) >>>> GeForce 6600 AGP >>>> Onboard Realtek AC97 >>>> >>>> Any ideas? >>>> TIA >>>> >>> >>> >> > > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

( I tried the new nvidia beta
