public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCHSET 1/6] fuse2fs: even more bug fixes
@ 2025-05-21 22:34 Darrick J. Wong
  2025-05-21 22:35 ` [PATCH 01/29] libext2fs: fix unix io manager invalidation Darrick J. Wong
                   ` (29 more replies)
  0 siblings, 30 replies; 32+ messages in thread
From: Darrick J. Wong @ 2025-05-21 22:34 UTC (permalink / raw)
  To: tytso; +Cc: linux-ext4, linux-ext4

Hi all,

This series fixes even more bugs in fuse2fs.

If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.

Comments and questions are, as always, welcome.

e2fsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/e2fsprogs.git/log/?h=fuse2fs-fixes
---
Commits in this patchset:
 * libext2fs: fix unix io manager invalidation
 * libext2fs: fix livelock in the unix io manager
 * fuse2fs: clean up error messages
 * fuse2fs: fix cache size parsing
 * fuse2fs: compact all the boolean flags in struct fuse2fs
 * fuse2fs: support XATTR_CREATE/REPLACE in setxattr
 * fuse2fs: fix error return handling in op_truncate
 * fuse2fs: flip parameter order in __translate_error
 * fuse2fs: fix CLI argument parsing leaks
 * fuse2fs: allow some control over acls
 * fuse2fs: enable processing of acls in the kernel
 * fuse2fs: make removexattr work correctly
 * fuse2fs: implement O_TRUNC correctly
 * fuse2fs: rearrange check_inum_access parameters a bit
 * fuse2fs: make filesystem corruption a hard error
 * fuse2fs: make internal state corruption a hard error
 * fuse2fs: make bad magic numbers report a corruption error too
 * fuse2fs: return EPERM for write access to EXT2_IMMUTABLE_FL files
 * fuse2fs: check the immutable flag in more places
 * fuse2fs: implement O_APPEND correctly
 * fuse2fs: decode fuse_main error codes
 * fuse2fs: fix fallocate zero range
 * fuse2fs: check for supported xattr name prefixes
 * fuse2fs: fix return value handling
 * fuse2fs: fix removing ea inodes when freeing a file
 * fuse2fs: fix post-EOF preallocation clearing on truncation
 * fuse2fs: also ignore the nodelalloc mount option
 * fuse2fs: propagate default ACLs to new children
 * fuse2fs: fix group membership checking in op_chmod
---
 lib/ext2fs/ext2fs.h          |    1 
 lib/ext2fs/ext2fsP.h         |    3 
 debian/libext2fs2t64.symbols |    1 
 lib/ext2fs/ext_attr.c        |   19 +
 lib/ext2fs/unix_io.c         |   53 ++-
 misc/fuse2fs.c               |  769 +++++++++++++++++++++++++++++++++++-------
 6 files changed, 705 insertions(+), 141 deletions(-)


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2025-05-29  1:37 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-21 22:34 [PATCHSET 1/6] fuse2fs: even more bug fixes Darrick J. Wong
2025-05-21 22:35 ` [PATCH 01/29] libext2fs: fix unix io manager invalidation Darrick J. Wong
2025-05-21 22:35 ` [PATCH 02/29] libext2fs: fix livelock in the unix io manager Darrick J. Wong
2025-05-21 22:35 ` [PATCH 03/29] fuse2fs: clean up error messages Darrick J. Wong
2025-05-21 22:35 ` [PATCH 04/29] fuse2fs: fix cache size parsing Darrick J. Wong
2025-05-21 22:36 ` [PATCH 05/29] fuse2fs: compact all the boolean flags in struct fuse2fs Darrick J. Wong
2025-05-21 22:36 ` [PATCH 06/29] fuse2fs: support XATTR_CREATE/REPLACE in setxattr Darrick J. Wong
2025-05-21 22:36 ` [PATCH 07/29] fuse2fs: fix error return handling in op_truncate Darrick J. Wong
2025-05-21 22:37 ` [PATCH 08/29] fuse2fs: flip parameter order in __translate_error Darrick J. Wong
2025-05-21 22:37 ` [PATCH 09/29] fuse2fs: fix CLI argument parsing leaks Darrick J. Wong
2025-05-21 22:37 ` [PATCH 10/29] fuse2fs: allow some control over acls Darrick J. Wong
2025-05-21 22:37 ` [PATCH 11/29] fuse2fs: enable processing of acls in the kernel Darrick J. Wong
2025-05-21 22:38 ` [PATCH 12/29] fuse2fs: make removexattr work correctly Darrick J. Wong
2025-05-21 22:38 ` [PATCH 13/29] fuse2fs: implement O_TRUNC correctly Darrick J. Wong
2025-05-21 22:38 ` [PATCH 14/29] fuse2fs: rearrange check_inum_access parameters a bit Darrick J. Wong
2025-05-21 22:38 ` [PATCH 15/29] fuse2fs: make filesystem corruption a hard error Darrick J. Wong
2025-05-21 22:39 ` [PATCH 16/29] fuse2fs: make internal state " Darrick J. Wong
2025-05-21 22:39 ` [PATCH 17/29] fuse2fs: make bad magic numbers report a corruption error too Darrick J. Wong
2025-05-21 22:39 ` [PATCH 18/29] fuse2fs: return EPERM for write access to EXT2_IMMUTABLE_FL files Darrick J. Wong
2025-05-21 22:39 ` [PATCH 19/29] fuse2fs: check the immutable flag in more places Darrick J. Wong
2025-05-21 22:40 ` [PATCH 20/29] fuse2fs: implement O_APPEND correctly Darrick J. Wong
2025-05-21 22:40 ` [PATCH 21/29] fuse2fs: decode fuse_main error codes Darrick J. Wong
2025-05-21 22:40 ` [PATCH 22/29] fuse2fs: fix fallocate zero range Darrick J. Wong
2025-05-21 22:40 ` [PATCH 23/29] fuse2fs: check for supported xattr name prefixes Darrick J. Wong
2025-05-21 22:41 ` [PATCH 24/29] fuse2fs: fix return value handling Darrick J. Wong
2025-05-21 22:41 ` [PATCH 25/29] fuse2fs: fix removing ea inodes when freeing a file Darrick J. Wong
2025-05-21 22:41 ` [PATCH 26/29] fuse2fs: fix post-EOF preallocation clearing on truncation Darrick J. Wong
2025-05-21 22:41 ` [PATCH 27/29] fuse2fs: also ignore the nodelalloc mount option Darrick J. Wong
2025-05-21 22:42 ` [PATCH 28/29] fuse2fs: propagate default ACLs to new children Darrick J. Wong
2025-05-21 22:42 ` [PATCH 29/29] fuse2fs: fix group membership checking in op_chmod Darrick J. Wong
2025-05-23 14:03 ` [PATCHSET 1/6] fuse2fs: even more bug fixes Theodore Ts'o
2025-05-29  1:37   ` 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