From: Darrick J. Wong Date: Thu, 24 Apr 2025 21:43:07 +0000 (-0700) Subject: fuse2fs: add supportable mount options from the kernel X-Git-Tag: v1.47.3-rc1~91 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ba9236f207a9a2fe5cecadbb5bcb45b62ee2cc5;p=thirdparty%2Fe2fsprogs.git fuse2fs: add supportable mount options from the kernel Add all the kernel mount options that we can actually support. Signed-off-by: Darrick J. Wong Link: https://lore.kernel.org/r/174553065087.1160461.16716917319493753291.stgit@frogsfrogsfrogs Signed-off-by: Theodore Ts'o --- diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c index 6c9155b4..a283eb16 100644 --- a/misc/fuse2fs.c +++ b/misc/fuse2fs.c @@ -3548,15 +3548,18 @@ static struct fuse_opt fuse2fs_opts[] = { FUSE2FS_OPT("rw", ro, 0), FUSE2FS_OPT("errors=panic", panic_on_error, 1), FUSE2FS_OPT("minixdf", minixdf, 1), + FUSE2FS_OPT("bsddf", minixdf, 0), FUSE2FS_OPT("fakeroot", fakeroot, 1), FUSE2FS_OPT("fuse2fs_debug", debug, 1), FUSE2FS_OPT("no_default_opts", no_default_opts, 1), FUSE2FS_OPT("norecovery", norecovery, 1), + FUSE2FS_OPT("noload", norecovery, 1), FUSE2FS_OPT("offset=%lu", offset, 0), FUSE2FS_OPT("kernel", kernel, 1), FUSE_OPT_KEY("acl", FUSE2FS_IGNORED), FUSE_OPT_KEY("user_xattr", FUSE2FS_IGNORED), + FUSE_OPT_KEY("noblock_validity", FUSE2FS_IGNORED), FUSE_OPT_KEY("-V", FUSE2FS_VERSION), FUSE_OPT_KEY("--version", FUSE2FS_VERSION),