linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-08-20 08:55:25 to 2025-08-21 02:30:43 UTC [more...]

[PATCH 0/3] memcg, writeback: Don't wait writeback completion
 2025-08-21  2:30 UTC  (7+ messages)
` [PATCH 1/3] writeback: Rename wb_writeback_work->auto_free to free_work
` [PATCH] writeback: Add wb_writeback_work->free_done
` [PATCH] memcg: Don't wait writeback completion when release memcg
    ` [External] "

[RFC v4] fuse: use fs-iomap for better performance so we can containerize ext4
 2025-08-21  1:24 UTC  (146+ messages)
` [PATCHSET RFC v4 1/4] fuse: general bug fixes
  ` [PATCH 1/7] fuse: fix livelock in synchronous file put from fuseblk workers
  ` [PATCH 2/7] fuse: flush pending fuse events before aborting the connection
  ` [PATCH 3/7] fuse: capture the unique id of fuse commands being sent
  ` [PATCH 4/7] fuse: implement file attributes mask for statx
  ` [PATCH 5/7] fuse: update file mode when updating acls
  ` [PATCH 6/7] fuse: propagate default and file acls on creation
  ` [PATCH 7/7] fuse: enable FUSE_SYNCFS for all servers
` [PATCHSET RFC v4 2/4] fuse: allow servers to use iomap for better file IO performance
  ` [PATCH 01/23] fuse: move CREATE_TRACE_POINTS to a separate file
  ` [PATCH 02/23] fuse: implement the basic iomap mechanisms
  ` [PATCH 03/23] fuse: make debugging configurable at runtime
  ` [PATCH 04/23] fuse: move the backing file idr and code into a new source file
  ` [PATCH 05/23] fuse: move the passthrough-specific code back to passthrough.c
  ` [PATCH 06/23] fuse: add an ioctl to add new iomap devices
  ` [PATCH 07/23] fuse: flush events and send FUSE_SYNCFS and FUSE_DESTROY on unmount
  ` [PATCH 08/23] fuse: implement basic iomap reporting such as FIEMAP and SEEK_{DATA,HOLE}
  ` [PATCH 09/23] fuse: implement direct IO with iomap
  ` [PATCH 10/23] fuse: implement buffered "
  ` [PATCH 11/23] fuse: enable caching of timestamps
  ` [PATCH 12/23] fuse: implement large folios for iomap pagecache files
  ` [PATCH 13/23] fuse: use an unrestricted backing device with iomap pagecache io
  ` [PATCH 14/23] fuse: advertise support for iomap
  ` [PATCH 15/23] fuse: query filesystem geometry when using iomap
  ` [PATCH 16/23] fuse: implement fadvise for iomap files
  ` [PATCH 17/23] fuse: make the root nodeid dynamic
  ` [PATCH 18/23] fuse: allow setting of root nodeid
  ` [PATCH 19/23] fuse: invalidate ranges of block devices being used for iomap
  ` [PATCH 20/23] fuse: implement inline data file IO via iomap
  ` [PATCH 21/23] fuse: allow more statx fields
  ` [PATCH 22/23] fuse: support atomic writes with iomap
  ` [PATCH 23/23] fuse: enable iomap
` [PATCHSET RFC v4 3/4] fuse: cache iomap mappings for even better file IO performance
  ` [PATCH 1/4] fuse: cache iomaps
  ` [PATCH 2/4] fuse: use the iomap cache for iomap_begin
  ` [PATCH 3/4] fuse: invalidate iomap cache after file updates
  ` [PATCH 4/4] fuse: enable iomap cache management
` [PATCHSET RFC v4 4/4] fuse: handle timestamps and ACLs correctly when iomap is enabled
  ` [PATCH 1/6] fuse: force a ctime update after a fileattr_set call when in iomap mode
  ` [PATCH 2/6] fuse: synchronize inode->i_flags after fileattr_[gs]et
  ` [PATCH 3/6] fuse: cache atime when in iomap mode
  ` [PATCH 4/6] fuse: let the kernel handle KILL_SUID/KILL_SGID for iomap filesystems
  ` [PATCH 5/6] fuse: update ctime when updating acls on an iomap inode
  ` [PATCH 6/6] fuse: always cache ACLs when using iomap
` [PATCHSET RFC v4 1/4] libfuse: general bug fixes
  ` [PATCH 1/1] libfuse: don't put HAVE_STATX in a public header
` [PATCHSET RFC v4 2/4] libfuse: allow servers to use iomap for better file IO performance
  ` [PATCH 01/21] libfuse: bump kernel and library ABI versions
  ` [PATCH 02/21] libfuse: add kernel gates for FUSE_IOMAP
  ` [PATCH 03/21] libfuse: add fuse commands for iomap_begin and end
  ` [PATCH 04/21] libfuse: add upper level iomap commands
  ` [PATCH 05/21] libfuse: add a lowlevel notification to add a new device to iomap
  ` [PATCH 06/21] libfuse: add upper-level iomap add device function
  ` [PATCH 07/21] libfuse: add iomap ioend low level handler
  ` [PATCH 08/21] libfuse: add upper level iomap ioend commands
  ` [PATCH 09/21] libfuse: add a reply function to send FUSE_ATTR_* to the kernel
  ` [PATCH 10/21] libfuse: connect high level fuse library to fuse_reply_attr_iflags
  ` [PATCH 11/21] libfuse: support direct I/O through iomap
  ` [PATCH 12/21] libfuse: support buffered "
  ` [PATCH 13/21] libfuse: don't allow hardlinking of iomap files in the upper level fuse library
  ` [PATCH 14/21] libfuse: allow discovery of the kernel's iomap capabilities
  ` [PATCH 15/21] libfuse: add lower level iomap_config implementation
  ` [PATCH 16/21] libfuse: add upper "
  ` [PATCH 17/21] libfuse: allow root_nodeid mount option
  ` [PATCH 18/21] libfuse: add low level code to invalidate iomap block device ranges
  ` [PATCH 19/21] libfuse: add upper-level API to invalidate parts of an iomap block device
  ` [PATCH 20/21] libfuse: add strictatime/lazytime mount options
  ` [PATCH 21/21] libfuse: add atomic write support
` [PATCHSET RFC v4 3/4] libfuse: cache iomap mappings for even better file IO performance
  ` [PATCH 1/2] libfuse: enable iomap cache management for lowlevel fuse
  ` [PATCH 2/2] libfuse: add upper-level iomap cache management
` [PATCHSET RFC v4 4/4] libfuse: implement syncfs
  ` [PATCH 1/2] libfuse: wire up FUSE_SYNCFS to the low level library
  ` [PATCH 2/2] libfuse: add syncfs support to the upper library
` [PATCHSET RFC v4 1/6] fuse4fs: fork a low level fuse server
  ` [PATCH 01/20] fuse2fs: port fuse2fs to lowlevel libfuse API
  ` [PATCH 02/20] fuse4fs: drop fuse 2.x support code
  ` [PATCH 03/20] fuse4fs: namespace some helpers
  ` [PATCH 04/20] fuse4fs: convert to low level API
  ` [PATCH 05/20] libsupport: port the kernel list.h to libsupport
  ` [PATCH 06/20] libsupport: add a cache
  ` [PATCH 07/20] cache: disable debugging
  ` [PATCH 08/20] cache: use modern list iterator macros
  ` [PATCH 09/20] cache: embed struct cache in the owner
  ` [PATCH 10/20] cache: pass cache pointer to callbacks
  ` [PATCH 11/20] cache: pass a private data pointer through cache_walk
  ` [PATCH 12/20] cache: add a helper to grab a new refcount for a cache_node
  ` [PATCH 13/20] cache: return results of a cache flush
  ` [PATCH 14/20] cache: add a "get only if incore" flag to cache_node_get
  ` [PATCH 15/20] cache: support gradual expansion
  ` [PATCH 16/20] cache: implement automatic shrinking
  ` [PATCH 17/20] fuse4fs: add cache to track open files
  ` [PATCH 18/20] fuse4fs: use the orphaned inode list
  ` [PATCH 19/20] fuse4fs: implement FUSE_TMPFILE
  ` [PATCH 20/20] fuse4fs: create incore reverse orphan list
` [PATCHSET RFC v4 2/6] libext2fs: refactoring for fuse2fs iomap support
  ` [PATCH 01/10] libext2fs: make it possible to extract the fd from an IO manager
  ` [PATCH 02/10] libext2fs: always fsync the device when flushing the cache
  ` [PATCH 03/10] libext2fs: always fsync the device when closing the unix IO manager
  ` [PATCH 04/10] libext2fs: only fsync the unix fd if we wrote to the device
  ` [PATCH 05/10] libext2fs: invalidate cached blocks when freeing them
  ` [PATCH 06/10] libext2fs: only flush affected blocks in unix_write_byte
  ` [PATCH 07/10] libext2fs: allow unix_write_byte when the write would be aligned
  ` [PATCH 08/10] libext2fs: allow clients to ask to write full superblocks
  ` [PATCH 09/10] libext2fs: allow callers to disallow I/O to file data blocks
  ` [PATCH 10/10] libext2fs: add posix advisory locking to the unix IO manager
` [PATCHSET RFC v4 3/6] fuse2fs: use fuse iomap data paths for better file I/O performance
  ` [PATCH 01/19] fuse2fs: implement bare minimum iomap for file mapping reporting
  ` [PATCH 02/19] fuse2fs: add iomap= mount option
  ` [PATCH 03/19] fuse2fs: implement iomap configuration
  ` [PATCH 04/19] fuse2fs: register block devices for use with iomap
  ` [PATCH 05/19] fuse2fs: implement directio file reads
  ` [PATCH 06/19] fuse2fs: add extent dump function for debugging
  ` [PATCH 07/19] fuse2fs: implement direct write support
  ` [PATCH 08/19] fuse2fs: turn on iomap for pagecache IO
  ` [PATCH 09/19] fuse2fs: don't zero bytes in punch hole
  ` [PATCH 10/19] fuse2fs: don't do file data block IO when iomap is enabled
  ` [PATCH 11/19] fuse2fs: avoid fuseblk mode if fuse-iomap support is likely
  ` [PATCH 12/19] fuse2fs: enable file IO to inline data files
  ` [PATCH 13/19] fuse2fs: set iomap-related inode flags
  ` [PATCH 14/19] fuse2fs: add strictatime/lazytime mount options
  ` [PATCH 15/19] fuse2fs: configure block device block size
  ` [PATCH 16/19] fuse4fs: don't use inode number translation when possible
  ` [PATCH 17/19] fuse4fs: separate invalidation
  ` [PATCH 18/19] fuse2fs: implement statx
  ` [PATCH 19/19] fuse2fs: enable atomic writes
` [PATCHSET RFC v4 4/6] fuse2fs: use fuse iomap data paths for better file I/O performance
  ` [PATCH 1/2] fuse2fs: enable caching of iomaps
  ` [PATCH 2/2] fuse2fs: be smarter about caching iomaps
` [PATCHSET RFC v4 5/6] fuse2fs: handle timestamps and ACLs correctly when iomap is enabled
  ` [PATCH 1/8] fuse2fs: skip permission checking on utimens "
  ` [PATCH 2/8] fuse2fs: let the kernel tell us about acl/mode updates
  ` [PATCH 3/8] fuse2fs: better debugging for file mode updates
  ` [PATCH 4/8] fuse2fs: debug timestamp updates
  ` [PATCH 5/8] fuse2fs: use coarse timestamps for iomap mode
  ` [PATCH 6/8] fuse2fs: add tracing for retrieving timestamps
  ` [PATCH 7/8] fuse2fs: enable syncfs
  ` [PATCH 8/8] fuse2fs: skip the gdt write in op_destroy if syncfs is working
