dcavalca / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone
Karel Zak 18b0e4
From bb1537a959e8ec53acfa90081be9cd1167b6a0cd Mon Sep 17 00:00:00 2001
Karel Zak 18b0e4
From: Andrey Albershteyn <aalbersh@redhat.com>
Karel Zak 18b0e4
Date: Fri, 27 May 2022 12:05:32 +0200
Karel Zak 18b0e4
Subject: libblkid: add FSBLOCKSIZE tag
Karel Zak 18b0e4
Karel Zak 18b0e4
The FSBLOCKSIZE tag exposes file system block size in contrast to
Karel Zak 18b0e4
the BLOCK_SIZE (unfortunate name) which returns minimal accessible
Karel Zak 18b0e4
block size (sector size).
Karel Zak 18b0e4
Karel Zak 18b0e4
Upstream: http://github.com/util-linux/util-linux/commit/0f447d490
Karel Zak 18b0e4
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2064810
Karel Zak 18b0e4
Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
Karel Zak 18b0e4
---
Karel Zak 18b0e4
 libblkid/src/superblocks/apfs.c                     |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/befs.c                     |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/btrfs.c                    |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/erofs.c                    |  5 ++++-
Karel Zak 18b0e4
 libblkid/src/superblocks/exfat.c                    |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/exfs.c                     |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/ext.c                      |  4 +++-
Karel Zak 18b0e4
 libblkid/src/superblocks/f2fs.c                     |  4 +++-
Karel Zak 18b0e4
 libblkid/src/superblocks/gfs.c                      |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/hfs.c                      |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/hpfs.c                     |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/iso9660.c                  |  2 ++
Karel Zak 18b0e4
 libblkid/src/superblocks/jfs.c                      |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/minix.c                    |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/nilfs.c                    |  4 +++-
Karel Zak 18b0e4
 libblkid/src/superblocks/ntfs.c                     |  2 ++
Karel Zak 18b0e4
 libblkid/src/superblocks/ocfs.c                     |  4 +++-
Karel Zak 18b0e4
 libblkid/src/superblocks/reiserfs.c                 |  2 ++
Karel Zak 18b0e4
 libblkid/src/superblocks/romfs.c                    |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/squashfs.c                 |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/superblocks.c              | 13 +++++++++++++
Karel Zak 18b0e4
 libblkid/src/superblocks/superblocks.h              |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/udf.c                      |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/ufs.c                      |  8 ++++++--
Karel Zak 18b0e4
 libblkid/src/superblocks/vfat.c                     |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/vxfs.c                     |  2 ++
Karel Zak 18b0e4
 libblkid/src/superblocks/xfs.c                      |  1 +
Karel Zak 18b0e4
 libblkid/src/superblocks/zfs.c                      |  4 +++-
Karel Zak 18b0e4
 libblkid/src/superblocks/zonefs.c                   |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-befs                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-btrfs                |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-erofs                |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-exfat                |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-ext2                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-ext3                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-f2fs                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat16_noheads        |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat32_cp850_O_tilde  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat32_label_64MB     |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat32_mkdosfs_label1 |  1 +
Karel Zak 18b0e4
 ...ow-probe-fat32_mkdosfs_label1_dosfslabel_NO_NAME |  1 +
Karel Zak 18b0e4
 .../low-probe-fat32_mkdosfs_label1_dosfslabel_empty |  1 +
Karel Zak 18b0e4
 ...low-probe-fat32_mkdosfs_label1_dosfslabel_label2 |  1 +
Karel Zak 18b0e4
 .../low-probe-fat32_mkdosfs_label1_mlabel_NO_NAME   |  1 +
Karel Zak 18b0e4
 .../low-probe-fat32_mkdosfs_label1_mlabel_erase     |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-fat32_mkdosfs_label1_xp_erase   |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-fat32_mkdosfs_label1_xp_label2  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat32_mkdosfs_none   |  1 +
Karel Zak 18b0e4
 .../low-probe-fat32_mkdosfs_none_dosfslabel_NO_NAME |  1 +
Karel Zak 18b0e4
 .../low-probe-fat32_mkdosfs_none_dosfslabel_label1  |  1 +
Karel Zak 18b0e4
 ...e-fat32_mkdosfs_none_dosfslabel_label1_xp_label2 |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-fat32_mkdosfs_none_xp_label1    |  1 +
Karel Zak 18b0e4
 ...e-fat32_mkdosfs_none_xp_label1_dosfslabel_label2 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat32_xp_label1      |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-fat32_xp_none        |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-fat32_xp_none_dosfslabel_label1 |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-fat32_xp_none_mlabel_label1     |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-gfs2                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-hfsplus              |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-hpfs                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-iso                  |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-iso-different-iso-joliet-label  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-iso-joliet           |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-iso-multi-genisoimage-0         |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-iso-multi-genisoimage-174       |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-iso-multi-genisoimage-348       |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-iso-rr-joliet        |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-iso-unicode-long-label |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-jbd                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-jfs                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-minix-BE             |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-minix-LE             |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-nilfs2               |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-ntfs                 |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-ocfs2                |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-reiser3              |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-reiser4              |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-romfs                |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-small-fat32          |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-udf                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-udf-bdr-2.60-nero    |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-cd-mkudfiso-20100208        |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-udf-cd-nero-6        |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-hdd-macosx-2.60-4096        |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-hdd-mkudffs-1.0.0-1         |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-hdd-mkudffs-1.0.0-2         |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-1  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-2  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-3  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-4  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-5  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-6  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-7  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-hdd-mkudffs-1.3-8  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-udf-hdd-mkudffs-2.2  |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-hdd-udfclient-0.7.5         |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-hdd-udfclient-0.7.7         |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-udf-hdd-win7         |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-multi-genisoimage-0         |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-multi-genisoimage-417       |  1 +
Karel Zak 18b0e4
 .../blkid/low-probe-udf-multi-genisoimage-834       |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-udf-multi-mkudffs-0  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-multi-mkudffs-320  |  1 +
Karel Zak 18b0e4
 .../expected/blkid/low-probe-udf-multi-mkudffs-640  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-ufs                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-xfs                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-xfs-v5               |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-zfs                  |  1 +
Karel Zak 18b0e4
 tests/expected/blkid/low-probe-zonefs               |  1 +
Karel Zak 18b0e4
 110 files changed, 144 insertions(+), 8 deletions(-)
Karel Zak 18b0e4
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/apfs.c b/libblkid/src/superblocks/apfs.c
Karel Zak 18b0e4
index 3332ef228..048423a8b 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/apfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/apfs.c
Karel Zak 18b0e4
@@ -65,6 +65,7 @@ static int probe_apfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	if (blkid_probe_set_uuid(pr, sb->uuid) < 0)
Karel Zak 18b0e4
 		return BLKID_PROBE_NONE;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, le32_to_cpu(sb->block_size));
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, le32_to_cpu(sb->block_size));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return BLKID_PROBE_OK;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/befs.c b/libblkid/src/superblocks/befs.c
Karel Zak 18b0e4
index 211feae9f..1ba0e10ae 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/befs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/befs.c
Karel Zak 18b0e4
@@ -521,6 +521,7 @@ static int probe_befs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 					sizeof(volume_id), "%016" PRIx64,
Karel Zak 18b0e4
 					FS64_TO_CPU(volume_id, fs_le));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, block_size);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, block_size);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return BLKID_PROBE_OK;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/btrfs.c b/libblkid/src/superblocks/btrfs.c
Karel Zak 18b0e4
index 9708f2e28..06a27529a 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/btrfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/btrfs.c
Karel Zak 18b0e4
@@ -74,6 +74,7 @@ static int probe_btrfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, bfs->fsid);
Karel Zak 18b0e4
 	blkid_probe_set_uuid_as(pr, bfs->dev_item.uuid, "UUID_SUB");
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, le32_to_cpu(bfs->sectorsize));
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, le32_to_cpu(bfs->sectorsize));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	uint32_t sectorsize_log = 31 -
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/erofs.c b/libblkid/src/superblocks/erofs.c
Karel Zak 18b0e4
index 0e7b4223d..30914a89c 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/erofs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/erofs.c
Karel Zak 18b0e4
@@ -51,8 +51,11 @@ static int probe_erofs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, sb->uuid);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
-	if (sb->blkszbits < 32)
Karel Zak 18b0e4
+	if (sb->blkszbits < 32){
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, 1U << sb->blkszbits);
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, 1U << sb->blkszbits);
Karel Zak 18b0e4
+	}
Karel Zak 18b0e4
+
Karel Zak 18b0e4
 	return BLKID_PROBE_OK;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
 
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/exfat.c b/libblkid/src/superblocks/exfat.c
Karel Zak 18b0e4
index f586ec786..fd2b85655 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/exfat.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/exfat.c
Karel Zak 18b0e4
@@ -139,6 +139,7 @@ static int probe_exfat(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	blkid_probe_sprintf_version(pr, "%u.%u",
Karel Zak 18b0e4
 			sb->version.vermaj, sb->version.vermin);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, BLOCK_SIZE(sb));
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, BLOCK_SIZE(sb));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return BLKID_PROBE_OK;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/exfs.c b/libblkid/src/superblocks/exfs.c
Karel Zak 18b0e4
index e0eafafc6..87dc0a0c7 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/exfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/exfs.c
Karel Zak 18b0e4
@@ -173,6 +173,7 @@ static int probe_exfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, xs->sb_uuid);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, be32_to_cpu(xs->sb_blocksize));
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, be32_to_cpu(xs->sb_blocksize));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/ext.c b/libblkid/src/superblocks/ext.c
Karel Zak 18b0e4
index 0b9023734..cbbe8eb96 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/ext.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/ext.c
Karel Zak 18b0e4
@@ -189,8 +189,10 @@ static void ext_get_info(blkid_probe pr, int ver, struct ext2_super_block *es)
Karel Zak 18b0e4
 		le32_to_cpu(es->s_rev_level),
Karel Zak 18b0e4
 		le16_to_cpu(es->s_minor_rev_level));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
-	if (le32_to_cpu(es->s_log_block_size) < 32)
Karel Zak 18b0e4
+	if (le32_to_cpu(es->s_log_block_size) < 32){
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, 1024U << le32_to_cpu(es->s_log_block_size));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, 1024U << le32_to_cpu(es->s_log_block_size));
Karel Zak 18b0e4
+	}
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	uint64_t fslastblock = le32_to_cpu(es->s_blocks_count) |
Karel Zak 18b0e4
 		((s_feature_incompat & EXT4_FEATURE_INCOMPAT_64BIT) ?
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/f2fs.c b/libblkid/src/superblocks/f2fs.c
Karel Zak 18b0e4
index aed93e25b..f271e8047 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/f2fs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/f2fs.c
Karel Zak 18b0e4
@@ -78,8 +78,10 @@ static int probe_f2fs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, sb->uuid);
Karel Zak 18b0e4
 	blkid_probe_sprintf_version(pr, "%u.%u", vermaj, vermin);
Karel Zak 18b0e4
-	if (le32_to_cpu(sb->log_blocksize) < 32)
Karel Zak 18b0e4
+	if (le32_to_cpu(sb->log_blocksize) < 32){
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, 1U << le32_to_cpu(sb->log_blocksize));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, 1U << le32_to_cpu(sb->log_blocksize));
Karel Zak 18b0e4
+	}
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
 
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/gfs.c b/libblkid/src/superblocks/gfs.c
Karel Zak 18b0e4
index 37a74b157..445c0dafa 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/gfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/gfs.c
Karel Zak 18b0e4
@@ -106,6 +106,7 @@ static int probe_gfs2(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 				sizeof(sbd->sb_locktable));
Karel Zak 18b0e4
 		blkid_probe_set_uuid(pr, sbd->sb_uuid);
Karel Zak 18b0e4
 		blkid_probe_set_version(pr, "1");
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, be32_to_cpu(sbd->sb_bsize));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, be32_to_cpu(sbd->sb_bsize));
Karel Zak 18b0e4
 		return 0;
Karel Zak 18b0e4
 	}
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/hfs.c b/libblkid/src/superblocks/hfs.c
Karel Zak 18b0e4
index ebf90e49e..9674b1481 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/hfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/hfs.c
Karel Zak 18b0e4
@@ -241,6 +241,7 @@ static int probe_hfsplus(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	if (blocksize < HFSPLUS_SECTOR_SIZE)
Karel Zak 18b0e4
 		return 1;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, blocksize);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, blocksize);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	memcpy(extents, hfsplus->cat_file.extents, sizeof(extents));
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/hpfs.c b/libblkid/src/superblocks/hpfs.c
Karel Zak 18b0e4
index dcf4520b6..09bf975ea 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/hpfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/hpfs.c
Karel Zak 18b0e4
@@ -99,6 +99,7 @@ static int probe_hpfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 				hbb->vol_serno[1], hbb->vol_serno[0]);
Karel Zak 18b0e4
 	}
Karel Zak 18b0e4
 	blkid_probe_sprintf_version(pr, "%u", version);
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, 512);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, 512);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/iso9660.c b/libblkid/src/superblocks/iso9660.c
Karel Zak 18b0e4
index 289a325c8..503126c00 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/iso9660.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/iso9660.c
Karel Zak 18b0e4
@@ -90,6 +90,7 @@ static int probe_iso9660_hsfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	if (!iso)
Karel Zak 18b0e4
 		return errno ? -errno : 1;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, ISO_SECTOR_SIZE);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, ISO_SECTOR_SIZE);
Karel Zak 18b0e4
 	blkid_probe_set_version(pr, "High Sierra");
Karel Zak 18b0e4
 	blkid_probe_set_label(pr, iso->volume_id, sizeof(iso->volume_id));
Karel Zak 18b0e4
@@ -249,6 +250,7 @@ static int probe_iso9660(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	if (!pvd)
Karel Zak 18b0e4
 		return errno ? -errno : 1;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, ISO_SECTOR_SIZE);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, ISO_SECTOR_SIZE);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	if (joliet && (len = merge_utf16be_ascii(buf, joliet->system_id, pvd->system_id, sizeof(pvd->system_id))) != 0)
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/jfs.c b/libblkid/src/superblocks/jfs.c
Karel Zak 18b0e4
index 3de8c2e3d..e22467246 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/jfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/jfs.c
Karel Zak 18b0e4
@@ -52,6 +52,7 @@ static int probe_jfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	if (*((char *) js->js_label) != '\0')
Karel Zak 18b0e4
 		blkid_probe_set_label(pr, js->js_label, sizeof(js->js_label));
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, js->js_uuid);
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, le32_to_cpu(js->js_bsize));
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, le32_to_cpu(js->js_bsize));
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/minix.c b/libblkid/src/superblocks/minix.c
Karel Zak 18b0e4
index b521efb2b..6011842f7 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/minix.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/minix.c
Karel Zak 18b0e4
@@ -148,6 +148,7 @@ static int probe_minix(blkid_probe pr,
Karel Zak 18b0e4
 		return 1;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_sprintf_version(pr, "%d", version);
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, block_size);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, block_size);
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/nilfs.c b/libblkid/src/superblocks/nilfs.c
Karel Zak 18b0e4
index 423bd1ac4..ca7574a52 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/nilfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/nilfs.c
Karel Zak 18b0e4
@@ -157,8 +157,10 @@ static int probe_nilfs2(blkid_probe pr,
Karel Zak 18b0e4
 				(unsigned char *) &sb->s_magic))
Karel Zak 18b0e4
 		return 1;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
-	if (le32_to_cpu(sb->s_log_block_size) < 32)
Karel Zak 18b0e4
+	if (le32_to_cpu(sb->s_log_block_size) < 32){
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, 1024U << le32_to_cpu(sb->s_log_block_size));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, 1024U << le32_to_cpu(sb->s_log_block_size));
Karel Zak 18b0e4
+	}
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/ntfs.c b/libblkid/src/superblocks/ntfs.c
Karel Zak 18b0e4
index be2e3d895..9f1927cf7 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/ntfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/ntfs.c
Karel Zak 18b0e4
@@ -208,6 +208,8 @@ static int __probe_ntfs(blkid_probe pr, const struct blkid_idmag *mag, int save_
Karel Zak 18b0e4
 		attr_off += attr_len;
Karel Zak 18b0e4
 	}
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, sector_size * sectors_per_cluster);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, sector_size);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_sprintf_uuid(pr,
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/ocfs.c b/libblkid/src/superblocks/ocfs.c
Karel Zak 18b0e4
index 463ed7bcf..28df6ddfa 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/ocfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/ocfs.c
Karel Zak 18b0e4
@@ -153,8 +153,10 @@ static int probe_ocfs2(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 		le16_to_cpu(osb->s_major_rev_level),
Karel Zak 18b0e4
 		le16_to_cpu(osb->s_minor_rev_level));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
-	if (le32_to_cpu(osb->s_blocksize_bits) < 32)
Karel Zak 18b0e4
+	if (le32_to_cpu(osb->s_blocksize_bits) < 32){
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, 1U << le32_to_cpu(osb->s_blocksize_bits));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, 1U << le32_to_cpu(osb->s_blocksize_bits));
Karel Zak 18b0e4
+	}
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/reiserfs.c b/libblkid/src/superblocks/reiserfs.c
Karel Zak 18b0e4
index 6c5e5b0d7..23d10e2e2 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/reiserfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/reiserfs.c
Karel Zak 18b0e4
@@ -74,6 +74,7 @@ static int probe_reiser(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	else
Karel Zak 18b0e4
 		blkid_probe_set_version(pr, "3.5");
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, blocksize);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, blocksize);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
@@ -95,6 +96,7 @@ static int probe_reiser4(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, rs4->rs4_uuid);
Karel Zak 18b0e4
 	blkid_probe_set_version(pr, "4");
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, blocksize);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, blocksize);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/romfs.c b/libblkid/src/superblocks/romfs.c
Karel Zak 18b0e4
index 1c2ac4315..8db88775b 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/romfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/romfs.c
Karel Zak 18b0e4
@@ -35,6 +35,7 @@ static int probe_romfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 		blkid_probe_set_label(pr, ros->ros_volume,
Karel Zak 18b0e4
 				sizeof(ros->ros_volume));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, 1024);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, 1024);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/squashfs.c b/libblkid/src/superblocks/squashfs.c
Karel Zak 18b0e4
index 4db842493..d85ff8f1a 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/squashfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/squashfs.c
Karel Zak 18b0e4
@@ -71,6 +71,7 @@ static int probe_squashfs3(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_sprintf_version(pr, "%u.%u", vermaj, vermin);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, 1024);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, 1024);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/superblocks.c b/libblkid/src/superblocks/superblocks.c
Karel Zak 18b0e4
index a1f42c611..9cfa991fc 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/superblocks.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/superblocks.c
Karel Zak 18b0e4
@@ -70,6 +70,8 @@
Karel Zak 18b0e4
  *
Karel Zak 18b0e4
  * @FSLASTBLOCK: last fsblock/total number of fsblocks
Karel Zak 18b0e4
  *
Karel Zak 18b0e4
+ * @FSBLOCKSIZE: file system block size
Karel Zak 18b0e4
+ *
Karel Zak 18b0e4
  * @SYSTEM_ID: ISO9660 system identifier
Karel Zak 18b0e4
  *
Karel Zak 18b0e4
  * @PUBLISHER_ID: ISO9660 publisher identifier
