aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2023-09-25 14:59:36 -0700
committerCarlos Maiolino <cem@kernel.org>2023-10-05 14:57:19 +0200
commit1e8897d53374026aa4fc76e7d70d73bac85fe668 (patch)
treeafe9cd7aedb904caebad23b7ab86809062b48355
parentbcd5b1b766e62e7ad322cc814c142ebbc889101c (diff)
downloadxfsprogs-dev-1e8897d53374026aa4fc76e7d70d73bac85fe668.tar.gz
mkfs: add a config file for 6.6 LTS kernels
Enable 64-bit extent counts and reverse mapping for 6.6. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com> Signed-off-by: Carlos Maiolino <cem@kernel.org>
-rw-r--r--mkfs/Makefile3
-rw-r--r--mkfs/lts_6.6.conf14
2 files changed, 16 insertions, 1 deletions
diff --git a/mkfs/Makefile b/mkfs/Makefile
index 6c7ee186fa..a0c168e381 100644
--- a/mkfs/Makefile
+++ b/mkfs/Makefile
@@ -15,7 +15,8 @@ CFGFILES = \
lts_5.4.conf \
lts_5.10.conf \
lts_5.15.conf \
- lts_6.1.conf
+ lts_6.1.conf \
+ lts_6.6.conf
LLDLIBS += $(LIBXFS) $(LIBXCMD) $(LIBFROG) $(LIBRT) $(LIBBLKID) \
$(LIBUUID) $(LIBINIH) $(LIBURCU) $(LIBPTHREAD)
diff --git a/mkfs/lts_6.6.conf b/mkfs/lts_6.6.conf
new file mode 100644
index 0000000000..244f8eaf76
--- /dev/null
+++ b/mkfs/lts_6.6.conf
@@ -0,0 +1,14 @@
+# V5 features that were the mkfs defaults when the upstream Linux 6.6 LTS
+# kernel was released at the end of 2023.
+
+[metadata]
+bigtime=1
+crc=1
+finobt=1
+inobtcount=1
+reflink=1
+rmapbt=1
+
+[inode]
+sparse=1
+nrext64=1