linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-08-25 04:44:03 to 2025-08-25 23:44:15 UTC [more...]

[PATCHED][RFC][CFT] mount-related stuff
 2025-08-25 23:44 UTC  (108+ messages)
` [PATCH 01/52] fs/namespace.c: fix the namespace_sem guard mess
  ` [PATCH 02/52] introduced guards for mount_lock
  ` [PATCH 03/52] fs/namespace.c: allow to drop vfsmount references via __free(mntput)
  ` [PATCH 04/52] __detach_mounts(): use guards
  ` [PATCH 05/52] __is_local_mountpoint(): "
  ` [PATCH 06/52] do_change_type(): "
  ` [PATCH 07/52] do_set_group(): "
  ` [PATCH 08/52] mark_mounts_for_expiry(): "
  ` [PATCH 09/52] put_mnt_ns(): "
  ` [PATCH 10/52] mnt_already_visible(): "
  ` [PATCH 11/52] check_for_nsfs_mounts(): no need to take locks
  ` [PATCH 12/52] propagate_mnt(): use scoped_guard(mount_locked_reader) for mnt_set_mountpoint()
  ` [PATCH 13/52] has_locked_children(): use guards
  ` [PATCH 14/52] mnt_set_expiry(): "
  ` [PATCH 15/52] path_is_under(): "
  ` [PATCH 16/52] current_chrooted(): don't bother with follow_down_one()
  ` [PATCH 17/52] current_chrooted(): use guards
  ` [PATCH 18/52] do_move_mount(): trim local variables
  ` [PATCH 19/52] do_move_mount(): deal with the checks on old_path early
  ` [PATCH 20/52] move_mount(2): take sanity checks in 'beneath' case into do_lock_mount()
  ` [PATCH 21/52] finish_automount(): simplify the ELOOP check
  ` [PATCH 22/52] do_loopback(): use __free(path_put) to deal with old_path
  ` [PATCH 23/52] pivot_root(2): use __free() to deal with struct path in it
  ` [PATCH 24/52] finish_automount(): take the lock_mount() analogue into a helper
  ` [PATCH 25/52] do_new_mount_rc(): use __free() to deal with dropping mnt on failure
  ` [PATCH 26/52] finish_automount(): "
  ` [PATCH 31/52] pivot_root(2): use old_mp.mp->m_dentry instead of old.dentry
  ` [PATCH 33/52] new helper: topmost_overmount()
  ` [PATCH 35/52] constify check_mnt()
  ` [PATCH 36/52] do_mount_setattr(): constify path argument
  ` [PATCH 37/52] do_set_group(): constify path arguments
  ` [PATCH 38/52] drop_collected_paths(): constify arguments
  ` [PATCH 39/52] collect_paths(): constify the return value
  ` [PATCH 40/52] do_move_mount(), vfs_move_mount(), do_move_mount_old(): constify struct path argument(s)
  ` [PATCH 41/52] mnt_warn_timestamp_expiry(): constify struct path argument
  ` [PATCH 42/52] do_new_mount{,_fc}(): "
  ` [PATCH 43/52] do_{loopback,change_type,remount,reconfigure_mnt}(): "
  ` [PATCH 44/52] path_mount(): "
  ` [PATCH 45/52] may_copy_tree(), __do_loopback(): "
  ` [PATCH 46/52] path_umount(): "
  ` [PATCH 47/52] constify can_move_mount_beneath() arguments
  ` [PATCH 48/52] do_move_mount_old(): use __free(path_put)
  ` [PATCH 49/52] do_mount(): "
  ` [PATCH 50/52] umount_tree(): take all victims out of propagation graph at once
  ` [PATCH 51/52] ecryptfs: get rid of pointless mount references in ecryptfs dentries
  ` [PATCH 52/52] fs/namespace.c: sanitize descriptions for {__,}lookup_mnt()

[RFC PATCH v1 1/2] fs: Add O_DENY_WRITE
 2025-08-25 23:06 UTC  (2+ messages)

[PATCH] rust: file: use to_result for error handling
 2025-08-25 22:54 UTC  (2+ messages)

[PATCH] hfsplus: fix KMSAN uninit-value issue in hfsplus_delete_cat()
 2025-08-25 22:51 UTC 

[PATCH 08/11] tools headers: Sync uapi/linux/fcntl.h with the kernel source
 2025-08-25 21:59 UTC  (2+ messages)
