| Summary: | ktimemon doesn't honor iowait for Linux 2.6 kernels | ||
|---|---|---|---|
| Product: | [Unmaintained] ktimemon | Reporter: | zeller |
| Component: | general | Assignee: | Dirk Mueller <mueller> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | bugz57, nathan |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| See Also: | https://bugs.kde.org/show_bug.cgi?id=465768 | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
zeller
2004-06-10 11:23:33 UTC
*** Bug 90669 has been marked as a duplicate of this bug. *** *** Bug 120422 has been marked as a duplicate of this bug. *** mostly fixed by a patch from Michael Blakely SVN commit 529985 by mueller:
don't count iowait time as cpu busy time
BUG: 83143
M +1 -1 timemon.cc
--- trunk/KDE/kdeaddons/kicker-applets/ktimemon/timemon.cc #529984:529985
@@ -171,7 +171,7 @@
if(!rect().contains(p)) return;
KSample::Sample s = sample->getSample(100); // scale to 100(%)
- int idle = 100 - s.kernel - s.user - s.nice - s.iowait;
+ int idle = 100 - s.kernel - s.user - s.nice;
if ( idle < 0 )
idle = 0;
QString str = i18n("cpu: %1% idle\nmem: %2 MB %3% free\nswap: %4 MB %5% free",
|