Karel Zak 18b0e4
@@ -613,6 +615,17 @@ int blkid_probe_set_fslastblock(blkid_probe pr, uint64_t lastblock)
Karel Zak 18b0e4
 			lastblock);
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+int blkid_probe_set_fsblocksize(blkid_probe pr, uint32_t block_size)
Karel Zak 18b0e4
+{
Karel Zak 18b0e4
+	struct blkid_chain *chn = blkid_probe_get_chain(pr);
Karel Zak 18b0e4
+
Karel Zak 18b0e4
+	if (!(chn->flags & BLKID_SUBLKS_FSINFO))
Karel Zak 18b0e4
+		return 0;
Karel Zak 18b0e4
+
Karel Zak 18b0e4
+	return blkid_probe_sprintf_value(pr, "FSBLOCKSIZE", "%" PRIu32,
Karel Zak 18b0e4
+			block_size);
Karel Zak 18b0e4
+}
Karel Zak 18b0e4
+
Karel Zak 18b0e4
 int blkid_probe_set_id_label(blkid_probe pr, const char *name,
Karel Zak 18b0e4
 			     const unsigned char *data, size_t len)
Karel Zak 18b0e4
 {
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/superblocks.h b/libblkid/src/superblocks/superblocks.h
Karel Zak 18b0e4
index 251e2e386..8a1b85dda 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/superblocks.h
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/superblocks.h
Karel Zak 18b0e4
@@ -113,6 +113,7 @@ extern int blkid_probe_set_utf8_id_label(blkid_probe pr, const char *name,
Karel Zak 18b0e4
 int blkid_probe_set_block_size(blkid_probe pr, unsigned block_size);
Karel Zak 18b0e4
 int blkid_probe_set_fssize(blkid_probe pr, uint64_t size);
Karel Zak 18b0e4
 int blkid_probe_set_fslastblock(blkid_probe pr, uint64_t lastblock);
Karel Zak 18b0e4
+int blkid_probe_set_fsblocksize(blkid_probe pr, uint32_t block_size);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 extern int blkid_probe_is_bitlocker(blkid_probe pr);
Karel Zak 18b0e4
 extern int blkid_probe_is_ntfs(blkid_probe pr);
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/udf.c b/libblkid/src/superblocks/udf.c
Karel Zak 18b0e4
index 9ed089ee4..36adf60f1 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/udf.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/udf.c
Karel Zak 18b0e4
@@ -569,6 +569,7 @@ real_blksz:
Karel Zak 18b0e4
 		 * E.g. number 0x0150 is revision 1.50, number 0x0201 is revision 2.01. */
Karel Zak 18b0e4
 		blkid_probe_sprintf_version(pr, "%x.%02x", (unsigned int)(udf_rev >> 8), (unsigned int)(udf_rev & 0xFF));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, bs);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, bs);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/ufs.c b/libblkid/src/superblocks/ufs.c
Karel Zak 18b0e4
index 7a8396c1c..5da87b18f 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/ufs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/ufs.c
Karel Zak 18b0e4
@@ -233,10 +233,14 @@ found:
Karel Zak 18b0e4
 			(unsigned char *) &ufs->fs_magic))
Karel Zak 18b0e4
 		return 1;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	uint32_t bsize = 0;
Karel Zak 18b0e4
 	if (!is_be)
Karel Zak 18b0e4
-		blkid_probe_set_block_size(pr, le32_to_cpu(ufs->fs_fsize));
Karel Zak 18b0e4
+		bsize = le32_to_cpu(ufs->fs_fsize);
Karel Zak 18b0e4
 	else
Karel Zak 18b0e4
-		blkid_probe_set_block_size(pr, be32_to_cpu(ufs->fs_fsize));
Karel Zak 18b0e4
+		bsize = be32_to_cpu(ufs->fs_fsize);
Karel Zak 18b0e4
+
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, bsize);
Karel Zak 18b0e4
+	blkid_probe_set_block_size(pr, bsize);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/vfat.c b/libblkid/src/superblocks/vfat.c
Karel Zak 18b0e4
index 71813485a..6cd58cc71 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/vfat.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/vfat.c
Karel Zak 18b0e4
@@ -433,6 +433,7 @@ static int probe_vfat(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	if (version)
Karel Zak 18b0e4
 		blkid_probe_set_version(pr, version);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, vs->vs_cluster_size * sector_size);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, sector_size);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/vxfs.c b/libblkid/src/superblocks/vxfs.c
Karel Zak 18b0e4
index d9d26adcf..0f3c07b0c 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/vxfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/vxfs.c
Karel Zak 18b0e4
@@ -33,9 +33,11 @@ static int probe_vxfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	if (le32_to_cpu(vxs->vs_magic) == 0xa501fcf5) {
Karel Zak 18b0e4
 		blkid_probe_sprintf_version(pr, "%u", (unsigned int)le32_to_cpu(vxs->vs_version));
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, le32_to_cpu(vxs->vs_bsize));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, le32_to_cpu(vxs->vs_bsize));
Karel Zak 18b0e4
 	} else if (be32_to_cpu(vxs->vs_magic) == 0xa501fcf5) {
Karel Zak 18b0e4
 		blkid_probe_sprintf_version(pr, "%u", (unsigned int)be32_to_cpu(vxs->vs_version));
Karel Zak 18b0e4
+		blkid_probe_set_fsblocksize(pr, be32_to_cpu(vxs->vs_bsize));
Karel Zak 18b0e4
 		blkid_probe_set_block_size(pr, be32_to_cpu(vxs->vs_bsize));
Karel Zak 18b0e4
 	}
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/xfs.c b/libblkid/src/superblocks/xfs.c
Karel Zak 18b0e4
index 1f2e92cac..2cc6f6179 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/xfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/xfs.c
Karel Zak 18b0e4
@@ -184,6 +184,7 @@ static int probe_xfs(blkid_probe pr, const struct blkid_idmag *mag)
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, xs->sb_uuid);
Karel Zak 18b0e4
 	blkid_probe_set_fssize(pr, xfs_fssize(xs));
Karel Zak 18b0e4
 	blkid_probe_set_fslastblock(pr, be64_to_cpu(xs->sb_dblocks));
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, be32_to_cpu(xs->sb_blocksize));
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, be16_to_cpu(xs->sb_sectsize));
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/zfs.c b/libblkid/src/superblocks/zfs.c
Karel Zak 18b0e4
index 774a199e1..e7ca78c0d 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/zfs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/zfs.c
Karel Zak 18b0e4
@@ -138,8 +138,10 @@ static void zfs_process_value(blkid_probe pr, char *name, size_t namelen,
Karel Zak 18b0e4
 		if (nvu_type != DATA_TYPE_UINT64)
Karel Zak 18b0e4
 			return;
Karel Zak 18b0e4
 
Karel Zak 18b0e4
-		if (nvu_value < 32)
Karel Zak 18b0e4
+		if (nvu_value < 32){
Karel Zak 18b0e4
+			blkid_probe_set_fsblocksize(pr, 1U << nvu_value);
Karel Zak 18b0e4
 			blkid_probe_set_block_size(pr, 1U << nvu_value);
Karel Zak 18b0e4
+		}
Karel Zak 18b0e4
 	}