` [PATCH 09/11] tools headers: Sync uapi/linux/fs.h "

[RFC] ceph: strange mount/unmount behavior
 2025-08-25 21:53 UTC 

Infinite loop in get_file_rcu() in face of a saturated ref count
 2025-08-25 21:43 UTC 

[PATCH 0/3] use vm_flags_t consistently
 2025-08-25 21:37 UTC  (10+ messages)
` [PATCH 2/3] mm: update core kernel code to "

[PATCH] binfmt_elf: Replace offsetof() with struct_size() in fill_note_info()
 2025-08-25 21:30 UTC  (2+ messages)

[REGRESSION] fs: ERR_PTR dereference in expand_files() on v6.12.43
 2025-08-25 19:56 UTC  (2+ messages)

[PATCH 0/2] Fix the initialization of max_hw_wzeroes_unmap_sectors for stacking drivers
 2025-08-25 19:54 UTC  (7+ messages)
` [PATCH 1/2] md: init queue_limits->max_hw_wzeroes_unmap_sectors parameter
` [PATCH 2/2] drbd: "

[PATCH 00/50] fs: rework inode reference counting
 2025-08-25 19:35 UTC  (27+ messages)
` [PATCH 16/50] fs: change evict_inodes to use iput instead of evict directly
` [PATCH 17/50] fs: hold a full ref while the inode is on a LRU
` [PATCH 18/50] fs: disallow 0 reference count inodes
` [PATCH 20/50] fs: convert i_count to refcount_t
` [PATCH 21/50] fs: use refcount_inc_not_zero in igrab
` [PATCH 22/50] fs: use inode_tryget in find_inode*
` [PATCH 23/50] fs: update find_inode_*rcu to check the i_count count
` [PATCH 27/50] fs: use inode_tryget in evict_inodes
` [PATCH 35/50] fs: remove I_WILL_FREE|I_FREEING from fs-writeback.c
` [PATCH 49/50] fs: remove I_FREEING|I_WILL_FREE
` [PATCH 50/50] fs: add documentation explaining the reference count rules for inodes

[PATCH] uapi/fcntl: conditionally define AT_RENAME* macros
 2025-08-25 19:29 UTC  (9+ messages)

[PATCH v2 0/1] man2/mount.2: expand and clarify docs for MS_REMOUNT | MS_BIND
 2025-08-25 19:13 UTC  (3+ messages)
` [PATCH v2 1/1] "

[PATCH 0/3] memcg, writeback: Don't wait writeback completion
 2025-08-25 19:06 UTC  (15+ messages)
` [PATCH] memcg: Don't wait writeback completion when release memcg
    ` [External] "

[PATCH] initrd: support erofs as initrd
 2025-08-25 18:27 UTC  (2+ messages)

[PATCH v2 0/4] vfs: if RESOLVE_NO_XDEV passed to openat2, don't *trigger* automounts
 2025-08-25 18:12 UTC  (5+ messages)
` [PATCH v2 1/4] namei: move cross-device check to traverse_mounts
` [PATCH v2 2/4] namei: remove LOOKUP_NO_XDEV check from handle_mounts
` [PATCH v2 3/4] namei: move cross-device check to __traverse_mounts
` [PATCH v2 4/4] openat2: don't trigger automounts with RESOLVE_NO_XDEV

[RFC PATCH v1 0/2] Add O_DENY_WRITE (complement AT_EXECVE_CHECK)
 2025-08-25 18:10 UTC  (10+ messages)
` [RFC PATCH v1 1/2] fs: Add O_DENY_WRITE

[syzbot] [fuse?] KASAN: slab-out-of-bounds Write in fuse_dev_do_write
 2025-08-25 18:02 UTC  (3+ messages)
` [PATCH] fuse: Block access to folio overlimit

[PATCH 0/4] vfs: if RESOLVE_NO_XDEV passed to openat2, don't *trigger* automounts
 2025-08-25 17:48 UTC  (9+ messages)
` [PATCH 4/4] vfs: fs/namei.c: "

[RFC RESEND] binfmt_elf: preserve original ELF e_flags in core dumps
 2025-08-25 17:17 UTC  (3+ messages)
` [RFC RESEND v2] binfmt_elf: preserve original ELF e_flags for "

[PATCH v6 0/9] ovl: Enable support for casefold layers
 2025-08-25 17:11 UTC  (25+ messages)
