Page MenuHomeFreeBSD

Fix output of swapinfo in human readable mode
ClosedPublic

Authored by csjp on Feb 19 2020, 5:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 12 2024, 1:43 PM
Unknown Object (File)
Feb 26 2024, 2:52 AM
Unknown Object (File)
Jan 29 2024, 3:34 PM
Unknown Object (File)
Jan 18 2024, 6:12 PM
Unknown Object (File)
Jan 1 2024, 1:49 PM
Unknown Object (File)
Dec 23 2023, 1:20 AM
Unknown Object (File)
Oct 19 2023, 7:57 PM
Unknown Object (File)
Oct 14 2023, 3:54 AM

Details

Summary
  • Implement -h (human readable) for the size of the underlying block disk. Currently, the size of the swap device is unconditionally reported using blocks, even if -h has been used.
  • While here, switch to CONVERT_BLOCKS() instead of CONVERT() which will avoid overflowing size counters (in human readable form see: r196244)
  • Update the column headers to reflect that a size is being reported instead of the block size units being used

I went back through the revision history and didn't see any reason why this was explicitly not done, but this seems more consistent to me.

Test Plan

Before:

$ swapinfo -h
Device 1K-blocks Used Avail Capacity
/dev/gpt/swapfs 1048576 0B 1.0G 0%
$

After:

$ swapinfo -h
Device Size Used Avail Capacity
/dev/gpt/swapfs 1.0G 0B 1.0G 0%
$

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable