From: Darrick J. Wong <darrick.wong@xxxxxxxxxx> If we encounter a directory with an entry that points to inode zero, we'll crash due to an ASSERT during process_inode_chunk. Instead, just set the in-core parent to NULLFSINO so that phase 6 will reset it for us. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- repair/dino_chunks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/repair/dino_chunks.c b/repair/dino_chunks.c index 17de95f..2d34079 100644 --- a/repair/dino_chunks.c +++ b/repair/dino_chunks.c @@ -874,7 +874,8 @@ process_inode_chunk( * be solid then. */ if (!ino_discovery) { - ASSERT(parent != 0); + if (parent == 0) + parent = NULLFSINO; set_inode_parent(ino_rec, irec_offset, parent); ASSERT(parent == get_inode_parent(ino_rec, irec_offset)); -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html