From: Qu Wenruo <[email protected]>

commit f96d6960abbc52e26ad124e69e6815283d3e1674 upstream.

The error message for inode transid is the same as for inode generation,
which makes us unable to detect the real problem.

Reported-by: Tyler Richmond <[email protected]>
Fixes: 496245cac57e ("btrfs: tree-checker: Verify inode item")
CC: [email protected] # 5.4+
Reviewed-by: Marcos Paulo de Souza <[email protected]>
Signed-off-by: Qu Wenruo <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 fs/btrfs/tree-checker.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/fs/btrfs/tree-checker.c
+++ b/fs/btrfs/tree-checker.c
@@ -772,7 +772,7 @@ static int check_inode_item(struct exten
        /* Here we use super block generation + 1 to handle log tree */
        if (btrfs_inode_generation(leaf, iitem) > super_gen + 1) {
                inode_item_err(fs_info, leaf, slot,
-                       "invalid inode generation: has %llu expect (0, %llu]",
+                       "invalid inode transid: has %llu expect [0, %llu]",
                               btrfs_inode_generation(leaf, iitem),
                               super_gen + 1);
                return -EUCLEAN;


Reply via email to