Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jan 2014 23:48:48 +0000 (UTC)
From:      Jim Harris <jimharris@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r260381 - head/sbin/nvmecontrol
Message-ID:  <201401062348.s06NmmWW005586@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jimharris
Date: Mon Jan  6 23:48:47 2014
New Revision: 260381
URL: http://svnweb.freebsd.org/changeset/base/260381

Log:
  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

Modified:
  head/sbin/nvmecontrol/devlist.c

Modified: head/sbin/nvmecontrol/devlist.c
==============================================================================
--- head/sbin/nvmecontrol/devlist.c	Mon Jan  6 23:16:39 2014	(r260380)
+++ head/sbin/nvmecontrol/devlist.c	Mon Jan  6 23:48:47 2014	(r260381)
@@ -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);



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