public inbox for linux-fsdevel@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-10-27 22:29:41 to 2025-10-29 00:43:55 UTC [more...]

[PATCHBOMB v6] fuse: containerize ext4 for safer operation
 2025-10-29  0:43 UTC  (25+ messages)
` [PATCHSET v6 1/8] fuse: general bug fixes
  ` [PATCH 1/5] fuse: flush pending fuse events before aborting the connection
  ` [PATCH 2/5] fuse: signal that a fuse inode should exhibit local fs behaviors
  ` [PATCH 3/5] fuse: implement file attributes mask for statx
  ` [PATCH 4/5] fuse: update file mode when updating acls
` [PATCHSET v6 2/8] iomap: cleanups ahead of adding fuse support
` [PATCHSET v6 3/8] fuse: "
` [PATCHSET v6 4/8] fuse: allow servers to use iomap for better file IO performance
` [PATCHSET v6 5/8] fuse: allow servers to specify root node id
` [PATCHSET v6 6/8] fuse: handle timestamps and ACLs correctly when iomap is enabled
` [PATCHSET v6 7/8] fuse: cache iomap mappings for even better file IO performance
` [PATCHSET v6 8/8] fuse: run fuse servers as a contained service
` [PATCHSET v6 1/5] libfuse: allow servers to use iomap for better file IO performance
` [PATCHSET v6 2/5] libfuse: allow servers to specify root node id
` [PATCHSET v6 3/5] libfuse: implement syncfs
` [PATCHSET v6 4/5] libfuse: cache iomap mappings for even better file IO performance
` [PATCHSET v6 5/5] libfuse: run fuse servers as a contained service
` [PATCHSET v6 1/6] fuse2fs: use fuse iomap data paths for better file I/O performance
` [PATCHSET v6 2/6] fuse4fs: specify the root node id
` [PATCHSET v6 3/6] fuse2fs: handle timestamps and ACLs correctly when iomap is enabled
` [PATCHSET v6 4/6] fuse2fs: cache iomap mappings for even better file IO performance
` [PATCHSET v6 5/6] fuse2fs: improve block and inode caching
` [PATCHSET v6 6/6] fuse4fs: run servers as a contained service
` [PATCHSET v6] fstests: support ext4 fuse testing

[PATCH v2 00/50] tree-in-dcache stuff
 2025-10-29  0:10 UTC  (71+ messages)
` [PATCH v2 01/50] fuse_ctl_add_conn(): fix nlink breakage in case of early failure
` [PATCH v2 02/50] tracefs: fix a leak in eventfs_create_events_dir()
` [PATCH v2 03/50] new helper: simple_remove_by_name()
` [PATCH v2 04/50] new helper: simple_done_creating()
` [PATCH v2 05/50] introduce a flag for explicitly marking persistently pinned dentries
` [PATCH v2 06/50] primitives for maintaining persisitency
` [PATCH v2 07/50] convert simple_{link,unlink,rmdir,rename,fill_super}() to new primitives
` [PATCH v2 08/50] convert ramfs and tmpfs
` [PATCH v2 09/50] procfs: make /self and /thread_self dentries persistent
` [PATCH v2 10/50] configfs, securityfs: kill_litter_super() not needed
` [PATCH v2 11/50] convert xenfs
` [PATCH v2 12/50] convert smackfs
` [PATCH v2 13/50] convert hugetlbfs
` [PATCH v2 14/50] convert mqueue
` [PATCH v2 15/50] convert bpf
` [PATCH v2 16/50] convert dlmfs
` [PATCH v2 17/50] convert fuse_ctl
` [PATCH v2 18/50] convert pstore
` [PATCH v2 19/50] convert tracefs
` [PATCH v2 20/50] convert debugfs
` [PATCH v2 21/50] debugfs: remove duplicate checks in callers of start_creating()
` [PATCH v2 22/50] convert efivarfs
` [PATCH v2 23/50] convert spufs
` [PATCH v2 24/50] convert ibmasmfs
` [PATCH v2 25/50] ibmasmfs: get rid of ibmasmfs_dir_ops
` [PATCH v2 26/50] convert devpts
` [PATCH v2 27/50] binderfs: use simple_start_creating()
` [PATCH v2 28/50] binderfs_binder_ctl_create(): kill a bogus check
` [PATCH v2 29/50] convert binderfs
` [PATCH v2 30/50] autofs_{rmdir,unlink}: dentry->d_fsdata->dentry == dentry there
` [PATCH v2 31/50] convert autofs
` [PATCH v2 32/50] convert binfmt_misc
` [PATCH v2 33/50] selinuxfs: don't stash the dentry of /policy_capabilities
` [PATCH v2 34/50] selinuxfs: new helper for attaching files to tree
` [PATCH v2 35/50] convert selinuxfs
` [PATCH v2 36/50] functionfs: switch to simple_remove_by_name()
` [PATCH v2 37/50] convert functionfs
` [PATCH v2 38/50] gadgetfs: switch to simple_remove_by_name()
` [PATCH v2 39/50] convert gadgetfs
` [PATCH v2 40/50] hypfs: don't pin dentries twice
` [PATCH v2 41/50] hypfs: switch hypfs_create_str() to returning int
` [PATCH v2 42/50] hypfs: swich hypfs_create_u64() "
` [PATCH v2 43/50] convert hypfs
` [PATCH v2 44/50] convert rpc_pipefs
` [PATCH v2 45/50] convert nfsctl
` [PATCH v2 46/50] convert rust_binderfs
` [PATCH v2 47/50] get rid of kill_litter_super()
` [PATCH v2 48/50] convert securityfs
` [PATCH v2 49/50] kill securityfs_recursive_remove()
` [PATCH v2 50/50] d_make_discardable(): warn if given a non-persistent dentry

[PATCH v2 0/8] fuse: support io-uring registered buffers
 2025-10-28 23:56 UTC  (14+ messages)
` [PATCH v2 1/8] io_uring/uring_cmd: add io_uring_cmd_import_fixed_full()
` [PATCH v2 2/8] fuse: refactor io-uring logic for getting next fuse request
` [PATCH v2 3/8] fuse: refactor io-uring header copying to ring
` [PATCH v2 4/8] fuse: refactor io-uring header copying from ring
` [PATCH v2 5/8] fuse: use enum types for header copying
` [PATCH v2 6/8] fuse: add user_ prefix to userspace headers and payload fields
` [PATCH v2 7/8] fuse: refactor setting up copy state for payload copying
` [PATCH v2 8/8] fuse: support io-uring registered buffers

[PATCH v1] man/man2/flock.2: Mention non-atomicity w.r.t close
 2025-10-28 23:38 UTC  (2+ messages)

[PATCHv4 0/8]
 2025-10-28 23:03 UTC  (7+ messages)
` [PATCHv4 5/8] iomap: simplify direct io validity check

Hit an assertion within lib/xarray.c from lib/test_xarray.c, would like help debugging
 2025-10-28 22:34 UTC 

[PATCH v4 0/5] mm: Refactor and improve VMA count limit code
 2025-10-28 21:24 UTC  (6+ messages)
` [PATCH v4 1/5] mm: Document lenient map_count checks
` [PATCH v4 2/5] mm/selftests: add max_vma_count tests
` [PATCH v4 3/5] mm: Introduce max_vma_count() to abstract the max map count sysctl
` [PATCH v4 4/5] mm: rename mm_struct::map_count to vma_count
` [PATCH v4 5/5] mm/tracing: introduce trace_mm_insufficient_vma_slots event

[PATCH] fuse: virtio_fs: add checks for FUSE protocol compliance
 2025-10-28 20:07 UTC  (2+ messages)

[RFC PATCH 05/12] fs/proc/task_mmu: refactor pagemap_pmd_range()
 2025-10-28 18:23 UTC  (14+ messages)

[RFC PATCH 00/12] remove is_swap_[pte, pmd]() + non-swap confusion
 2025-10-28 18:20 UTC  (6+ messages)

[PATCH v3 0/2] vfs-6.19.iomap commit 51311f045375 fixups
 2025-10-28 18:11 UTC  (3+ messages)
` [PATCH v3 1/2] iomap: rename bytes_pending/bytes_accounted to bytes_submitted/bytes_not_submitted
` [PATCH v3 2/2] iomap: fix race when reading in all bytes of a folio

[PATCH] iomap: fix race when reading in all bytes of a folio
 2025-10-28 17:31 UTC  (6+ messages)

[PATCH RFC] fs/ntfs3: disable readahead for compressed files
 2025-10-28 16:51 UTC 

[patch V5 00/12] uaccess: Provide and use scopes for user access
 2025-10-28 16:13 UTC  (26+ messages)
