d8d8bc
From 96a699563b65b6a9204f2c3184faf1366155a614 Mon Sep 17 00:00:00 2001
d8d8bc
From: Andrey Albershteyn <aalbersh@redhat.com>
d8d8bc
Date: Wed, 27 Apr 2022 17:33:33 +0200
d8d8bc
Subject: blkid: add tests for FSLASTBLOCK tag
d8d8bc
d8d8bc
Upstream: http://github.com/util-linux/util-linux/commit/800ed56f4
d8d8bc
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2064810
d8d8bc
Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
d8d8bc
---
d8d8bc
 misc-utils/blkid.c                    | 2 +-
d8d8bc
 tests/expected/blkid/low-probe-btrfs  | 1 +
d8d8bc
 tests/expected/blkid/low-probe-ext2   | 1 +
d8d8bc
 tests/expected/blkid/low-probe-ext3   | 1 +
d8d8bc
 tests/expected/blkid/low-probe-jbd    | 1 +
d8d8bc
 tests/expected/blkid/low-probe-xfs    | 1 +
d8d8bc
 tests/expected/blkid/low-probe-xfs-v5 | 1 +
d8d8bc
 7 files changed, 7 insertions(+), 1 deletion(-)
d8d8bc
d8d8bc
diff --git a/misc-utils/blkid.c b/misc-utils/blkid.c
d8d8bc
index 4f456be52..f2b190ce3 100644
d8d8bc
--- a/misc-utils/blkid.c
d8d8bc
+++ b/misc-utils/blkid.c
d8d8bc
@@ -893,7 +893,7 @@ int main(int argc, char **argv)
d8d8bc
 				BLKID_SUBLKS_LABEL | BLKID_SUBLKS_UUID |
d8d8bc
 				BLKID_SUBLKS_TYPE | BLKID_SUBLKS_SECTYPE |
d8d8bc
 				BLKID_SUBLKS_USAGE | BLKID_SUBLKS_VERSION |
d8d8bc
-				BLKID_SUBLKS_FSSIZE);
d8d8bc
+				BLKID_SUBLKS_FSSIZE | BLKID_SUBLKS_FSLASTBLOCK);
d8d8bc
 
d8d8bc
 
d8d8bc
 			if (fltr_usage &&
d8d8bc
diff --git a/tests/expected/blkid/low-probe-btrfs b/tests/expected/blkid/low-probe-btrfs
d8d8bc
index 509fac378..48649389a 100644
d8d8bc
--- a/tests/expected/blkid/low-probe-btrfs
d8d8bc
+++ b/tests/expected/blkid/low-probe-btrfs
d8d8bc
@@ -1,4 +1,5 @@
d8d8bc
 ID_FS_BLOCK_SIZE=4096
d8d8bc
+ID_FS_FSLASTBLOCK=29440
d8d8bc
 ID_FS_TYPE=btrfs
d8d8bc
 ID_FS_USAGE=filesystem
d8d8bc
 ID_FS_UUID=d4a78b72-55e4-4811-86a6-09af936d43f9
d8d8bc
diff --git a/tests/expected/blkid/low-probe-ext2 b/tests/expected/blkid/low-probe-ext2
d8d8bc
index 087da97a4..e236c6e8a 100644
d8d8bc
--- a/tests/expected/blkid/low-probe-ext2
d8d8bc
+++ b/tests/expected/blkid/low-probe-ext2
d8d8bc
@@ -1,4 +1,5 @@
d8d8bc
 ID_FS_BLOCK_SIZE=1024
d8d8bc
+ID_FS_FSLASTBLOCK=100
d8d8bc
 ID_FS_LABEL=test-ext2
d8d8bc
 ID_FS_LABEL_ENC=test-ext2
d8d8bc
 ID_FS_TYPE=ext2
d8d8bc
diff --git a/tests/expected/blkid/low-probe-ext3 b/tests/expected/blkid/low-probe-ext3
d8d8bc
index 8684884c1..164fefb7b 100644
d8d8bc
--- a/tests/expected/blkid/low-probe-ext3
d8d8bc
+++ b/tests/expected/blkid/low-probe-ext3
d8d8bc
@@ -1,4 +1,5 @@
d8d8bc
 ID_FS_BLOCK_SIZE=1024
d8d8bc
+ID_FS_FSLASTBLOCK=2048
d8d8bc
 ID_FS_LABEL=test-ext3
d8d8bc
 ID_FS_LABEL_ENC=test-ext3
d8d8bc
 ID_FS_SEC_TYPE=ext2
d8d8bc
diff --git a/tests/expected/blkid/low-probe-jbd b/tests/expected/blkid/low-probe-jbd
d8d8bc
index c9f9f6b79..f5462a2a3 100644
d8d8bc
--- a/tests/expected/blkid/low-probe-jbd
d8d8bc
+++ b/tests/expected/blkid/low-probe-jbd
d8d8bc
@@ -1,4 +1,5 @@
d8d8bc
 ID_FS_BLOCK_SIZE=1024
d8d8bc
+ID_FS_FSLASTBLOCK=1024
d8d8bc
 ID_FS_LOGUUID=0d7a07df-7b06-4829-bce7-3b9c3ece570c
d8d8bc
 ID_FS_TYPE=jbd
d8d8bc
 ID_FS_USAGE=other
d8d8bc
diff --git a/tests/expected/blkid/low-probe-xfs b/tests/expected/blkid/low-probe-xfs
d8d8bc
index a91e92bcc..be9c4194a 100644
d8d8bc
--- a/tests/expected/blkid/low-probe-xfs
d8d8bc
+++ b/tests/expected/blkid/low-probe-xfs
d8d8bc
@@ -1,4 +1,5 @@
d8d8bc
 ID_FS_BLOCK_SIZE=512
d8d8bc
+ID_FS_FSLASTBLOCK=4096
d8d8bc
 ID_FS_FSSIZE=11862016
d8d8bc
 ID_FS_LABEL=test-xfs
d8d8bc
 ID_FS_LABEL_ENC=test-xfs
d8d8bc
diff --git a/tests/expected/blkid/low-probe-xfs-v5 b/tests/expected/blkid/low-probe-xfs-v5
d8d8bc
index 129b41f26..fd2cba933 100644
d8d8bc
--- a/tests/expected/blkid/low-probe-xfs-v5
d8d8bc
+++ b/tests/expected/blkid/low-probe-xfs-v5
d8d8bc
@@ -1,4 +1,5 @@
d8d8bc
 ID_FS_BLOCK_SIZE=512
d8d8bc
+ID_FS_FSLASTBLOCK=5120
d8d8bc
 ID_FS_FSSIZE=17469440
d8d8bc
 ID_FS_LABEL=test-xfs-v5
d8d8bc
 ID_FS_LABEL_ENC=test-xfs-v5
d8d8bc
-- 
d8d8bc
2.36.1
d8d8bc