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. Submitted by: Tony Beltran <anthony.beltran@emc.com> MFC after: 3 days
This commit is contained in:
parent
c847a5062c
commit
efa2980530
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=260381
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user