]> err.no Git - util-linux/commitdiff
libblkid: fix topology information values
authorEric Sandeen <sandeen@redhat.com>
Thu, 17 Sep 2009 21:56:00 +0000 (16:56 -0500)
committerKarel Zak <kzak@redhat.com>
Thu, 17 Sep 2009 22:03:47 +0000 (00:03 +0200)
Looks like the topology values returned are being
inflated by x 512, but the kernel reports them in bytes;
no need for the multiplication, just return the value as-is.

With the patch it all matches:

# mdadm -D /dev/md0  | grep Chunk
     Chunk Size : 64K
# cat /sys/devices/virtual/block/md0/queue/minimum_io_size
65536
# blkid/samples/topology /dev/md0
----- NAME=value interface (values: 0):
MINIMUM_IO_SIZE = 65536
OPTIMAL_IO_SIZE = 131072
----- binary interface:
alignment offset : 0
minimum io size  : 65536
optimal io size  : 131072

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
shlibs/blkid/src/topology/topology.c

index 8ebd5b083b6996f099a6babcdd99562a7ce40cf3..b4240543bc5d1e4a605ec0ce316934c3a5f2fb4e 100644 (file)
@@ -160,7 +160,7 @@ dev_topology_attribute(const char *attribute, dev_t dev, dev_t *primary)
        DBG(DEBUG_LOWPROBE,
                printf("topology: attribute %s = %lu (sectors)\n", attribute, result));
 
-       return result * DEFAULT_SECTOR_SIZE;
+       return result;
 err:
        if (fp)
                fclose(fp);