Blame SOURCES/xfsprogs-4.20-xfs_repair-initialize-non-leaf-finobt-blocks-with-co.patch

e59f31
From 051dae5efb4fc7c1c47ccb72ff161241fb0815ee Mon Sep 17 00:00:00 2001
e59f31
From: Brian Foster <bfoster@redhat.com>
e59f31
Date: Mon, 28 Jan 2019 16:05:16 -0600
e59f31
Subject: [PATCH] xfs_repair: initialize non-leaf finobt blocks with correct magic
e59f31
e59f31
The free inode btree construction code in xfs_repair has a bug where
e59f31
any non-leaf nodes outside of the leftmost block at the associated
e59f31
level in the tree are incorrectly initialized with the inobt magic
e59f31
value. Update the prop_ino_cursor() path responsible for growing the
e59f31
non-leaf portion of the inode btrees to use the btnum of the
e59f31
specific tree being generated rather than the hardcoded inode btree
e59f31
type.
e59f31
e59f31
Signed-off-by: Brian Foster <bfoster@redhat.com>
e59f31
Reported-by: Lucas Stach <l.stach@pengutronix.de>
e59f31
Root-caused-by: Lucas Stach <l.stach@pengutronix.de>
e59f31
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
e59f31
Reviewed-by: Dave Chinner <dchinner@redhat.com>
e59f31
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
e59f31
---
e59f31
e59f31
(backported for RHEL7)
e59f31
e59f31
--- xfsprogs-4.5.0/repair/phase5.c	2016-02-28 17:39:26.000000000 -0600
e59f31
+++ xfsprogs-4.5.0-mine/repair/phase5.c	2019-02-05 11:18:28.046228329 -0600
e59f31
@@ -1003,7 +1003,7 @@ init_ino_cursor(xfs_mount_t *mp, xfs_agn
e59f31
 
e59f31
 static void
e59f31
 prop_ino_cursor(xfs_mount_t *mp, xfs_agnumber_t agno, bt_status_t *btree_curs,
e59f31
-	xfs_agino_t startino, int level)
e59f31
+	__uint32_t magic, xfs_agino_t startino, int level)
e59f31
 {
e59f31
 	struct xfs_btree_block	*bt_hdr;
e59f31
 	xfs_inobt_key_t		*bt_key;
e59f31
@@ -1025,7 +1025,7 @@ prop_ino_cursor(xfs_mount_t *mp, xfs_agn
e59f31
 		 * first path up the left side of the tree
e59f31
 		 * where the agbno's are already set up
e59f31
 		 */
e59f31
-		prop_ino_cursor(mp, agno, btree_curs, startino, level);
e59f31
+		prop_ino_cursor(mp, agno, btree_curs, magic, startino, level);
e59f31
 	}
e59f31
 
e59f31
 	if (be16_to_cpu(bt_hdr->bb_numrecs) ==
e59f31
@@ -1062,11 +1062,11 @@ prop_ino_cursor(xfs_mount_t *mp, xfs_agn
e59f31
 		bt_hdr = XFS_BUF_TO_BLOCK(lptr->buf_p);
e59f31
 		memset(bt_hdr, 0, mp->m_sb.sb_blocksize);
e59f31
 		if (xfs_sb_version_hascrc(&mp->m_sb))
e59f31
-			xfs_btree_init_block(mp, lptr->buf_p, XFS_IBT_CRC_MAGIC,
e59f31
+			xfs_btree_init_block(mp, lptr->buf_p, magic,
e59f31
 						level, 0, agno,
e59f31
 						XFS_BTREE_CRC_BLOCKS);
e59f31
 		else
e59f31
-			xfs_btree_init_block(mp, lptr->buf_p, XFS_IBT_MAGIC,
e59f31
+			xfs_btree_init_block(mp, lptr->buf_p, magic,
e59f31
 						level, 0, agno, 0);
e59f31
 
e59f31
 		bt_hdr->bb_u.s.bb_leftsib = cpu_to_be32(lptr->prev_agbno);
e59f31
@@ -1074,7 +1074,7 @@ prop_ino_cursor(xfs_mount_t *mp, xfs_agn
e59f31
 		/*
e59f31
 		 * propagate extent record for first extent in new block up
e59f31
 		 */
e59f31
-		prop_ino_cursor(mp, agno, btree_curs, startino, level);
e59f31
+		prop_ino_cursor(mp, agno, btree_curs, magic, startino, level);
e59f31
 	}
e59f31
 	/*
e59f31
 	 * add inode info to current block
e59f31
@@ -1236,7 +1236,7 @@ build_ino_tree(xfs_mount_t *mp, xfs_agnu
e59f31
 			lptr->modulo--;
e59f31
 
e59f31
 		if (lptr->num_recs_pb > 0)
e59f31
-			prop_ino_cursor(mp, agno, btree_curs,
e59f31
+			prop_ino_cursor(mp, agno, btree_curs, magic,
e59f31
 					ino_rec->ino_startnum, 0);
e59f31
 
e59f31
 		bt_rec = (xfs_inobt_rec_t *)