From: Darrick J. Wong Date: Wed, 21 May 2025 22:41:59 +0000 (-0700) Subject: fuse2fs: also ignore the nodelalloc mount option X-Git-Tag: v1.47.3-rc1~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bdef89e681da87506cdda924c72b6d2b8487198c;p=thirdparty%2Fe2fsprogs.git fuse2fs: also ignore the nodelalloc mount option We don't support delalloc, so accept the nodelalloc option even if we do nothing about it. Signed-off-by: Darrick J. Wong Link: https://lore.kernel.org/r/174786678032.1383760.18384774850296194367.stgit@frogsfrogsfrogs Signed-off-by: Theodore Ts'o --- diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c index e4b06b3f..a521068e 100644 --- a/misc/fuse2fs.c +++ b/misc/fuse2fs.c @@ -4119,6 +4119,7 @@ static struct fuse_opt fuse2fs_opts[] = { FUSE_OPT_KEY("user_xattr", FUSE2FS_IGNORED), FUSE_OPT_KEY("noblock_validity", FUSE2FS_IGNORED), + FUSE_OPT_KEY("nodelalloc", FUSE2FS_IGNORED), FUSE_OPT_KEY("cache_size=%s", FUSE2FS_CACHE_SIZE), FUSE_OPT_KEY("-V", FUSE2FS_VERSION),