673c78
From e81cc68312e91ab7086188542f3377605bf144a8 Mon Sep 17 00:00:00 2001
673c78
From: Andrey Albershteyn <aalbersh@redhat.com>
673c78
Date: Mon, 25 Apr 2022 17:08:38 +0200
673c78
Subject: libblkid: implement FSSIZE calculation for XFS
673c78
673c78
The implementation is similar to one provided by statfs(2) + lsblk.
673c78
673c78
Upstream: http://github.com/util-linux/util-linux/commit/d7ec8fe8e
673c78
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2064810
673c78
Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
673c78
---
673c78
 libblkid/src/superblocks/xfs.c | 10 ++++++++++
673c78
 1 file changed, 10 insertions(+)
673c78
673c78
diff --git a/libblkid/src/superblocks/xfs.c b/libblkid/src/superblocks/xfs.c
673c78
index d8c6fb6d4..444050f55 100644
673c78
--- a/libblkid/src/superblocks/xfs.c
673c78
+++ b/libblkid/src/superblocks/xfs.c
673c78
@@ -158,6 +158,15 @@ static int xfs_verify_sb(struct xfs_super_block *ondisk)
673c78
 	return 1;
673c78
 }
673c78
 
673c78
+static uint64_t xfs_fssize(struct xfs_super_block *xs)
673c78
+{
673c78
+	uint32_t lsize = xs->sb_logstart ? xs->sb_logblocks : 0;
673c78
+	uint64_t avail_blocks = be64_to_cpu(xs->sb_dblocks) - be32_to_cpu(lsize);
673c78
+	uint64_t fssize = avail_blocks*be32_to_cpu(xs->sb_blocksize);
673c78
+
673c78
+	return fssize;
673c78
+}
673c78
+
673c78
 static int probe_xfs(blkid_probe pr, const struct blkid_idmag *mag)
673c78
 {
673c78
 	struct xfs_super_block *xs;
673c78
@@ -173,6 +182,7 @@ static int probe_xfs(blkid_probe pr, const struct blkid_idmag *mag)
673c78
 		blkid_probe_set_label(pr, (unsigned char *) xs->sb_fname,
673c78
 				sizeof(xs->sb_fname));
673c78
 	blkid_probe_set_uuid(pr, xs->sb_uuid);
673c78
+	blkid_probe_set_fssize(pr, xfs_fssize(xs));
673c78
 	blkid_probe_set_block_size(pr, be16_to_cpu(xs->sb_sectsize));
673c78
 	return 0;
673c78
 }
673c78
-- 
673c78
2.36.1
673c78