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