From: "Darrick J. Wong" <djwong@kernel.org>
To: Chandan Babu R <chandan.babu@oracle.com>
Cc: linux-xfs@vger.kernel.org, david@fromorbit.com
Subject: Re: [PATCH V5 19/20] xfsprogs: Add support for upgrading to NREXT64 feature
Date: Mon, 24 Jan 2022 16:35:43 -0800 [thread overview]
Message-ID: <20220125003543.GY13540@magnolia> (raw)
In-Reply-To: <20220121052019.224605-20-chandan.babu@oracle.com>
> xfsprogs: Add support for upgrading to NREXT64 feature
Please shorten the subject line of this patch as well:
"xfs_repair: add suppport for upgrading to nrext64 feature"
On Fri, Jan 21, 2022 at 10:50:18AM +0530, Chandan Babu R wrote:
> This commit adds support to xfs_repair to allow upgrading an existing
> filesystem to support per-inode large extent counters.
>
> Signed-off-by: Chandan Babu R <chandan.babu@oracle.com>
> ---
> man/man8/xfs_admin.8 | 7 +++++++
> repair/globals.c | 1 +
> repair/globals.h | 1 +
> repair/phase2.c | 24 ++++++++++++++++++++++++
> repair/xfs_repair.c | 11 +++++++++++
> 5 files changed, 44 insertions(+)
>
> diff --git a/man/man8/xfs_admin.8 b/man/man8/xfs_admin.8
> index ad28e0f6..d64ed45b 100644
> --- a/man/man8/xfs_admin.8
> +++ b/man/man8/xfs_admin.8
> @@ -149,6 +149,13 @@ Upgrade a filesystem to support larger timestamps up to the year 2486.
> The filesystem cannot be downgraded after this feature is enabled.
> Once enabled, the filesystem will not be mountable by older kernels.
> This feature was added to Linux 5.10.
> +.TP 0.4i
> +.B nrext64
> +Upgrade a filesystem to support large per-inode extent counters. Maximum data
Nit: sentence needs an article, e.g.
"The maximum data fork extent count..."
With that fixed,
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
--D
> +fork extent count will be 2^48 while the maximum attribute fork extent count
> +will be 2^32. The filesystem cannot be downgraded after this feature is
> +enabled. Once enabled, the filesystem will not be mountable by older kernels.
> +This feature was added to Linux 5.18.
> .RE
> .TP
> .BI \-U " uuid"
> diff --git a/repair/globals.c b/repair/globals.c
> index f8d4f1e4..c4084985 100644
> --- a/repair/globals.c
> +++ b/repair/globals.c
> @@ -51,6 +51,7 @@ int lazy_count; /* What to set if to if converting */
> bool features_changed; /* did we change superblock feature bits? */
> bool add_inobtcount; /* add inode btree counts to AGI */
> bool add_bigtime; /* add support for timestamps up to 2486 */
> +bool add_nrext64;
>
> /* misc status variables */
>
> diff --git a/repair/globals.h b/repair/globals.h
> index 0f98bd2b..b65e4a2d 100644
> --- a/repair/globals.h
> +++ b/repair/globals.h
> @@ -92,6 +92,7 @@ extern int lazy_count; /* What to set if to if converting */
> extern bool features_changed; /* did we change superblock feature bits? */
> extern bool add_inobtcount; /* add inode btree counts to AGI */
> extern bool add_bigtime; /* add support for timestamps up to 2486 */
> +extern bool add_nrext64;
>
> /* misc status variables */
>
> diff --git a/repair/phase2.c b/repair/phase2.c
> index 4c315055..979e281d 100644
> --- a/repair/phase2.c
> +++ b/repair/phase2.c
> @@ -181,6 +181,28 @@ set_bigtime(
> return true;
> }
>
> +static bool
> +set_nrext64(
> + struct xfs_mount *mp,
> + struct xfs_sb *new_sb)
> +{
> + if (!xfs_has_crc(mp)) {
> + printf(
> + _("Nrext64 only supported on V5 filesystems.\n"));
> + exit(0);
> + }
> +
> + if (xfs_has_nrext64(mp)) {
> + printf(_("Filesystem already supports nrext64.\n"));
> + exit(0);
> + }
> +
> + printf(_("Adding nrext64 to filesystem.\n"));
> + new_sb->sb_features_incompat |= XFS_SB_FEAT_INCOMPAT_NREXT64;
> + new_sb->sb_features_incompat |= XFS_SB_FEAT_INCOMPAT_NEEDSREPAIR;
> + return true;
> +}
> +
> struct check_state {
> struct xfs_sb sb;
> uint64_t features;
> @@ -380,6 +402,8 @@ upgrade_filesystem(
> dirty |= set_inobtcount(mp, &new_sb);
> if (add_bigtime)
> dirty |= set_bigtime(mp, &new_sb);
> + if (add_nrext64)
> + dirty |= set_nrext64(mp, &new_sb);
> if (!dirty)
> return;
>
> diff --git a/repair/xfs_repair.c b/repair/xfs_repair.c
> index de8617ba..c4705cf2 100644
> --- a/repair/xfs_repair.c
> +++ b/repair/xfs_repair.c
> @@ -67,6 +67,7 @@ enum c_opt_nums {
> CONVERT_LAZY_COUNT = 0,
> CONVERT_INOBTCOUNT,
> CONVERT_BIGTIME,
> + CONVERT_NREXT64,
> C_MAX_OPTS,
> };
>
> @@ -74,6 +75,7 @@ static char *c_opts[] = {
> [CONVERT_LAZY_COUNT] = "lazycount",
> [CONVERT_INOBTCOUNT] = "inobtcount",
> [CONVERT_BIGTIME] = "bigtime",
> + [CONVERT_NREXT64] = "nrext64",
> [C_MAX_OPTS] = NULL,
> };
>
> @@ -324,6 +326,15 @@ process_args(int argc, char **argv)
> _("-c bigtime only supports upgrades\n"));
> add_bigtime = true;
> break;
> + case CONVERT_NREXT64:
> + if (!val)
> + do_abort(
> + _("-c nrext64 requires a parameter\n"));
> + if (strtol(val, NULL, 0) != 1)
> + do_abort(
> + _("-c nrext64 only supports upgrades\n"));
> + add_nrext64 = true;
> + break;
> default:
> unknown('c', val);
> break;
> --
> 2.30.2
>
next prev parent reply other threads:[~2022-01-25 2:10 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-21 5:19 [PATCH V5 00/20] xfsprogs: Extend per-inode extent counters Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 01/20] xfs_repair: check filesystem geometry before allowing upgrades Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 02/20] xfsprogs: Move extent count limits to xfs_format.h Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 03/20] xfsprogs: Introduce xfs_iext_max_nextents() helper Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 04/20] xfsprogs: Use xfs_extnum_t instead of basic data types Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 05/20] xfsprogs: Introduce xfs_dfork_nextents() helper Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 06/20] xfsprogs: Use basic types to define xfs_log_dinode's di_nextents and di_anextents Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 07/20] xfsprogs: Promote xfs_extnum_t and xfs_aextnum_t to 64 and 32-bits respectively Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 08/20] xfsprogs: Introduce XFS_SB_FEAT_INCOMPAT_NREXT64 and associated per-fs feature bit Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 09/20] xfsprogs: Introduce XFS_FSOP_GEOM_FLAGS_NREXT64 Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 10/20] xfsprogs: Introduce XFS_DIFLAG2_NREXT64 and associated helpers Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 11/20] xfsprogs: Use xfs_rfsblock_t to count maximum blocks that can be used by BMBT Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 12/20] xfsprogs: Introduce macros to represent new maximum extent counts for data/attr forks Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 13/20] xfsprogs: Introduce per-inode 64-bit extent counters Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 14/20] xfsprogs: Conditionally upgrade existing inodes to use " Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 15/20] xfsprogs: Enable bulkstat ioctl to support " Chandan Babu R
2022-02-01 19:29 ` Darrick J. Wong
2022-01-21 5:20 ` [PATCH V5 16/20] xfsprogs: Add XFS_SB_FEAT_INCOMPAT_NREXT64 to the list of supported flags Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 17/20] xfsprogs: xfs_info: Report NREXT64 feature status Chandan Babu R
2022-01-21 5:20 ` [PATCH V5 18/20] xfsprogs: Add mkfs option to create filesystem with large extent counters Chandan Babu R
2022-01-25 0:33 ` Darrick J. Wong
2022-01-21 5:20 ` [PATCH V5 19/20] xfsprogs: Add support for upgrading to NREXT64 feature Chandan Babu R
2022-01-25 0:35 ` Darrick J. Wong [this message]
2022-01-21 5:20 ` [PATCH V5 20/20] xfsprogs: Define max extent length based on on-disk format definition Chandan Babu R
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220125003543.GY13540@magnolia \
--to=djwong@kernel.org \
--cc=chandan.babu@oracle.com \
--cc=david@fromorbit.com \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox