Linux filesystem development
 help / color / mirror / Atom feed
 messages from 2025-09-15 12:04:23 to 2025-09-16 00:36:19 UTC [more...]

[RFC v5] fuse: containerize ext4 for safer operation
 2025-09-16  0:36 UTC  (70+ messages)
` [PATCHSET RFC v5 1/8] fuse: general bug fixes
  ` [PATCH 1/8] fuse: fix livelock in synchronous file put from fuseblk workers
  ` [PATCH 2/8] fuse: flush pending fuse events before aborting the connection
  ` [PATCH 3/8] fuse: capture the unique id of fuse commands being sent
  ` [PATCH 4/8] fuse: signal that a fuse filesystem should exhibit local fs behaviors
  ` [PATCH 5/8] fuse: implement file attributes mask for statx
  ` [PATCH 6/8] fuse: update file mode when updating acls
  ` [PATCH 7/8] fuse: propagate default and file acls on creation
  ` [PATCH 8/8] fuse: enable FUSE_SYNCFS for all fuseblk servers
` [PATCHSET RFC v5 2/8] iomap: cleanups ahead of adding fuse support
  ` [PATCH 1/2] iomap: trace iomap_zero_iter zeroing activities
  ` [PATCH 2/2] iomap: error out on file IO when there is no inline_data buffer
` [PATCHSET RFC v5 3/8] fuse: cleanups ahead of adding fuse support
  ` [PATCH 1/5] fuse: allow synchronous FUSE_INIT
  ` [PATCH 2/5] fuse: move the backing file idr and code into a new source file
  ` [PATCH 3/5] fuse: move the passthrough-specific code back to passthrough.c
  ` [PATCH 4/5] fuse_trace: "
  ` [PATCH 5/5] fuse: move CREATE_TRACE_POINTS to a separate file
` [PATCHSET RFC v5 4/8] fuse: allow servers to use iomap for better file IO performance
  ` [PATCH 01/28] fuse: implement the basic iomap mechanisms
  ` [PATCH 02/28] fuse_trace: "
  ` [PATCH 03/28] fuse: make debugging configurable at runtime
  ` [PATCH 04/28] fuse: adapt FUSE_DEV_IOC_BACKING_{OPEN,CLOSE} to add new iomap devices
  ` [PATCH 05/28] fuse_trace: "
  ` [PATCH 06/28] fuse: flush events and send FUSE_SYNCFS and FUSE_DESTROY on unmount
  ` [PATCH 07/28] fuse: create a per-inode flag for toggling iomap
  ` [PATCH 08/28] fuse_trace: "
  ` [PATCH 09/28] fuse: isolate the other regular file IO paths from iomap
  ` [PATCH 10/28] fuse: implement basic iomap reporting such as FIEMAP and SEEK_{DATA,HOLE}
  ` [PATCH 11/28] fuse_trace: "
  ` [PATCH 12/28] fuse: implement direct IO with iomap
  ` [PATCH 13/28] fuse_trace: "
  ` [PATCH 14/28] fuse: implement buffered "
  ` [PATCH 15/28] fuse_trace: "
  ` [PATCH 16/28] fuse: implement large folios for iomap pagecache files
  ` [PATCH 17/28] fuse: use an unrestricted backing device with iomap pagecache io
  ` [PATCH 18/28] fuse: advertise support for iomap
  ` [PATCH 19/28] fuse: query filesystem geometry when using iomap
  ` [PATCH 20/28] fuse_trace: "
  ` [PATCH 21/28] fuse: implement fadvise for iomap files
  ` [PATCH 22/28] fuse: invalidate ranges of block devices being used for iomap
  ` [PATCH 23/28] fuse_trace: "
  ` [PATCH 24/28] fuse: implement inline data file IO via iomap
  ` [PATCH 25/28] fuse_trace: "
  ` [PATCH 26/28] fuse: allow more statx fields
  ` [PATCH 27/28] fuse: support atomic writes with iomap
  ` [PATCH 28/28] fuse: disable direct reclaim for any fuse server that uses iomap
` [PATCHSET RFC v5 5/8] fuse: allow servers to specify root node id
  ` [PATCH 1/3] fuse: make the root nodeid dynamic
  ` [PATCH 2/3] fuse_trace: "
  ` [PATCH 3/3] fuse: allow setting of root nodeid
` [PATCHSET RFC v5 6/8] fuse: handle timestamps and ACLs correctly when iomap is enabled
  ` [PATCH 1/9] fuse: enable caching of timestamps
` [PATCHSET RFC v5 7/8] fuse: cache iomap mappings for even better file IO performance
` [PATCHSET RFC v5 8/8] fuse: run fuse servers as a contained service
` [PATCHSET RFC v5 1/6] libfuse: general bug fixes
` [PATCHSET RFC v5 2/6] libfuse: allow servers to use iomap for better file IO performance
` [PATCHSET RFC v5 3/6] libfuse: allow servers to specify root node id
` [PATCHSET RFC v5 4/6] libfuse: implement syncfs
` [PATCHSET RFC v5 5/6] libfuse: cache iomap mappings for even better file IO performance
` [PATCHSET RFC v5 6/6] libfuse: run fuse servers as a contained service
` [PATCHSET RFC v5 2/9] fuse4fs: fork a low level fuse server
` [PATCHSET RFC v5 3/9] libext2fs: refactoring for fuse2fs iomap support
` [PATCHSET RFC v5 4/9] fuse2fs: use fuse iomap data paths for better file I/O performance
` [PATCHSET RFC v5 5/9] fuse4fs: specify the root node id
` [PATCHSET RFC v5 6/9] fuse2fs: handle timestamps and ACLs correctly when iomap is enabled
` [PATCHSET RFC v5 7/9] fuse2fs: cache iomap mappings for even better file IO performance
` [PATCHSET RFC v5 8/9] fuse2fs: improve block and inode caching
` [PATCHSET RFC v5 9/9] fuse4fs: run servers as a contained service

[PATCH v2 0/7] vma count: fixes, test and improvements
 2025-09-16  0:05 UTC  (13+ messages)
` [PATCH v2 1/7] mm: fix off-by-one error in VMA count limit checks
` [PATCH v2 2/7] mm/selftests: add max_vma_count tests
` [PATCH v2 3/7] mm: introduce vma_count_remaining()
` [PATCH v2 4/7] mm: rename mm_struct::map_count to vma_count
` [PATCH v2 5/7] mm: harden vma_count against direct modification
` [PATCH v2 6/7] mm: add assertion for VMA count limit
` [PATCH v2 7/7] mm/tracing: introduce max_vma_count_exceeded trace event

