ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/disk_stats.c
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/disk_stats.c (file contents):
Revision 1.78 by tdb, Sat Nov 6 23:54:12 2004 UTC vs.
Revision 1.79 by ats, Sun Nov 7 15:06:49 2004 UTC

# Line 392 | Line 392 | sg_disk_io_stats *sg_get_disk_io_stats(int *entries){
392                          }
393          
394                          /* We can't seperate the reads from the writes, we'll
395 <                           just give the same to each. */
396 <                        rbytes = wbytes = di->psd_dkwds / 2;
395 >                         * just give the same to each. (This value is in
396 >                         * 64-byte chunks according to the pstat header file,
397 >                         * and can wrap to be negative.)
398 >                         */
399 >                        rbytes = wbytes = ((unsigned long) di->psd_dkwds) * 64LL;
400          
401                          /* Skip unused disks. */
402                          if (rbytes == 0 && wbytes == 0) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines