PROBLEM: (95270) (PATCH ID: OSF520-854) ******** This patch will correct a problem with advfsstat printing negative values for statistics that are over 10 decimal digits long. If values were over 10 decimal digits long, the values were being printed assuming they were signed values instead of unsigned values. These larger values would require more than 10 columns of text each. To avoid a messy display, values larger than 10 decimal digits are scaled to represent the number of terabytes that are being used. For example Disk Reads Writes Rglobs AveRglob Wglobs AveWglob ---- ----- ------ ------ -------- ------ -------- 1 730158 99852 -65072 0 -11615180 0 becomes Disk Reads Writes Rglobs AveRglob Wglobs AveWglob ---- ----- ------ ------ -------- ------ -------- 1 730158 99852 16777215T 0 16777215T 0 where T is 2 to the 40th power.