[PATCH v2 0/7] fs/9p: Reuse inode based on path (in addition to qid)
 2025-09-15 23:31 UTC  (6+ messages)

Any way to ensure minimal folio size and alignment for iomap based direct IO?
 2025-09-15 23:20 UTC  (6+ messages)

[PATCH v2] fs/fuse: fix potential memory leak from fuse_uring_cancel
 2025-09-15 23:04 UTC  (7+ messages)

[PATCH v2 00/33] ns: support file handles
 2025-09-15 22:59 UTC  (30+ messages)
` [PATCH v2 11/33] net: use ns_common_init()
` [PATCH v2 18/33] mnt: support ns lookup
` [PATCH v2 21/33] net: "
` [PATCH v2 22/33] pid: "
` [PATCH v2 23/33] time: "
` [PATCH v2 24/33] user: "
` [PATCH v2 25/33] uts: "
` [PATCH v2 26/33] ns: add to_<type>_ns() to respective headers
` [PATCH v2 27/33] nsfs: add current_in_namespace()
` [PATCH v2 28/33] nsfs: support file handles
` [PATCH v2 29/33] nsfs: support exhaustive "
` [PATCH v2 30/33] nsfs: add missing id retrieval support

[PATCH 0/5] fuse: {io-uring} Allow to reduce the number of queues and request distribution
 2025-09-15 22:18 UTC  (5+ messages)
` [PATCH 5/5] fuse: {io-uring} Allow reduced number of ring queues

[PATCH v5] hfs: update sanity check of the root record
 2025-09-15 22:27 UTC  (3+ messages)

[RFC PATCH v6 0/2] mm: Refactor KVM guest_memfd to introduce guestmem library
 2025-09-15 21:25 UTC  (4+ messages)
` [RFC PATCH v6 1/2] mm: guestmem: "
` [RFC PATCH v6 2/2] userfaulfd: add minor mode for guestmem

[PATCH RESEND 00/62] initrd: remove classic initrd support
 2025-09-15 21:05 UTC  (13+ messages)
` [PATCH RESEND 05/62] init: remove "ramdisk_start" command line parameter, which controls starting block number of initrd
` [PATCH RESEND 06/62] arm: init: remove special logic for setting brd.rd_size
` [PATCH RESEND 08/62] arm: init: remove FLAG_RDLOAD and FLAG_RDPROMPT
` [PATCH RESEND 16/62] brd: remove "ramdisk_size" command line parameter
` [PATCH RESEND 17/62] doc: modernize Documentation/filesystems/ramfs-rootfs-initramfs.rst

[linux-next20250911]Kernel OOPs while running generic/256 on Pmem device
 2025-09-15 18:20 UTC  (7+ messages)
  ` [External] "

[Linux Kernel Bug] KASAN: slab-out-of-bounds Read in hfsplus_strcasecmp
 2025-09-15 17:29 UTC  (2+ messages)

[PATCH 00/62] initrd: remove classic initrd support
 2025-09-15 16:43 UTC  (2+ messages)

[PATCH V12 0/5] riscv: mm: Add soft-dirty and uffd-wp support
 2025-09-15 17:05 UTC  (9+ messages)
` [PATCH V12 1/5] mm: softdirty: Add pgtable_supports_soft_dirty()
` [PATCH V12 2/5] mm: userfaultfd: Add pgtable_supports_uffd_wp()
` [PATCH V12 3/5] riscv: Add RISC-V Svrsw60t59b extension support

