30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
|
From 28b89361bf574af24c2f9c857d0e5f7c84e2787c Mon Sep 17 00:00:00 2001
|
||
|
From: Karel Zak <kzak@redhat.com>
|
||
|
Date: Tue, 3 Sep 2019 15:10:35 +0200
|
||
|
Subject: [PATCH 38/40] libblkid: (xfs) fix sector size calculation
|
||
|
|
||
|
Reported-by: Anatoly Pugachev <matorola@gmail.com>
|
||
|
Upstream: http://github.com/karelzak/util-linux/commit/2771d40b88660a11306aa5d4e200fc0ebebfe315
|
||
|
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1817726
|
||
|
Signed-off-by: Karel Zak <kzak@redhat.com>
|
||
|
---
|
||
|
libblkid/src/superblocks/xfs.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/libblkid/src/superblocks/xfs.c b/libblkid/src/superblocks/xfs.c
|
||
|
index eb513ac3e..98e59ff7c 100644
|
||
|
--- a/libblkid/src/superblocks/xfs.c
|
||
|
+++ b/libblkid/src/superblocks/xfs.c
|
||
|
@@ -173,7 +173,7 @@ static int probe_xfs(blkid_probe pr, const struct blkid_idmag *mag)
|
||
|
blkid_probe_set_label(pr, (unsigned char *) xs->sb_fname,
|
||
|
sizeof(xs->sb_fname));
|
||
|
blkid_probe_set_uuid(pr, xs->sb_uuid);
|
||
|
- blkid_probe_set_block_size(pr, xs->sb_sectsize * 256);
|
||
|
+ blkid_probe_set_block_size(pr, be16_to_cpu(xs->sb_sectsize));
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.25.4
|
||
|
|