diff options
author | jimharris <jimharris@FreeBSD.org> | 2014-05-07 16:53:42 +0000 |
---|---|---|
committer | jimharris <jimharris@FreeBSD.org> | 2014-05-07 16:53:42 +0000 |
commit | 9f6b11fff35cf2f6cc4ed100a2c132573b82bad2 (patch) | |
tree | 6b82b001ccb5b4d96db2467ccc7ef75c7630a6f0 /sbin/nvmecontrol | |
parent | 3f0fde84c496bf8856828fbccbff9afacc90ce2e (diff) | |
download | FreeBSD-src-9f6b11fff35cf2f6cc4ed100a2c132573b82bad2.zip FreeBSD-src-9f6b11fff35cf2f6cc4ed100a2c132573b82bad2.tar.gz |
MFC r260381:
For "nvmecontrol devlist", show namespace sizes in terms of MB instead of
GB to improve granularity of the reporting - especially for namespaces
that are on the order of 1 or 2 GB.
Diffstat (limited to 'sbin/nvmecontrol')
-rw-r--r-- | sbin/nvmecontrol/devlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/nvmecontrol/devlist.c b/sbin/nvmecontrol/devlist.c index f73d643..35a46c1 100644 --- a/sbin/nvmecontrol/devlist.c +++ b/sbin/nvmecontrol/devlist.c @@ -99,11 +99,11 @@ devlist(int argc, char *argv[]) sprintf(name, "%s%d%s%d", NVME_CTRLR_PREFIX, ctrlr, NVME_NS_PREFIX, i+1); read_namespace_data(fd, i+1, &nsdata); - printf(" %10s (%lldGB)\n", + printf(" %10s (%lldMB)\n", name, nsdata.nsze * (long long)ns_get_sector_size(&nsdata) / - 1024 / 1024 / 1024); + 1024 / 1024); } close(fd); |