diff options
author | Davidlohr Bueso <dave@gnu.org> | 2012-06-17 18:10:04 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2012-06-21 08:04:19 +0200 |
commit | 7bd9699a74687f2297b7333d09d1bb021e350a73 (patch) | |
tree | 1a044b7e2cb053d4537da107febd4986e2701746 /fdisk | |
parent | 25b529fe9b74af927791049d82cedfe897b672ab (diff) | |
download | util-linux-7bd9699a74687f2297b7333d09d1bb021e350a73.tar.gz |
fdisk: API: add topology debug
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Diffstat (limited to 'fdisk')
-rw-r--r-- | fdisk/fdisk.h | 1 | ||||
-rw-r--r-- | fdisk/utils.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/fdisk/fdisk.h b/fdisk/fdisk.h index c645b24d..9d17cdd7 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 5bb49846..d105d8e4 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; } |