From: Darrick J. Wong Date: Wed, 24 Feb 2021 01:20:42 +0000 (-0500) Subject: xfs_repair: allow upgrades on v5 filesystems X-Git-Tag: v5.11.0-rc1~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b1a9a241a7398113d3e4bc97133a27a953e2509;p=thirdparty%2Fxfsprogs-dev.git xfs_repair: allow upgrades on v5 filesystems Add some helper functions so that we can allow users to upgrade V5 filesystems in a sane manner. This just lands the boilerplate; the actual feature validation and whatnot will land in the next patches. Signed-off-by: Darrick J. Wong Reviewed-by: Brian Foster [sandeen: change subject slightly] Signed-off-by: Eric Sandeen --- diff --git a/repair/phase2.c b/repair/phase2.c index 952ac4a58..f654edcce 100644 --- a/repair/phase2.c +++ b/repair/phase2.c @@ -131,6 +131,40 @@ zero_log( libxfs_max_lsn = log->l_last_sync_lsn; } +/* Perform the user's requested upgrades on filesystem. */ +static void +upgrade_filesystem( + struct xfs_mount *mp) +{ + struct xfs_buf *bp; + bool dirty = false; + int error; + + if (no_modify || !dirty) + return; + + bp = libxfs_getsb(mp); + if (!bp || bp->b_error) { + do_error( + _("couldn't get superblock for feature upgrade, err=%d\n"), + bp ? bp->b_error : ENOMEM); + } else { + libxfs_sb_to_disk(bp->b_addr, &mp->m_sb); + + /* + * Write the primary super to disk immediately so that + * needsrepair will be set if repair doesn't complete. + */ + error = -libxfs_bwrite(bp); + if (error) + do_error( + _("filesystem feature upgrade failed, err=%d\n"), + error); + } + if (bp) + libxfs_buf_relse(bp); +} + /* * ok, at this point, the fs is mounted but the root inode may be * trashed and the ag headers haven't been checked. So we have @@ -235,4 +269,10 @@ phase2( do_warn(_("would correct\n")); } } + + /* + * Upgrade the filesystem now that we've done a preliminary check of + * the superblocks, the AGs, the log, and the metadata inodes. + */ + upgrade_filesystem(mp); }