util-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/9] fdisk: API: add topology debug
@ 2012-06-17 16:10 Davidlohr Bueso
  0 siblings, 0 replies; only message in thread
From: Davidlohr Bueso @ 2012-06-17 16:10 UTC (permalink / raw)
  To: Karel Zak, Petr Uzel; +Cc: util-linux

From: Davidlohr Bueso <dave@gnu.org>

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
---
 fdisk/fdisk.h |    1 +
 fdisk/utils.c |    5 +++++
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/fdisk/fdisk.h b/fdisk/fdisk.h
index c645b24..9d17cdd 100644
--- a/fdisk/fdisk.h
+++ b/fdisk/fdisk.h
@@ -35,6 +35,7 @@
 /* fdisk debugging flags/options */
 #define FDISK_DEBUG_INIT	(1 << 1)
 #define FDISK_DEBUG_CONTEXT	(1 << 2)
+#define FDISK_DEBUG_TOPOLOGY    (1 << 3)
 #define FDISK_DEBUG_ALL		0xFFFF
 
 # define ON_DBG(m, x)	do { \
diff --git a/fdisk/utils.c b/fdisk/utils.c
index 5bb4984..d105d8e 100644
--- a/fdisk/utils.c
+++ b/fdisk/utils.c
@@ -85,6 +85,11 @@ static int __discover_topology(struct fdisk_context *cxt)
 	if (!cxt->phy_sector_size) /* could not discover physical size */
 		cxt->phy_sector_size = cxt->sector_size;
 
+	DBG(TOPOLOGY, dbgprint("topology discovered for %s:\n"
+			       "\tlogical/physical sector sizes: %ld/%ld\n"
+			       "\tfdisk/minimal/optimal io sizes: %ld/%ld/%ld\n",
+			       cxt->dev_path, cxt->sector_size, cxt->phy_sector_size,
+			       cxt->io_size, cxt->optimal_io_size, cxt->min_io_size));
 	return 0;
 }
 
-- 
1.7.4.1





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-06-17 16:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-17 16:10 [PATCH 2/9] fdisk: API: add topology debug Davidlohr Bueso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).