` [patch V5 01/12] ARM: uaccess: Implement missing __get_user_asm_dword()
` [patch V5 02/12] uaccess: Provide ASM GOTO safe wrappers for unsafe_*_user()
` [patch V5 03/12] x86/uaccess: Use unsafe wrappers for ASM GOTO
` [patch V5 04/12] powerpc/uaccess: "
` [patch V5 05/12] riscv/uaccess: "
` [patch V5 06/12] s390/uaccess: "
` [patch V5 07/12] uaccess: Provide scoped user access regions
` [patch V5 08/12] uaccess: Provide put/get_user_inline()
` [patch V5 10/12] futex: Convert to get/put_user_inline()
` [patch V5 12/12] select: Convert to scoped user access

[RFC PATCH 2/2] smb: client: add directory change tracking via SMB2 Change Notify
 2025-10-28 16:13 UTC  (6+ messages)

[PATCH v3 00/70] nstree: listns()
 2025-10-28 15:39 UTC  (16+ messages)
` [PATCH v3 05/70] nsfs: raise SB_I_NODEV and SB_I_NOEXEC
` [PATCH v3 11/70] ns: add active reference count
` [PATCH v3 17/70] nstree: add listns()

[PATCH v8] ceph: fix slab-use-after-free in have_mon_and_osd_map()
 2025-10-28 15:34 UTC  (3+ messages)

[PATCH v3 00/10] Binary Large Objects for Rust DebugFS
 2025-10-28 14:07 UTC  (9+ messages)
` [PATCH v3 01/10] rust: fs: add new type file::Offset
` [PATCH v3 04/10] rust: uaccess: add UserSliceWriter::write_slice_partial()
` [PATCH v3 05/10] rust: uaccess: add UserSliceWriter::write_slice_file()

[PATCHv3 0/2] Fix SIGBUS semantics with large folios
 2025-10-28 10:23 UTC  (4+ messages)
` [PATCHv3 1/2] mm/memory: Do not populate page table entries beyond i_size

[PATCH 00/22] coredump: cleanups & pidfd extension
 2025-10-28  8:46 UTC  (23+ messages)
` [PATCH 01/22] pidfs: use guard() for task_lock
` [PATCH 02/22] pidfs: fix PIDFD_INFO_COREDUMP handling
` [PATCH 03/22] pidfs: add missing PIDFD_INFO_SIZE_VER1
` [PATCH 04/22] pidfs: add missing BUILD_BUG_ON() assert on struct pidfd_info
` [PATCH 05/22] pidfd: add a new supported_mask field
` [PATCH 06/22] pidfs: prepare to drop exit_info pointer
` [PATCH 07/22] pidfs: drop struct pidfs_exit_info
` [PATCH 08/22] pidfs: expose coredump signal
` [PATCH 09/22] selftests/pidfd: update pidfd header
` [PATCH 10/22] selftests/pidfd: add first supported_mask test
` [PATCH 11/22] selftests/pidfd: add second "
` [PATCH 12/22] selftests/coredump: split out common helpers
` [PATCH 13/22] selftests/coredump: split out coredump socket tests
` [PATCH 14/22] selftests/coredump: fix userspace client detection
` [PATCH 15/22] selftests/coredump: fix userspace coredump "
` [PATCH 16/22] selftests/coredump: handle edge-triggered epoll correctly
` [PATCH 17/22] selftests/coredump: add debug logging to test helpers
` [PATCH 18/22] selftests/coredump: add debug logging to coredump socket tests
` [PATCH 19/22] selftests/coredump: add debug logging to coredump socket protocol tests
` [PATCH 20/22] selftests/coredump: ignore ENOSPC errors
` [PATCH 21/22] selftests/coredump: add first PIDFD_INFO_COREDUMP_SIGNAL test
` [PATCH 22/22] selftests/coredump: add second "

[RFC PATCH v1 0/3] Userspace MFR Policy via memfd
 2025-10-28  7:00 UTC  (8+ messages)

[PATCH v1] exfat: zero out post-EOF page cache on file extension
 2025-10-28  4:56 UTC  (2+ messages)

[PATCH v3 0/5] dax/hmem, cxl: Coordinate Soft Reserved handling with CXL
 2025-10-28  2:12 UTC  (7+ messages)

[FS-DEV][NTFSPLUS][BUGREPORT]NtfsPlus extend mft data allocation error
 2025-10-28  2:08 UTC  (2+ messages)

[PATCH AUTOSEL 6.17-6.12] exfat: fix improper check of dentry.stream.valid_size
 2025-10-28  0:39 UTC  (2+ messages)
` [PATCH AUTOSEL 6.17] fs: return EOPNOTSUPP from file_setattr/file_getattr syscalls

[PATCH] fuse: disable default bdi strictlimiting
 2025-10-27 22:38 UTC  (4+ messages)


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