lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <174786678032.1383760.18384774850296194367.stgit@frogsfrogsfrogs> Date: Wed, 21 May 2025 15:41:59 -0700 From: "Darrick J. Wong" <djwong@...nel.org> To: tytso@....edu Cc: linux-ext4@...r.kernel.org Subject: [PATCH 27/29] fuse2fs: also ignore the nodelalloc mount option From: Darrick J. Wong <djwong@...nel.org> We don't support delalloc, so accept the nodelalloc option even if we do nothing about it. Signed-off-by: "Darrick J. Wong" <djwong@...nel.org> --- misc/fuse2fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c index 626e3a42181148..71e81992cc1819 100644 --- a/misc/fuse2fs.c +++ b/misc/fuse2fs.c @@ -4071,6 +4071,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),
Powered by blists - more mailing lists