` [PATCH v6 1/9] fs: Create sb_encoding() helper
` [PATCH v6 2/9] fs: Create sb_same_encoding() helper
` [PATCH v6 3/9] ovl: Prepare for mounting case-insensitive enabled layers
` [PATCH v6 4/9] ovl: Create ovl_casefold() to support casefolded strncmp()
` [PATCH v6 5/9] ovl: Ensure that all layers have the same encoding
` [PATCH v6 6/9] ovl: Set case-insensitive dentry operations for ovl sb
` [PATCH v6 9/9] ovl: Support mounting case-insensitive enabled layers

[PATCH util-linux v4] fallocate: add FALLOC_FL_WRITE_ZEROES support
 2025-08-25 17:09 UTC  (3+ messages)

[PATCH] exec: Fix incorrect type for ret
 2025-08-25 16:34 UTC  (5+ messages)

[PATCH v3 00/12] man2: document "new" mount API
 2025-08-25 16:22 UTC  (5+ messages)
` [PATCH v3 05/12] man/man2/fspick.2: "

[RFC 0/1] writeback: add sysfs to config the number of writeback contexts
 2025-08-25 16:15 UTC  (4+ messages)
` [RFC 1/1] "

[PATCH 0/1] man2/mount.2: expand and clarify docs for MS_REMOUNT | MS_BIND
 2025-08-25 16:12 UTC  (4+ messages)
` [PATCH 1/1] "

[PATCH util-linux v3] fallocate: add FALLOC_FL_WRITE_ZEROES support
 2025-08-25 15:56 UTC  (2+ messages)

[PATCHv3 0/8] direct-io: even more flexible io vectors
 2025-08-25 14:53 UTC  (17+ messages)
` [PATCHv3 1/8] block: check for valid bio while splitting
` [PATCHv3 2/8] block: add size alignment to bio_iov_iter_get_pages
` [PATCHv3 3/8] block: align the bio after building it
  ` [PATCHv3 4/8] block: simplify direct io validity check
  ` [PATCHv3 5/8] iomap: "
  ` [PATCHv3 6/8] block: remove bdev_iter_is_aligned
  ` [PATCHv3 7/8] blk-integrity: use simpler alignment check
  ` [PATCHv3 8/8] iov_iter: remove iov_iter_is_aligned

Serious error in autofs docs, which has design implications
 2025-08-25 14:38 UTC  (3+ messages)

[PATCH v8 0/5] Add support for long task name
 2025-08-25 14:01 UTC  (3+ messages)
` [PATCH v8 4/5] treewide: Switch memcpy() users of 'task->comm' to a more safer implementation

[PATCH] exfat: Remove unnecessary parentheses
 2025-08-25 13:35 UTC 

io_uring / dio metadata fixes
 2025-08-25 13:35 UTC  (10+ messages)
` [PATCH 1/2] fs: add a FMODE_ flag to indicate IOCB_HAS_METADATA availability

[PATCH] proc: use the same treatment to check proc_lseek as ones for proc_read_iter et.al
 2025-08-25 12:47 UTC  (3+ messages)

[PATCH v3 00/11] mm: vm_normal_page*() improvements
 2025-08-25 12:31 UTC  (3+ messages)
` [PATCH v3 08/11] mm/memory: convert print_bad_pte() to print_bad_page_map()

[PATCH AUTOSEL 6.16-5.15] fs: writeback: fix use-after-free in __mark_inode_dirty()
 2025-08-25 12:14 UTC 

[PATCH] fs: Use try_cmpxchg() in sb_init_done_wq()
 2025-08-25 12:09 UTC  (2+ messages)

[PATCH] fs: Use try_cmpxchg() in start_dir_add()
 2025-08-25 12:09 UTC  (2+ messages)

[PATCH v3 0/4] allow partial folio write with iomap_folio_state
 2025-08-25 11:39 UTC  (4+ messages)

[PATCH] iomap: allow iomap using the per-cpu bio cache
 2025-08-25 10:47 UTC  (10+ messages)

[PATCH v2 00/10] powerpc: Implement masked user access
 2025-08-25 10:18 UTC  (5+ messages)
` [PATCH v2 10/10] powerpc/uaccess: "

[PATCH] loop: fix zero sized loop for block special file
 2025-08-25  9:36 UTC  (3+ messages)

[MAINTAINER SUMMIT] Adding more formality around feature inclusion and ejection
 2025-08-25  8:20 UTC  (8+ messages)

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

[viro-vfs:work.mount 30/52] Warning: fs/namespace.c:2616 function parameter 'dest' not described in 'attach_recursive_mnt'
 2025-08-25  4:55 UTC 


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