chiark / gitweb /
volume_id: really fix endianess bug in linux_raid detection
[elogind.git] / extras / volume_id / lib / ext.c
index 51c0011218f5ac1551acdd3d40f62f4d686344a2..8fc7a747dc2296009687c1a57498d58eb240dbf1 100644 (file)
@@ -70,12 +70,12 @@ struct ext2_super_block {
 #define EXT3_MIN_BLOCK_SIZE                    0x400
 #define EXT3_MAX_BLOCK_SIZE                    0x1000
 
-int volume_id_probe_ext(struct volume_id *id, uint64_t off)
+int volume_id_probe_ext(struct volume_id *id, uint64_t off, uint64_t size)
 {
        struct ext2_super_block *es;
        size_t bsize;
 
-       dbg("probing at offset 0x%llx", (unsigned long long) off);
+       info("probing at offset 0x%llx", (unsigned long long) off);
 
        es = (struct ext2_super_block *) volume_id_get_buffer(id, off + EXT_SUPERBLOCK_OFFSET, 0x200);
        if (es == NULL)