[PATCH v2 00/16] fuse: use iomap for buffered reads + readahead
 2025-09-15 16:05 UTC  (9+ messages)
` [PATCH v2 05/16] iomap: propagate iomap_read_folio() error to caller
` [PATCH v2 12/16] iomap: add bias for async read requests

[PATCH v1 1/1] lock_mount(): Remove unused function
 2025-09-15 16:02 UTC 

[PATCH] ovl: check before dereferencing s_root field
 2025-09-15 15:29 UTC  (3+ messages)

[PATCH v2 0/4] writeback: Avoid lockups when switching inodes
 2025-09-15 15:13 UTC  (3+ messages)

[PATCH v2 00/16] expand mmap_prepare functionality, port more users
 2025-09-15 15:04 UTC  (15+ messages)
` [PATCH v2 08/16] mm: add ability to take further action in vm_area_desc
` [PATCH v2 16/16] kcov: update kcov to use mmap_prepare

[PATCH v2] rcu: Remove redundant rcu_read_lock/unlock() in spin_lock critical sections
 2025-09-15 14:40 UTC  (3+ messages)

[RFC PATCH v3 0/4] ->i_state accessors
 2025-09-15 14:16 UTC  (7+ messages)
` [PATCH v3 2/4] fs: hide ->i_state handling behind accessors

[PATCH] fs: rename generic_delete_inode() and generic_drop_inode()
 2025-09-15 14:10 UTC  (3+ messages)

[PATCH] fs: expand dump_inode()
 2025-09-15 13:42 UTC  (4+ messages)

[PATCH] init: INITRAMFS_PRESERVE_MTIME should depend on BLK_DEV_INITRD
 2025-09-15 13:02 UTC  (2+ messages)

[PATCH] initramfs: Replace strcpy() with strscpy() in find_link()
 2025-09-15 12:52 UTC  (2+ messages)

[PATCH] initrd: Use str_plural() in rd_load_image()
 2025-09-15 12:47 UTC  (2+ messages)

[PATCHES] simple part of ->d_name stuff
 2025-09-15 12:46 UTC  (13+ messages)
` [PATCH 1/6] security_dentry_init_security(): constify qstr argument
  ` [PATCH 2/6] exfat_find(): "
  ` [PATCH 3/6] afs_edit_dir_{add,remove}(): "
  ` [PATCH 4/6] afs_dir_search: "
  ` [PATCH 5/6] generic_ci_validate_strict_name(): constify name argument
  ` [PATCH 6/6] make it easier to catch those who try to modify ->d_name

[PATCH] initramfs: Use struct_size() helper to improve dir_add()
 2025-09-15 12:43 UTC  (2+ messages)

[PATCH v2] fs: expand dump_inode()
 2025-09-15 12:31 UTC  (2+ messages)

[PATCH v2] initrd: Fix unused variable warning in rd_load_image() on s390
 2025-09-15 12:27 UTC  (2+ messages)

[PATCH] ocfs2: retire ocfs2_drop_inode() and I_WILL_FREE usage
 2025-09-15 12:21 UTC  (16+ messages)
` [External] : "

[PATCH 0/3] fs: replace wq users and add WQ_PERCPU to alloc_workqueue() users
 2025-09-15 12:20 UTC  (3+ messages)

[PATCH] fs: use the switch statement in init_special_inode()
 2025-09-15 12:19 UTC  (2+ messages)

[PATCH] fs/proc/namespaces: make ns_entries const
 2025-09-15 12:18 UTC  (2+ messages)

[PATCH 0/6] VFS: more prep for change to directory locking
 2025-09-15 12:10 UTC  (3+ messages)
` [PATCH 4/6] VFS: unify old_mnt_idmap and new_mnt_idmap in renamedata

[PATCHES] file->f_path safety and struct path constifications
 2025-09-15 12:07 UTC  (22+ messages)
` [PATCH 01/21] backing_file_user_path(): constify struct path *
  ` [PATCH 12/21] ksmbd_vfs_inherit_posix_acl(): constify path argument
  ` [PATCH 13/21] ksmbd_vfs_set_init_posix_acl(): "
  ` [PATCH 14/21] ovl_ensure_verity_loaded(): constify datapath argument
  ` [PATCH 15/21] ovl_validate_verity(): constify {meta,data}path arguments
  ` [PATCH 16/21] ovl_get_verity_digest(): constify path argument
  ` [PATCH 17/21] ovl_lower_dir(): "
  ` [PATCH 18/21] ovl_sync_file(): "
  ` [PATCH 19/21] ovl_is_real_file: constify realpath argument
  ` [PATCH 20/21] apparmor/af_unix: constify struct path * arguments
  ` [PATCH 21/21] configfs:get_target() - release path as soon as we grab configfs_item reference


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox