Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Apr 2006 07:27:24 +0000 (UTC)
From:      Bruce Evans <bde@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/usr.bin/systat systat.1 vmstat.c
Message-ID:  <200604300727.k3U7ROLN000496@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
bde         2006-04-30 07:27:24 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/systat       systat.1 vmstat.c 
  Log:
  Fix "slow (on-the-fly) zero fills percentage (`%slo-z')" some more.  The
  value printed is actually the optimized (i.e., the non-slow, not-on-the-fly
  zero fills percentage) except in overflow cases.  Describe it as %ozfod
  in the display.  Move the field descriptor 1 to the left so that there
  is space for 5 characters after the % sign (this leaves no space between
  the number and the descriptor but the % character serves well as a
  separator).
  
  Fixed integer overflow at z.ozfod = UINT_MAX/100 in the calculation of
  %ozfod.  This value can be reached just a few hours or minutes after
  booting, so %ozfod was usually garbage in boot mode.  Now %ozfod is
  correct in boot mode for a few days or hours.
  
  Print a non-dummy %ozfod when the division for it isn't division by 0
  instead of when the result will be less than 100%.  A result of 100%
  may be correct, though a result of more than 100% indicates overflow
  of one or both counters.
  
  Revision  Changes    Path
  1.48      +1 -1      src/usr.bin/systat/systat.1
  1.74      +3 -3      src/usr.bin/systat/vmstat.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200604300727.k3U7ROLN000496>