Whamcloud - gitweb
fuse2fs: also ignore the nodelalloc mount option
authorDarrick J. Wong <djwong@kernel.org>
Wed, 21 May 2025 22:41:59 +0000 (15:41 -0700)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 23 May 2025 13:41:20 +0000 (09:41 -0400)
We don't support delalloc, so accept the nodelalloc option even if we do
nothing about it.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Link: https://lore.kernel.org/r/174786678032.1383760.18384774850296194367.stgit@frogsfrogsfrogs
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
misc/fuse2fs.c

index e4b06b3..a521068 100644 (file)
@@ -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),