* [PATCH] mkfs: add configuration files for the last few LTS kernels
@ 2021-12-17 19:10 Darrick J. Wong
2021-12-17 20:30 ` Darrick J. Wong
0 siblings, 1 reply; 2+ messages in thread
From: Darrick J. Wong @ 2021-12-17 19:10 UTC (permalink / raw)
To: Eric Sandeen; +Cc: xfs
From: Darrick J. Wong <djwong@kernel.org>
Add some sample mkfs configuration files that capture the mkfs feature
defaults at the time of the release of the last three upstream LTS
kernels.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
---
include/builddefs.in | 1 +
mkfs/Makefile | 6 +++++-
mkfs/lts_4.19.conf | 13 +++++++++++++
mkfs/lts_5.10.conf | 13 +++++++++++++
mkfs/lts_5.15.conf | 13 +++++++++++++
5 files changed, 45 insertions(+), 1 deletion(-)
create mode 100644 mkfs/lts_4.19.conf
create mode 100644 mkfs/lts_5.10.conf
create mode 100644 mkfs/lts_5.15.conf
diff --git a/include/builddefs.in b/include/builddefs.in
index f10d1796..ca4b5fcc 100644
--- a/include/builddefs.in
+++ b/include/builddefs.in
@@ -66,6 +66,7 @@ DK_INC_DIR = @includedir@/disk
PKG_MAN_DIR = @mandir@
PKG_DOC_DIR = @datadir@/doc/@pkg_name@
PKG_LOCALE_DIR = @datadir@/locale
+PKG_DATA_DIR = @datadir@/@pkg_name@
CC = @cc@
BUILD_CC = @BUILD_CC@
diff --git a/mkfs/Makefile b/mkfs/Makefile
index 811ba9db..04d17fdb 100644
--- a/mkfs/Makefile
+++ b/mkfs/Makefile
@@ -9,19 +9,23 @@ LTCOMMAND = mkfs.xfs
HFILES =
CFILES = proto.c xfs_mkfs.c
+CFGFILES = lts_4.19.conf lts_5.10.conf lts_5.15.conf
LLDLIBS += $(LIBXFS) $(LIBXCMD) $(LIBFROG) $(LIBRT) $(LIBPTHREAD) $(LIBBLKID) \
$(LIBUUID) $(LIBINIH) $(LIBURCU)
LTDEPENDENCIES += $(LIBXFS) $(LIBXCMD) $(LIBFROG)
LLDFLAGS = -static-libtool-libs
-default: depend $(LTCOMMAND)
+default: depend $(LTCOMMAND) $(CFGFILES)
include $(BUILDRULES)
install: default
$(INSTALL) -m 755 -d $(PKG_ROOT_SBIN_DIR)
$(LTINSTALL) -m 755 $(LTCOMMAND) $(PKG_ROOT_SBIN_DIR)
+ $(INSTALL) -m 755 -d $(PKG_DATA_DIR)/mkfs
+ $(INSTALL) -m 644 $(CFGFILES) $(PKG_DATA_DIR)/mkfs
+
install-dev:
-include .dep
diff --git a/mkfs/lts_4.19.conf b/mkfs/lts_4.19.conf
new file mode 100644
index 00000000..74144790
--- /dev/null
+++ b/mkfs/lts_4.19.conf
@@ -0,0 +1,13 @@
+# V5 features that were the mkfs defaults when the upstream Linux 4.19 LTS
+# kernel was released at the end of 2019.
+
+[metadata]
+bigtime=0
+crc=1
+finobt=1
+inobtcount=0
+reflink=0
+rmapbt=0
+
+[inode]
+sparse=1
diff --git a/mkfs/lts_5.10.conf b/mkfs/lts_5.10.conf
new file mode 100644
index 00000000..ac00960e
--- /dev/null
+++ b/mkfs/lts_5.10.conf
@@ -0,0 +1,13 @@
+# V5 features that were the mkfs defaults when the upstream Linux 5.10 LTS
+# kernel was released at the end of 2020.
+
+[metadata]
+bigtime=0
+crc=1
+finobt=1
+inobtcount=0
+reflink=1
+rmapbt=0
+
+[inode]
+sparse=1
diff --git a/mkfs/lts_5.15.conf b/mkfs/lts_5.15.conf
new file mode 100644
index 00000000..32082958
--- /dev/null
+++ b/mkfs/lts_5.15.conf
@@ -0,0 +1,13 @@
+# V5 features that were the mkfs defaults when the upstream Linux 5.15 LTS
+# kernel was released at the end of 2021.
+
+[metadata]
+bigtime=1
+crc=1
+finobt=1
+inobtcount=1
+reflink=1
+rmapbt=0
+
+[inode]
+sparse=1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mkfs: add configuration files for the last few LTS kernels
2021-12-17 19:10 [PATCH] mkfs: add configuration files for the last few LTS kernels Darrick J. Wong
@ 2021-12-17 20:30 ` Darrick J. Wong
0 siblings, 0 replies; 2+ messages in thread
From: Darrick J. Wong @ 2021-12-17 20:30 UTC (permalink / raw)
To: Eric Sandeen; +Cc: xfs
On Fri, Dec 17, 2021 at 11:10:46AM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <djwong@kernel.org>
>
> Add some sample mkfs configuration files that capture the mkfs feature
> defaults at the time of the release of the last three upstream LTS
> kernels.
>
> Signed-off-by: Darrick J. Wong <djwong@kernel.org>
> ---
> include/builddefs.in | 1 +
> mkfs/Makefile | 6 +++++-
> mkfs/lts_4.19.conf | 13 +++++++++++++
> mkfs/lts_5.10.conf | 13 +++++++++++++
> mkfs/lts_5.15.conf | 13 +++++++++++++
NAK, this is missing a config file for 5.4.
Also Eric prodded me to add a comment to the default feature config
structure definition reminding people to keep the conffiles up to date.
v2 on its way...
--D
> 5 files changed, 45 insertions(+), 1 deletion(-)
> create mode 100644 mkfs/lts_4.19.conf
> create mode 100644 mkfs/lts_5.10.conf
> create mode 100644 mkfs/lts_5.15.conf
>
> diff --git a/include/builddefs.in b/include/builddefs.in
> index f10d1796..ca4b5fcc 100644
> --- a/include/builddefs.in
> +++ b/include/builddefs.in
> @@ -66,6 +66,7 @@ DK_INC_DIR = @includedir@/disk
> PKG_MAN_DIR = @mandir@
> PKG_DOC_DIR = @datadir@/doc/@pkg_name@
> PKG_LOCALE_DIR = @datadir@/locale
> +PKG_DATA_DIR = @datadir@/@pkg_name@
>
> CC = @cc@
> BUILD_CC = @BUILD_CC@
> diff --git a/mkfs/Makefile b/mkfs/Makefile
> index 811ba9db..04d17fdb 100644
> --- a/mkfs/Makefile
> +++ b/mkfs/Makefile
> @@ -9,19 +9,23 @@ LTCOMMAND = mkfs.xfs
>
> HFILES =
> CFILES = proto.c xfs_mkfs.c
> +CFGFILES = lts_4.19.conf lts_5.10.conf lts_5.15.conf
>
> LLDLIBS += $(LIBXFS) $(LIBXCMD) $(LIBFROG) $(LIBRT) $(LIBPTHREAD) $(LIBBLKID) \
> $(LIBUUID) $(LIBINIH) $(LIBURCU)
> LTDEPENDENCIES += $(LIBXFS) $(LIBXCMD) $(LIBFROG)
> LLDFLAGS = -static-libtool-libs
>
> -default: depend $(LTCOMMAND)
> +default: depend $(LTCOMMAND) $(CFGFILES)
>
> include $(BUILDRULES)
>
> install: default
> $(INSTALL) -m 755 -d $(PKG_ROOT_SBIN_DIR)
> $(LTINSTALL) -m 755 $(LTCOMMAND) $(PKG_ROOT_SBIN_DIR)
> + $(INSTALL) -m 755 -d $(PKG_DATA_DIR)/mkfs
> + $(INSTALL) -m 644 $(CFGFILES) $(PKG_DATA_DIR)/mkfs
> +
> install-dev:
>
> -include .dep
> diff --git a/mkfs/lts_4.19.conf b/mkfs/lts_4.19.conf
> new file mode 100644
> index 00000000..74144790
> --- /dev/null
> +++ b/mkfs/lts_4.19.conf
> @@ -0,0 +1,13 @@
> +# V5 features that were the mkfs defaults when the upstream Linux 4.19 LTS
> +# kernel was released at the end of 2019.
> +
> +[metadata]
> +bigtime=0
> +crc=1
> +finobt=1
> +inobtcount=0
> +reflink=0
> +rmapbt=0
> +
> +[inode]
> +sparse=1
> diff --git a/mkfs/lts_5.10.conf b/mkfs/lts_5.10.conf
> new file mode 100644
> index 00000000..ac00960e
> --- /dev/null
> +++ b/mkfs/lts_5.10.conf
> @@ -0,0 +1,13 @@
> +# V5 features that were the mkfs defaults when the upstream Linux 5.10 LTS
> +# kernel was released at the end of 2020.
> +
> +[metadata]
> +bigtime=0
> +crc=1
> +finobt=1
> +inobtcount=0
> +reflink=1
> +rmapbt=0
> +
> +[inode]
> +sparse=1
> diff --git a/mkfs/lts_5.15.conf b/mkfs/lts_5.15.conf
> new file mode 100644
> index 00000000..32082958
> --- /dev/null
> +++ b/mkfs/lts_5.15.conf
> @@ -0,0 +1,13 @@
> +# V5 features that were the mkfs defaults when the upstream Linux 5.15 LTS
> +# kernel was released at the end of 2021.
> +
> +[metadata]
> +bigtime=1
> +crc=1
> +finobt=1
> +inobtcount=1
> +reflink=1
> +rmapbt=0
> +
> +[inode]
> +sparse=1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-12-17 20:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-17 19:10 [PATCH] mkfs: add configuration files for the last few LTS kernels Darrick J. Wong
2021-12-17 20:30 ` Darrick J. Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox