linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-07-17 23:24:46 to 2025-07-19 11:07:56 UTC [more...]

[PATCH v3 0/7] iomap: zero range folio batch support
 2025-07-19 11:07 UTC  (6+ messages)
` [PATCH v3 3/7] iomap: optional zero range dirty folio processing

[GIT PULL] vfs fixes
 2025-07-19 10:59 UTC 

[PATCH v3 0/4] Landlock: Disconnected directory handling
 2025-07-19 10:42 UTC  (4+ messages)
` [PATCH v3 1/4] landlock: Fix cosmetic change
` [PATCH v3 2/4] landlock: Fix handling of disconnected directories
` [PATCH v3 4/4] selftests/landlock: Add disconnected leafs and branch test suites

[PATCH v2 0/3] Landlock: Disconnected directory handling
 2025-07-19 10:19 UTC  (5+ messages)
` [PATCH v2 1/3] landlock: Fix handling of disconnected directories

[PATCH 0/7] Replace "__auto_type" with "auto"
 2025-07-19  9:52 UTC  (14+ messages)
` [PATCH 1/7] compiler_types.h: add "auto" as a macro for "__auto_type"
` [PATCH 2/7] include/linux: change "__auto_type" to "auto"
` [PATCH 3/7] fs/proc: replace "__auto_type" with "auto"
` [PATCH 4/7] arch/nios: "
` [PATCH 5/7] arch/x86: "
` [PATCH 6/7] selftests/bpf: "
` [PATCH 7/7] tools/virtio: "

[RFC v3] fuse: use fs-iomap for better performance so we can containerize ext4
 2025-07-19  7:34 UTC  (87+ messages)
` [PATCHSET RFC v3 4/4] fuse: handle timestamps and ACLs correctly when iomap is enabled
  ` [PATCH 1/7] fuse: force a ctime update after a fileattr_set call when in iomap mode
  ` [PATCH 2/7] fuse: synchronize inode->i_flags after fileattr_[gs]et
  ` [PATCH 3/7] fuse: cache atime when in iomap mode
  ` [PATCH 4/7] fuse: update file mode when updating acls
  ` [PATCH 5/7] fuse: propagate default and file acls on creation
  ` [PATCH 6/7] fuse: let the kernel handle KILL_SUID/KILL_SGID for iomap filesystems
  ` [PATCH 7/7] fuse: update ctime when updating acls on an iomap inode
` [PATCHSET RFC v3 1/3] libfuse: allow servers to use iomap for better file IO performance
  ` [PATCH 01/14] libfuse: add kernel gates for FUSE_IOMAP and bump libfuse api version
  ` [PATCH 02/14] libfuse: add fuse commands for iomap_begin and end
  ` [PATCH 03/14] libfuse: add upper level iomap commands
  ` [PATCH 04/14] libfuse: add a notification to add a new device to iomap
  ` [PATCH 05/14] libfuse: add iomap ioend low level handler
  ` [PATCH 06/14] libfuse: add upper level iomap ioend commands
  ` [PATCH 07/14] libfuse: add a reply function to send FUSE_ATTR_* to the kernel
  ` [PATCH 08/14] libfuse: connect high level fuse library to fuse_reply_attr_iflags
  ` [PATCH 09/14] libfuse: add FUSE_IOMAP_DIRECTIO
  ` [PATCH 10/14] libfuse: add FUSE_IOMAP_FILEIO
  ` [PATCH 11/14] libfuse: allow discovery of the kernel's iomap capabilities
  ` [PATCH 12/14] libfuse: add lower level iomap_config implementation
  ` [PATCH 13/14] libfuse: add upper "
  ` [PATCH 14/14] libfuse: add strictatime/lazytime mount options
` [PATCHSET RFC v3 2/3] libfuse: cache iomap mappings for even better file IO performance
  ` [PATCH 1/1] libfuse: enable iomap cache management
` [PATCHSET RFC v3 3/3] libfuse: implement statx and syncfs
  ` [PATCH 1/4] libfuse: wire up FUSE_SYNCFS to the low level library
  ` [PATCH 2/4] libfuse: add syncfs support to the upper library
  ` [PATCH 3/4] libfuse: add statx support to the lower level library
  ` [PATCH 4/4] libfuse: add upper level statx hooks