` [PATCHSET RFC v4 6/6] fuse2fs: improve block and inode caching
  ` [PATCH 1/6] libsupport: add caching IO manager
  ` [PATCH 2/6] iocache: add the actual buffer cache
  ` [PATCH 3/6] iocache: bump buffer mru priority every 50 accesses
  ` [PATCH 4/6] fuse2fs: enable caching IO manager
  ` [PATCH 5/6] fuse2fs: increase inode cache size
  ` [PATCH 6/6] libext2fs: improve caching for inodes

[PATCH v3 0/4] introduce uncharged file mapped folios
 2025-08-20 23:53 UTC  (14+ messages)
` [PATCH v3 1/4] mm/filemap: add AS_UNCHARGED
` [PATCH v3 2/4] mm: add vmstat for cgroup uncharged pages

[patch 0/4] uaccess: Provide and use helpers for user masked access
 2025-08-20 23:48 UTC  (8+ messages)

[PATCH v7] ceph: fix slab-use-after-free in have_mon_and_osd_map()
 2025-08-20 23:40 UTC  (3+ messages)

[PATCH v5 0/7] Add managed SOFT RESERVE resource handling
 2025-08-20 23:14 UTC  (6+ messages)
` [PATCH v5 3/7] cxl/acpi: Add background worker to coordinate with cxl_mem probe completion

[PATCH] hfs: fix KMSAN uninit-value issue in hfs_find_set_zero_bits()
 2025-08-20 23:06 UTC 

[PATCH] selftests: proc: mark vsyscall strings maybe-unused
 2025-08-20 21:39 UTC  (2+ messages)

[PATCH] selftests/proc: Fix spelling in comments and improve error message
 2025-08-20 20:55 UTC 

[PATCH v3 8/8] initramfs_test: add filename padding test case
 2025-08-20 21:02 UTC  (4+ messages)

Questions about FUSE_NOTIFY_INVAL_ENTRY
 2025-08-20 20:42 UTC  (3+ messages)

[PATCH v6] ceph: fix slab-use-after-free in have_mon_and_osd_map()
 2025-08-20 20:08 UTC  (6+ messages)

[PATCHSET RFC 0/6] add support for name_to, open_by_handle_at(2) to io_uring
 2025-08-20 19:58 UTC  (6+ messages)

[PATCH 0/4] vfs: if RESOLVE_NO_XDEV passed to openat2, don't *trigger* automounts
 2025-08-20 18:04 UTC  (3+ messages)

[PATCH util-linux v3] fallocate: add FALLOC_FL_WRITE_ZEROES support
 2025-08-20 17:50 UTC  (2+ messages)

[PATCH] fuse: clarify extending writes handling
 2025-08-20 16:27 UTC  (5+ messages)

[PATCHSET RFC v3 1/4] fuse: fixes and cleanups ahead of iomap support
 2025-08-20 15:31 UTC  (13+ messages)
` [PATCH 4/7] fuse: implement file attributes mask for statx

[PATCH v2] fs: Add 'rootfsflags' to set rootfs mount options
 2025-08-20 15:17 UTC  (2+ messages)

[PATCH 6.16 000/564] 6.16.2-rc2 review
 2025-08-20 14:36 UTC 

[PATCHv3 0/8] direct-io: even more flexible io vectors
 2025-08-20 14:25 UTC  (4+ messages)
` [PATCHv3 1/8] block: check for valid bio while splitting

[PATCH] fs: fix indentation style
 2025-08-20 13:34 UTC 

[PATCH 6.12 000/438] 6.12.43-rc2 review
 2025-08-20 12:45 UTC 

[PATCH] Documentation: warning fix
 2025-08-20 12:39 UTC  (2+ messages)

[PATCH v3 00/12] man2: document "new" mount API
 2025-08-20 11:53 UTC  (14+ messages)
` [PATCH v3 07/12] man/man2/fsmount.2: "
` [PATCH v3 08/12] man/man2/move_mount.2: "

[PATCH 6.15 000/509] 6.15.11-rc2 review
 2025-08-20 11:14 UTC 

io_uring / dio metadata fixes
 2025-08-20  9:40 UTC  (8+ messages)
` [PATCH 1/2] fs: add a FMODE_ flag to indicate IOCB_HAS_METADATA availability


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).