Upgrade existing V5 filesystems to support large timestamps up to 2486.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
The filesystem cannot be downgraded after this feature is enabled.
Once enabled, the filesystem will not be writable by older kernels.
This feature was added to Linux 5.10.
+.TP 0.4i
+.B bigtime
+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.
.RE
.TP
.BI \-U " uuid"
int convert_lazy_count; /* Convert lazy-count mode on/off */
int lazy_count; /* What to set if to if converting */
bool add_inobtcount; /* add inode btree counts to AGI */
+bool add_bigtime; /* add support for timestamps up to 2486 */
/* misc status variables */
extern int convert_lazy_count; /* Convert lazy-count mode on/off */
extern int lazy_count; /* What to set if to if converting */
extern bool add_inobtcount; /* add inode btree counts to AGI */
+extern bool add_bigtime; /* add support for timestamps up to 2486 */
/* misc status variables */
return true;
}
+static bool
+set_bigtime(
+ struct xfs_mount *mp)
+{
+ if (!xfs_sb_version_hascrc(&mp->m_sb)) {
+ printf(
+ _("Large timestamp feature only supported on V5 filesystems.\n"));
+ exit(0);
+ }
+
+ if (xfs_sb_version_hasbigtime(&mp->m_sb)) {
+ printf(_("Filesystem already supports large timestamps.\n"));
+ exit(0);
+ }
+
+ printf(_("Adding large timestamp support to filesystem.\n"));
+ mp->m_sb.sb_features_incompat |= (XFS_SB_FEAT_INCOMPAT_NEEDSREPAIR |
+ XFS_SB_FEAT_INCOMPAT_BIGTIME);
+ return true;
+}
+
/* Perform the user's requested upgrades on filesystem. */
static void
upgrade_filesystem(
if (add_inobtcount)
dirty |= set_inobtcount(mp);
+ if (add_bigtime)
+ dirty |= set_bigtime(mp);
if (no_modify || !dirty)
return;
enum c_opt_nums {
CONVERT_LAZY_COUNT = 0,
CONVERT_INOBTCOUNT,
+ CONVERT_BIGTIME,
C_MAX_OPTS,
};
static char *c_opts[] = {
[CONVERT_LAZY_COUNT] = "lazycount",
[CONVERT_INOBTCOUNT] = "inobtcount",
+ [CONVERT_BIGTIME] = "bigtime",
[C_MAX_OPTS] = NULL,
};
_("-c inobtcount only supports upgrades\n"));
add_inobtcount = true;
break;
+ case CONVERT_BIGTIME:
+ if (!val)
+ do_abort(
+ _("-c bigtime requires a parameter\n"));
+ if (strtol(val, NULL, 0) != 1)
+ do_abort(
+ _("-c bigtime only supports upgrades\n"));
+ add_bigtime = true;
+ break;
default:
unknown('c', val);
break;