Karel Zak 18b0e4
 }
Karel Zak 18b0e4
 
Karel Zak 18b0e4
diff --git a/libblkid/src/superblocks/zonefs.c b/libblkid/src/superblocks/zonefs.c
Karel Zak 18b0e4
index 4c826ec76..2cb7097d4 100644
Karel Zak 18b0e4
--- a/libblkid/src/superblocks/zonefs.c
Karel Zak 18b0e4
+++ b/libblkid/src/superblocks/zonefs.c
Karel Zak 18b0e4
@@ -64,6 +64,7 @@ static int probe_zonefs(blkid_probe pr,
Karel Zak 18b0e4
 				      sizeof(sb->s_label));
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	blkid_probe_set_uuid(pr, sb->s_uuid);
Karel Zak 18b0e4
+	blkid_probe_set_fsblocksize(pr, ZONEFS_BLOCK_SIZE);
Karel Zak 18b0e4
 	blkid_probe_set_block_size(pr, ZONEFS_BLOCK_SIZE);
Karel Zak 18b0e4
 
Karel Zak 18b0e4
 	return 0;
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-befs b/tests/expected/blkid/low-probe-befs
Karel Zak 18b0e4
index 5717049d2..738114769 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-befs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-befs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_LABEL=befs_test
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=befs_test
Karel Zak 18b0e4
 ID_FS_TYPE=befs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-btrfs b/tests/expected/blkid/low-probe-btrfs
Karel Zak 18b0e4
index 48649389a..a626bc1f6 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-btrfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-btrfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_FSLASTBLOCK=29440
Karel Zak 18b0e4
 ID_FS_TYPE=btrfs
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-erofs b/tests/expected/blkid/low-probe-erofs
Karel Zak 18b0e4
index 1d1600fa0..b815c7e5d 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-erofs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-erofs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_TYPE=erofs
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=2375febf-f260-479d-ade7-952494047cb4
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-exfat b/tests/expected/blkid/low-probe-exfat
Karel Zak 18b0e4
index 59cb35225..24d2cac5d 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-exfat
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-exfat
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=Новый_том
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Новый\x20том
Karel Zak 18b0e4
 ID_FS_TYPE=exfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-ext2 b/tests/expected/blkid/low-probe-ext2
Karel Zak 18b0e4
index e236c6e8a..fa284a949 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-ext2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-ext2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_FSLASTBLOCK=100
Karel Zak 18b0e4
 ID_FS_LABEL=test-ext2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-ext2
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-ext3 b/tests/expected/blkid/low-probe-ext3
Karel Zak 18b0e4
index 164fefb7b..422d4fef3 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-ext3
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-ext3
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_FSLASTBLOCK=2048
Karel Zak 18b0e4
 ID_FS_LABEL=test-ext3
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-ext3
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-f2fs b/tests/expected/blkid/low-probe-f2fs
Karel Zak 18b0e4
index 272905125..1ee751d56 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-f2fs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-f2fs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=test-f2fs
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-f2fs
Karel Zak 18b0e4
 ID_FS_TYPE=f2fs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat b/tests/expected/blkid/low-probe-fat
Karel Zak 18b0e4
index a463cc987..bb686b24e 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=TEST-FAT
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=TEST-FAT
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=TEST-FAT
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat16_noheads b/tests/expected/blkid/low-probe-fat16_noheads
Karel Zak 18b0e4
index ff9ef2e69..5b8fc916e 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat16_noheads
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat16_noheads
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=VTech_1070
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=VTech\x201070
Karel Zak 18b0e4
 ID_FS_SEC_TYPE=msdos
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_cp850_O_tilde b/tests/expected/blkid/low-probe-fat32_cp850_O_tilde
Karel Zak 18b0e4
index ca49f200d..16c519884 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_cp850_O_tilde
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_cp850_O_tilde
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=___
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=\xe5\xe5\xe5
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=___
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_label_64MB b/tests/expected/blkid/low-probe-fat32_label_64MB
Karel Zak 18b0e4
index 4a99f8ff6..41b656a84 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_label_64MB
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_label_64MB
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=BINGO
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=BINGO
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1 b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1
Karel Zak 18b0e4
index 5d1771de3..14aee2eb9 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=label1
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=label1
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label1
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_NO_NAME b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_NO_NAME
Karel Zak 18b0e4
index c13af9021..1891157ed 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_NO_NAME
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_NO_NAME
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=NO_NAME
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=NO\x20NAME
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_empty b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_empty
Karel Zak 18b0e4
index 73c553e54..206782fa9 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_empty
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_empty
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=92B4-BA66
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_label2 b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_label2
Karel Zak 18b0e4
index 4b8146208..cf635a218 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_label2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_dosfslabel_label2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=label2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=label2
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label2
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_NO_NAME b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_NO_NAME
Karel Zak 18b0e4
index c13af9021..1891157ed 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_NO_NAME
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_NO_NAME
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=NO_NAME
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=NO\x20NAME
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_erase b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_erase
Karel Zak 18b0e4
index 73c553e54..206782fa9 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_erase
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_mlabel_erase
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=92B4-BA66
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_erase b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_erase
Karel Zak 18b0e4
index 075278de4..6088d17be 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_erase
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_erase
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label1
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT_ENC=label1
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_label2 b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_label2
Karel Zak 18b0e4
index fe4884d28..802a66f14 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_label2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_label1_xp_label2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LABEL2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LABEL2
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label1
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_none b/tests/expected/blkid/low-probe-fat32_mkdosfs_none
Karel Zak 18b0e4
index 547517616..66a7923ed 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_none
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_none
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=E6B8-AF8C
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_NO_NAME b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_NO_NAME
Karel Zak 18b0e4
index 547517616..66a7923ed 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_NO_NAME
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_NO_NAME
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=E6B8-AF8C
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1 b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1
Karel Zak 18b0e4
index dfacd9b6a..e45da35d8 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label1
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT_ENC=label1
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1_xp_label2 b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1_xp_label2
Karel Zak 18b0e4
index 142259c87..ad2bf8fda 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1_xp_label2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_dosfslabel_label1_xp_label2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LABEL2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LABEL2
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label1
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1 b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1
Karel Zak 18b0e4
index d1360ada0..a5e490064 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LABEL1
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LABEL1
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1_dosfslabel_label2 b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1_dosfslabel_label2
Karel Zak 18b0e4
index c078359c6..e3473b9cc 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1_dosfslabel_label2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_mkdosfs_none_xp_label1_dosfslabel_label2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=label2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=label2
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label2
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_xp_label1 b/tests/expected/blkid/low-probe-fat32_xp_label1
Karel Zak 18b0e4
index 8a27d7e1c..9a82d11c2 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_xp_label1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_xp_label1
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LABEL1
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LABEL1
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_xp_none b/tests/expected/blkid/low-probe-fat32_xp_none
Karel Zak 18b0e4
index f8271c2b7..b4d6f4fdf 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_xp_none
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_xp_none
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=54B6-DC94
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_xp_none_dosfslabel_label1 b/tests/expected/blkid/low-probe-fat32_xp_none_dosfslabel_label1
Karel Zak 18b0e4
index fdc5eb6f6..560b394a0 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_xp_none_dosfslabel_label1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_xp_none_dosfslabel_label1
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=label1
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT_ENC=label1
Karel Zak 18b0e4
 ID_FS_TYPE=vfat
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-fat32_xp_none_mlabel_label1 b/tests/expected/blkid/low-probe-fat32_xp_none_mlabel_label1
Karel Zak 18b0e4
index 74f271519..1b0a87806 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-fat32_xp_none_mlabel_label1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-fat32_xp_none_mlabel_label1
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LABEL1
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LABEL1
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=LABEL1
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-gfs2 b/tests/expected/blkid/low-probe-gfs2
Karel Zak 18b0e4
index f04529bc0..8b2840f41 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-gfs2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-gfs2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=mycluster:mygfs2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=mycluster:mygfs2
Karel Zak 18b0e4
 ID_FS_TYPE=gfs2
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-hfsplus b/tests/expected/blkid/low-probe-hfsplus
Karel Zak 18b0e4
index cc351a042..07e60ea25 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-hfsplus
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-hfsplus
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=123456789ABCDE
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=123456789ABCDE
Karel Zak 18b0e4
 ID_FS_TYPE=hfsplus
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-hpfs b/tests/expected/blkid/low-probe-hpfs
Karel Zak 18b0e4
index 7e4a12b97..a6198c640 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-hpfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-hpfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=P01_S16A
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=P01\x20S16A
Karel Zak 18b0e4
 ID_FS_TYPE=hpfs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso b/tests/expected/blkid/low-probe-iso
Karel Zak 18b0e4
index 5c8a3d0fd..3e9be8f98 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=GENISOIMAGE\x20ISO\x209660\x2fHFS\x20FILESYSTEM\x20CREATOR\x20\x28C\x29\x201993\x20E.YOUNGDALE\x20\x28C\x29\x201997-2006\x20J.PEARSON\x2fJ.SCHILLING\x20\x28C\x29\x202006-2007\x20CDRKIT\x20TEAM
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=IsoVolumeName
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=IsoVolumeName
Karel Zak 18b0e4
 ID_FS_SYSTEM_ID=LINUX
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-different-iso-joliet-label b/tests/expected/blkid/low-probe-iso-different-iso-joliet-label
Karel Zak 18b0e4
index f618d024d..34663a358 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-different-iso-joliet-label
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-different-iso-joliet-label
Karel Zak 18b0e4
@@ -1,6 +1,7 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Joliet\x20Application
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
 ID_FS_DATA_PREPARER_ID=Joliet\x20Preparer
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=Joliet_Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Joliet\x20Label
Karel Zak 18b0e4
 ID_FS_PUBLISHER_ID=Joliet\x20Publisher
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-joliet b/tests/expected/blkid/low-probe-iso-joliet
Karel Zak 18b0e4
index e97dbde3c..c92484a75 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-joliet
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-joliet
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=GENISOIMAGE\x20ISO\x209660\x2fHFS\x20FILESYSTEM\x20CREATOR\x20\x28C\x29\x201993\x20E.YOUNGDALE\x20\x28C\x29\x201997-2006\x20J.PEARSON\x2fJ.SCHILLING\x20\x28C\x29\x202006-2007\x20CDRKIT\x20TEAM
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=ThisWonderfulLabelIsVeryVeryLong
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=ThisWonderfulLabelIsVeryVeryLong
Karel Zak 18b0e4
 ID_FS_SYSTEM_ID=LINUX
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-multi-genisoimage-0 b/tests/expected/blkid/low-probe-iso-multi-genisoimage-0
Karel Zak 18b0e4
index d8217f529..eed747e48 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-multi-genisoimage-0
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-multi-genisoimage-0
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=GENISOIMAGE\x20ISO\x209660\x2fHFS\x20FILESYSTEM\x20CREATOR\x20\x28C\x29\x201993\x20E.YOUNGDALE\x20\x28C\x29\x201997-2006\x20J.PEARSON\x2fJ.SCHILLING\x20\x28C\x29\x202006-2007\x20CDRKIT\x20TEAM
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=first_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=first\x20session
Karel Zak 18b0e4
 ID_FS_SYSTEM_ID=LINUX
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-multi-genisoimage-174 b/tests/expected/blkid/low-probe-iso-multi-genisoimage-174
Karel Zak 18b0e4
index 9c18d0dde..aa71cff78 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-multi-genisoimage-174
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-multi-genisoimage-174
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=GENISOIMAGE\x20ISO\x209660\x2fHFS\x20FILESYSTEM\x20CREATOR\x20\x28C\x29\x201993\x20E.YOUNGDALE\x20\x28C\x29\x201997-2006\x20J.PEARSON\x2fJ.SCHILLING\x20\x28C\x29\x202006-2007\x20CDRKIT\x20TEAM
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=second_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=second\x20session
Karel Zak 18b0e4
 ID_FS_SYSTEM_ID=LINUX
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-multi-genisoimage-348 b/tests/expected/blkid/low-probe-iso-multi-genisoimage-348
Karel Zak 18b0e4
index 7e3c5ba01..caf2010a5 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-multi-genisoimage-348
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-multi-genisoimage-348
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=GENISOIMAGE\x20ISO\x209660\x2fHFS\x20FILESYSTEM\x20CREATOR\x20\x28C\x29\x201993\x20E.YOUNGDALE\x20\x28C\x29\x201997-2006\x20J.PEARSON\x2fJ.SCHILLING\x20\x28C\x29\x202006-2007\x20CDRKIT\x20TEAM
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=third_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=third\x20session
Karel Zak 18b0e4
 ID_FS_SYSTEM_ID=LINUX
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-rr-joliet b/tests/expected/blkid/low-probe-iso-rr-joliet
Karel Zak 18b0e4
index 711e04bbc..fdfc69616 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-rr-joliet
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-rr-joliet
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=GENISOIMAGE\x20ISO\x209660\x2fHFS\x20FILESYSTEM\x20CREATOR\x20\x28C\x29\x201993\x20E.YOUNGDALE\x20\x28C\x29\x201997-2006\x20J.PEARSON\x2fJ.SCHILLING\x20\x28C\x29\x202006-2007\x20CDRKIT\x20TEAM
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=ThisIsVolumeName
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=ThisIsVolumeName
Karel Zak 18b0e4
 ID_FS_SYSTEM_ID=LINUX
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-iso-unicode-long-label b/tests/expected/blkid/low-probe-iso-unicode-long-label
Karel Zak 18b0e4
index 270ee8489..11403fdb0 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-iso-unicode-long-label
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-iso-unicode-long-label
Karel Zak 18b0e4
@@ -1,6 +1,7 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Nero\x20Linux
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
 ID_FS_DATA_PREPARER_ID=Naïve\x20and\x20very\x20looooooooooooooooooooooooooooooooooooooooooooooooOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOONG\x20DATA\x20PREPARER
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=Naïve_and_very_lOOOOOOOONG_LABEL
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Naïve\x20and\x20very\x20lOOOOOOOONG_LABEL
Karel Zak 18b0e4
 ID_FS_PUBLISHER_ID=Naïve\x20and\x20very\x20looooooooooooooooooooooooooooooooooooooooooooooooOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOONG\x20PUBLISHER
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-jbd b/tests/expected/blkid/low-probe-jbd
Karel Zak 18b0e4
index f5462a2a3..36c7d4062 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-jbd
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-jbd
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_FSLASTBLOCK=1024
Karel Zak 18b0e4
 ID_FS_LOGUUID=0d7a07df-7b06-4829-bce7-3b9c3ece570c