` [PATCHSET RFC v3 1/3] fuse2fs: use fuse iomap data paths for better file I/O performance
  ` [PATCH 01/22] fuse2fs: implement bare minimum iomap for file mapping reporting
  ` [PATCH 02/22] fuse2fs: add iomap= mount option
  ` [PATCH 03/22] fuse2fs: implement iomap configuration
  ` [PATCH 04/22] fuse2fs: register block devices for use with iomap
  ` [PATCH 05/22] fuse2fs: always use directio disk reads with fuse2fs
  ` [PATCH 06/22] fuse2fs: implement directio file reads
  ` [PATCH 07/22] fuse2fs: use tagged block IO for zeroing sub-block regions
  ` [PATCH 08/22] fuse2fs: only flush the cache for the file under directio read
  ` [PATCH 09/22] fuse2fs: add extent dump function for debugging
  ` [PATCH 10/22] fuse2fs: implement direct write support
  ` [PATCH 11/22] fuse2fs: turn on iomap for pagecache IO
  ` [PATCH 12/22] fuse2fs: improve tracing for fallocate
  ` [PATCH 13/22] fuse2fs: don't zero bytes in punch hole
  ` [PATCH 14/22] fuse2fs: don't do file data block IO when iomap is enabled
  ` [PATCH 15/22] fuse2fs: disable most io channel flush/invalidate in iomap pagecache mode
  ` [PATCH 16/22] fuse2fs: re-enable the block device pagecache for metadata IO
  ` [PATCH 17/22] fuse2fs: avoid fuseblk mode if fuse-iomap support is likely
  ` [PATCH 18/22] fuse2fs: don't allow hardlinks for now
  ` [PATCH 19/22] fuse2fs: enable file IO to inline data files
  ` [PATCH 20/22] fuse2fs: set iomap-related inode flags
  ` [PATCH 21/22] fuse2fs: add strictatime/lazytime mount options
  ` [PATCH 22/22] fuse2fs: configure block device block size
` [PATCHSET RFC v3 2/3] fuse2fs: use fuse iomap data paths for better file I/O performance
  ` [PATCH 1/1] fuse2fs: enable caching of iomaps
` [PATCHSET RFC v3 3/3] fuse2fs: handle timestamps and ACLs correctly when iomap is enabled
  ` [PATCH 01/10] fuse2fs: allow O_APPEND and O_TRUNC opens
  ` [PATCH 02/10] fuse2fs: skip permission checking on utimens when iomap is enabled
  ` [PATCH 03/10] fuse2fs: let the kernel tell us about acl/mode updates
  ` [PATCH 04/10] fuse2fs: better debugging for file mode updates
  ` [PATCH 05/10] fuse2fs: debug timestamp updates
  ` [PATCH 06/10] fuse2fs: use coarse timestamps for iomap mode
  ` [PATCH 07/10] fuse2fs: add tracing for retrieving timestamps
  ` [PATCH 08/10] fuse2fs: enable syncfs
  ` [PATCH 09/10] fuse2fs: skip the gdt write in op_destroy if syncfs is working
  ` [PATCH 10/10] fuse2fs: implement statx

[PATCHSET RFC v3 1/4] fuse: fixes and cleanups ahead of iomap support
 2025-07-19  7:18 UTC  (21+ messages)
` [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] iomap: exit early when iomap_iter is called with zero length
` [PATCH 6/7] iomap: trace iomap_zero_iter zeroing activities
` [PATCH 7/7] iomap: error out on file IO when there is no inline_data buffer

[PATCH] fs: Add additional checks for block devices during mount
 2025-07-19  4:46 UTC  (3+ messages)

[PATCHSET RFC v3 2/4] fuse: allow servers to use iomap for better file IO performance
 2025-07-18 20:20 UTC  (20+ messages)
` [PATCH 01/13] fuse: implement the basic iomap mechanisms
` [PATCH 02/13] fuse: add an ioctl to add new iomap devices
` [PATCH 03/13] fuse: flush events and send FUSE_SYNCFS and FUSE_DESTROY on unmount
` [PATCH 04/13] fuse: implement basic iomap reporting such as FIEMAP and SEEK_{DATA,HOLE}
` [PATCH 05/13] fuse: implement direct IO with iomap
` [PATCH 06/13] fuse: implement buffered "
` [PATCH 07/13] fuse: enable caching of timestamps
` [PATCH 08/13] fuse: implement large folios for iomap pagecache files
` [PATCH 09/13] fuse: use an unrestricted backing device with iomap pagecache io
` [PATCH 10/13] fuse: advertise support for iomap
` [PATCH 11/13] fuse: query filesystem geometry when using iomap
` [PATCH 12/13] fuse: implement fadvise for iomap files
` [PATCH 13/13] fuse: implement inline data file IO via iomap

[PATCH 0/3] Compression fixes for ntfs3
 2025-07-18 19:53 UTC  (4+ messages)
` [PATCH 1/3] ntfs: Do not kmap pages used for reading from disk
` [PATCH 2/3] ntfs: Do not kmap page cache pages for compression
` [PATCH 3/3] ntfs: Do not overwrite uptodate pages

[GIT PULL] bcachefs fixes for 6.16-rc7
 2025-07-18 18:50 UTC  (2+ messages)

[PATCH RFC DRAFT DOESNOTBUILD] inode: free up more space
 2025-07-18 17:11 UTC  (9+ messages)

[PATCH] fs: hidepid: Fixes hidepid non dumpable behavior
 2025-07-18 16:48 UTC  (8+ messages)

[PATCH v5 00/15] kunit: Introduce UAPI testing framework
 2025-07-18 16:44 UTC  (5+ messages)
` [PATCH v5 06/15] fs,fork,exit: export symbols necessary for KUnit UAPI support

[RFC PATCH v2 04/51] KVM: guest_memfd: Introduce KVM_GMEM_CONVERT_SHARED/PRIVATE ioctls
 2025-07-18 15:13 UTC  (13+ messages)

[PATCH v2 0/9] mm: vm_normal_page*() improvements
 2025-07-18 13:06 UTC  (30+ messages)
` [PATCH v2 5/9] mm/huge_memory: mark PMD mappings of the huge zero folio special
` [PATCH v2 6/9] mm/memory: convert print_bad_pte() to print_bad_page_map()
` [PATCH v2 7/9] mm/memory: factor out common code from vm_normal_page_*()
` [PATCH v2 8/9] mm: introduce and use vm_normal_page_pud()

[PATCH v3 00/21] ovl: narrow regions protected by i_rw_sem
 2025-07-18  9:11 UTC  (2+ messages)

[PATCH 0/2] eventpoll: Fix epoll_wait() report false negative
 2025-07-18  8:59 UTC  (5+ messages)
` [PATCH 1/2] selftests/eventpoll: Add test for multiple waiters
` [PATCH 2/2] eventpoll: Fix epoll_wait() report false negative

[PATCHSET RFC v3 3/4] fuse: cache iomap mappings for even better file IO performance
 2025-07-17 23:32 UTC  (5+ messages)
` [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

[PATCH v5 0/7] Add managed SOFT RESERVE resource handling
 2025-07-17 23:30 UTC  (10+ messages)


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).