Karel Zak 18b0e4
 ID_FS_TYPE=jbd
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-jfs b/tests/expected/blkid/low-probe-jfs
Karel Zak 18b0e4
index ac7d31bac..ee6e1ead8 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-jfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-jfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=test-jfs
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-jfs
Karel Zak 18b0e4
 ID_FS_TYPE=jfs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-minix-BE b/tests/expected/blkid/low-probe-minix-BE
Karel Zak 18b0e4
index f73f1b5db..c6da3c195 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-minix-BE
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-minix-BE
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_TYPE=minix
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_VERSION=1
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-minix-LE b/tests/expected/blkid/low-probe-minix-LE
Karel Zak 18b0e4
index f73f1b5db..c6da3c195 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-minix-LE
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-minix-LE
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_TYPE=minix
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_VERSION=1
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-nilfs2 b/tests/expected/blkid/low-probe-nilfs2
Karel Zak 18b0e4
index ff27e0b23..4bd466552 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-nilfs2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-nilfs2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=test-nilfs2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-nilfs2
Karel Zak 18b0e4
 ID_FS_TYPE=nilfs2
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-ntfs b/tests/expected/blkid/low-probe-ntfs
Karel Zak 18b0e4
index 790157aaa..64722f2a7 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-ntfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-ntfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=Новый_том
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Новый\x20том
Karel Zak 18b0e4
 ID_FS_TYPE=ntfs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-ocfs2 b/tests/expected/blkid/low-probe-ocfs2
Karel Zak 18b0e4
index 9b84dbe67..99189f39f 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-ocfs2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-ocfs2
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_LABEL=test-ocfs2
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-ocfs2
Karel Zak 18b0e4
 ID_FS_TYPE=ocfs2
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-reiser3 b/tests/expected/blkid/low-probe-reiser3
Karel Zak 18b0e4
index 1c4b1478d..3ae71201c 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-reiser3
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-reiser3
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=TESTREISER
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=TESTREISER
Karel Zak 18b0e4
 ID_FS_TYPE=reiserfs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-reiser4 b/tests/expected/blkid/low-probe-reiser4
Karel Zak 18b0e4
index 66df064fd..f8896bb57 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-reiser4
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-reiser4
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=TESTR4
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=TESTR4
Karel Zak 18b0e4
 ID_FS_TYPE=reiser4
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-romfs b/tests/expected/blkid/low-probe-romfs
Karel Zak 18b0e4
index b56a6b881..2c606ecc1 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-romfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-romfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_LABEL=test-romfs
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-romfs
Karel Zak 18b0e4
 ID_FS_TYPE=romfs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-small-fat32 b/tests/expected/blkid/low-probe-small-fat32
Karel Zak 18b0e4
index d9c63c710..e6ffb6550 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-small-fat32
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-small-fat32
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=TESTVFAT
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=TESTVFAT
Karel Zak 18b0e4
 ID_FS_LABEL_FATBOOT=TESTVFAT
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf b/tests/expected/blkid/low-probe-udf
Karel Zak 18b0e4
index b00ae7b8a..d8cd25bbf 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=genisoimage
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=test-udf
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=test-udf
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=test-udf
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-bdr-2.60-nero b/tests/expected/blkid/low-probe-udf-bdr-2.60-nero
Karel Zak 18b0e4
index 006499223..677c2a353 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-bdr-2.60-nero
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-bdr-2.60-nero
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Nero
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-cd-mkudfiso-20100208 b/tests/expected/blkid/low-probe-udf-cd-mkudfiso-20100208
Karel Zak 18b0e4
index 649e5be94..924d78f7d 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-cd-mkudfiso-20100208
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-cd-mkudfiso-20100208
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=mkudfiso
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=Volume_Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Volume\x20Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Volume\x20Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-cd-nero-6 b/tests/expected/blkid/low-probe-udf-cd-nero-6
Karel Zak 18b0e4
index 7474bc4db..bc1b5fe85 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-cd-nero-6
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-cd-nero-6
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Nero
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=UDF_Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=UDF\x20Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=UDF\x20Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-macosx-2.60-4096 b/tests/expected/blkid/low-probe-udf-hdd-macosx-2.60-4096
Karel Zak 18b0e4
index 152877a13..c8e5ac396 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-macosx-2.60-4096
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-macosx-2.60-4096
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Mac\x20OS\x20X\x20udf\x20newfs_udf
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=Untitled_UDF_Volume
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Untitled\x20UDF\x20Volume
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Untitled\x20UDF\x20Volume
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-1 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-1
Karel Zak 18b0e4
index 930259204..0f073c007 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-1
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LinuxUDF
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LinuxUDF
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=LinuxUDF
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-2 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-2
Karel Zak 18b0e4
index a0fdb2ee2..c55e23326 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.0.0-2
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-1 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-1
Karel Zak 18b0e4
index ef36b84e0..37586914c 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-1
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-1
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-2 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-2
Karel Zak 18b0e4
index 58a8bf612..521e0ff12 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-2
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-3 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-3
Karel Zak 18b0e4
index 0e1e7706b..e720867bd 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-3
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-3
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=ÿ
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=ÿ
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=ÿ
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-4 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-4
Karel Zak 18b0e4
index 00561717d..ecd8c3c9f 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-4
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-4
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=1024
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=1024
Karel Zak 18b0e4
 ID_FS_LABEL=Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-5 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-5
Karel Zak 18b0e4
index 69ee62f97..df2d901f5 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-5
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-5
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=Label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-6 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-6
Karel Zak 18b0e4
index 2d3876b7e..aba8d2e48 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-6
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-6
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-7 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-7
Karel Zak 18b0e4
index e60bf1793..67faf3424 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-7
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-7
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_LABEL=Label4096
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=Label4096
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=Label4096
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-8 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-8
Karel Zak 18b0e4
index 078578242..11a3bde27 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-8
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-1.3-8
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=LinuxUDF
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=LinuxUDF
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=LinuxUDF
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-2.2 b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-2.2
Karel Zak 18b0e4
index 77300512a..c61e8b5eb 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-mkudffs-2.2
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-mkudffs-2.2
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=😀
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=😀
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=😀
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.5 b/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.5
Karel Zak 18b0e4
index 6cb1ffeee..c173bb8d6 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.5
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.5
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=UDFtoolkit
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=discname
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=discname
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=discname
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.7 b/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.7
Karel Zak 18b0e4
index 7a35e0f0d..4c71a0cce 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.7
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-udfclient-0.7.7
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=UDFtoolkit
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=discname
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=discname
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=discname
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-hdd-win7 b/tests/expected/blkid/low-probe-udf-hdd-win7
Karel Zak 18b0e4
index ad9616bc7..eafa7f019 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-hdd-win7
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-hdd-win7
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Microsoft\x20Windows
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=My_volume_label
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=My\x20volume\x20label
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=My\x20volume\x20label
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-multi-genisoimage-0 b/tests/expected/blkid/low-probe-udf-multi-genisoimage-0
Karel Zak 18b0e4
index f598baaa0..5eeb78d33 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-multi-genisoimage-0
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-multi-genisoimage-0
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=genisoimage
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=first_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=first\x20session
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=first\x20session
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-multi-genisoimage-417 b/tests/expected/blkid/low-probe-udf-multi-genisoimage-417
Karel Zak 18b0e4
index bb4d8c72f..5d2c7843f 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-multi-genisoimage-417
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-multi-genisoimage-417
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=genisoimage
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=second_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=second\x20session
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=second\x20session
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-multi-genisoimage-834 b/tests/expected/blkid/low-probe-udf-multi-genisoimage-834
Karel Zak 18b0e4
index bc4dcba65..aa7a1630a 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-multi-genisoimage-834
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-multi-genisoimage-834
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=genisoimage
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=third_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=third\x20session
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=third\x20session
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-multi-mkudffs-0 b/tests/expected/blkid/low-probe-udf-multi-mkudffs-0
Karel Zak 18b0e4
index 07557d7ca..a1a234e89 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-multi-mkudffs-0
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-multi-mkudffs-0
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=first_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=first\x20session
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=first\x20session
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-multi-mkudffs-320 b/tests/expected/blkid/low-probe-udf-multi-mkudffs-320
Karel Zak 18b0e4
index 458cf3e23..84285894d 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-multi-mkudffs-320
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-multi-mkudffs-320
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=second_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=second\x20session
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=second\x20session
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-udf-multi-mkudffs-640 b/tests/expected/blkid/low-probe-udf-multi-mkudffs-640
Karel Zak 18b0e4
index 04cc4f11c..59c914280 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-udf-multi-mkudffs-640
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-udf-multi-mkudffs-640
Karel Zak 18b0e4
@@ -1,5 +1,6 @@
Karel Zak 18b0e4
 ID_FS_APPLICATION_ID=Linux\x20mkudffs
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_LABEL=third_session
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=third\x20session
Karel Zak 18b0e4
 ID_FS_LOGICAL_VOLUME_ID=third\x20session
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-ufs b/tests/expected/blkid/low-probe-ufs
Karel Zak 18b0e4
index 256f065d2..d771bc8d5 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-ufs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-ufs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=2048
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=2048
Karel Zak 18b0e4
 ID_FS_TYPE=ufs
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
 ID_FS_UUID=4b0e640aec56ac70
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-xfs b/tests/expected/blkid/low-probe-xfs
Karel Zak 18b0e4
index be9c4194a..0eb803f52 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-xfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-xfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_FSLASTBLOCK=4096
Karel Zak 18b0e4
 ID_FS_FSSIZE=11862016
Karel Zak 18b0e4
 ID_FS_LABEL=test-xfs
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-xfs-v5 b/tests/expected/blkid/low-probe-xfs-v5
Karel Zak 18b0e4
index fd2cba933..7525b0888 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-xfs-v5
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-xfs-v5
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_FSLASTBLOCK=5120
Karel Zak 18b0e4
 ID_FS_FSSIZE=17469440
Karel Zak 18b0e4
 ID_FS_LABEL=test-xfs-v5
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-zfs b/tests/expected/blkid/low-probe-zfs
Karel Zak 18b0e4
index 0e7af2866..f7e481b54 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-zfs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-zfs
Karel Zak 18b0e4
@@ -1,4 +1,5 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=512
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=512
Karel Zak 18b0e4
 ID_FS_LABEL=tank
Karel Zak 18b0e4
 ID_FS_LABEL_ENC=tank
Karel Zak 18b0e4
 ID_FS_TYPE=zfs_member
Karel Zak 18b0e4
diff --git a/tests/expected/blkid/low-probe-zonefs b/tests/expected/blkid/low-probe-zonefs
Karel Zak 18b0e4
index cc15459a1..59c86f3fd 100644
Karel Zak 18b0e4
--- a/tests/expected/blkid/low-probe-zonefs
Karel Zak 18b0e4
+++ b/tests/expected/blkid/low-probe-zonefs
Karel Zak 18b0e4
@@ -1,3 +1,4 @@
Karel Zak 18b0e4
 ID_FS_BLOCK_SIZE=4096
Karel Zak 18b0e4
+ID_FS_FSBLOCKSIZE=4096
Karel Zak 18b0e4
 ID_FS_TYPE=zonefs
Karel Zak 18b0e4
 ID_FS_USAGE=filesystem
Karel Zak 18b0e4
-- 
Karel Zak 18b0e4
2.36.1
Karel Zak 18b0e4