Linux XFS filesystem development
 help / color / mirror / Atom feed
 messages from 2025-09-15 13:20:49 to 2025-09-16 23:50:27 UTC [more...]

[PATCH v3 00/15] fuse: use iomap for buffered reads + readahead
 2025-09-16 23:44 UTC 

[PATCH v2 00/16] fuse: use iomap for buffered reads + readahead
 2025-09-16 23:23 UTC  (13+ 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 v2 13/16] iomap: move read/readahead logic out of CONFIG_BLOCK guard

[PATCH RFC] xfs: Don't hold XFS_ILOCK_SHARED over log force during fsync
 2025-09-16 21:32 UTC  (7+ messages)

[PATCH v4 00/12] hide ->i_state behind accessors
 2025-09-16 17:38 UTC  (15+ messages)
` [PATCH v4 01/12] fs: provide accessors for ->i_state
` [PATCH v4 02/12] fs: use ->i_state accessors in core kernel
` [PATCH v4 03/12] fs: mechanically convert most filesystems to use ->i_state accessors
` [PATCH v4 04/12] btrfs: use the new "
` [PATCH v4 05/12] netfs: "
` [PATCH v4 06/12] nilfs2: "
` [PATCH v4 07/12] xfs: "
` [PATCH v4 08/12] ext4: "
` [PATCH v4 09/12] f2fs: "
` [PATCH v4 10/12] ceph: "
` [PATCH v4 11/12] overlayfs: "
` [PATCH v4 12/12] fs: make plain ->i_state access fail to compile

cleanup error tags v2
 2025-09-16 16:46 UTC  (10+ messages)
` [PATCH 1/6] xfs: remove xfs_errortag_get
` [PATCH 2/6] xfs: remove xfs_errortag_set
` [PATCH 3/6] xfs: remove the expr argument to XFS_TEST_ERROR
` [PATCH 4/6] xfs: remove pointless externs in xfs_error.h
` [PATCH 5/6] xfs: centralize error tag definitions
` [PATCH 6/6] xfs: constify xfs_errortag_random_default

[RFC V2 0/3] Add support to shrink multiple empty AGs
 2025-09-16 15:14 UTC  (5+ messages)
` [RFC V2 1/3] xfs: Re-introduce xg_active_wq field in struct xfs_group
` [RFC V2 2/3] xfs: Refactoring the nagcount and delta calculation
` [RFC V2 3/3] xfs: Add support to shrink multiple empty AGs

[PATCHSET RFC v5 1/8] fuse: general bug fixes
 2025-09-16 14:50 UTC  (81+ messages)
  ` [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
  ` [PATCH 2/9] fuse: force a ctime update after a fileattr_set call when in iomap mode
  ` [PATCH 3/9] fuse: allow local filesystems to set some VFS iflags
  ` [PATCH 4/9] fuse_trace: "
  ` [PATCH 5/9] fuse: cache atime when in iomap mode
  ` [PATCH 6/9] fuse: let the kernel handle KILL_SUID/KILL_SGID for iomap filesystems
  ` [PATCH 7/9] fuse_trace: "
  ` [PATCH 8/9] fuse: update ctime when updating acls on an iomap inode
  ` [PATCH 9/9] fuse: always cache ACLs when using iomap
` [PATCHSET RFC v5 7/8] fuse: cache iomap mappings for even better file IO performance
  ` [PATCH 01/10] fuse: cache iomaps
  ` [PATCH 02/10] fuse_trace: "
  ` [PATCH 03/10] fuse: use the iomap cache for iomap_begin
  ` [PATCH 04/10] fuse_trace: "
  ` [PATCH 05/10] fuse: invalidate iomap cache after file updates
  ` [PATCH 06/10] fuse_trace: "
  ` [PATCH 07/10] fuse: enable iomap cache management
  ` [PATCH 08/10] fuse_trace: "
  ` [PATCH 09/10] fuse: overlay iomap inode info in struct fuse_inode
  ` [PATCH 10/10] fuse: enable iomap
` [PATCHSET RFC v5 8/8] fuse: run fuse servers as a contained service
  ` [PATCH 1/2] fuse: allow privileged mount helpers to pre-approve iomap usage
  ` [PATCH 2/2] fuse: set iomap backing device block size

[PATCH] xfs: move the XLOG_REG_ constants out of xfs_log_format.h
 2025-09-16 14:42 UTC  (5+ messages)

kill xlog_in_core_2_t
 2025-09-16 13:56 UTC  (8+ messages)
` [PATCH 1/7] xfs: add a XLOG_CYCLE_DATA_SIZE constant
` [PATCH 2/7] xfs: add a on-disk log header cycle array accessor
` [PATCH 3/7] xfs: don't use xlog_in_core_2_t in struct xlog_in_core
` [PATCH 4/7] xfs: cleanup xlog_alloc_log a bit
` [PATCH 5/7] xfs: remove xlog_in_core_2_t
` [PATCH 6/7] xfs: remove the xlog_rec_header_t typedef
` [PATCH 7/7] xfs: remove l_iclog_heads

store the buftarg size in the buftarg v3
 2025-09-16 13:52 UTC  (3+ messages)
` [PATCH 1/2] xfs: track the number of blocks in each buftarg
` [PATCH 2/2] xfs: use bt_nr_blocks in xfs_dax_translate_range

[ANNOUNCE] xfs-linux: for-next updated to 8e2cdd8e18ff
 2025-09-16 11:35 UTC 

[PATCH 0/3] xfs: hint based zone allocation improvements
 2025-09-16 11:34 UTC  (6+ messages)
  ` [PATCH 1/3] fs: add an enum for number of life time hints

fix cross-platform log CRC validation
 2025-09-16 11:34 UTC  (8+ messages)
` [PATCH 1/2] xfs: rename the old_crc variable in xlog_recover_process
` [PATCH 2/2] xfs: fix log CRC mismatches between i386 and other architectures

remove most typedefs from xfs_log_format.h
 2025-09-16 11:34 UTC  (18+ messages)
` [PATCH 01/15] xfs: remove the xlog_op_header_t typedef
` [PATCH 02/15] xfs: remove the xfs_trans_header_t typedef
` [PATCH 03/15] xfs: remove the xfs_extent_t typedef
` [PATCH 04/15] xfs: remove the xfs_extent32_t typedef
` [PATCH 05/15] xfs: remove the xfs_extent64_t typedef
` [PATCH 06/15] xfs: remove the xfs_efi_log_format_t typedef
` [PATCH 07/15] xfs: remove the xfs_efi_log_format_32_t typedef
` [PATCH 08/15] xfs: remove the xfs_efi_log_format_64_t typedef
` [PATCH 09/15] xfs: remove the xfs_efd_log_format_t typedef
` [PATCH 10/15] xfs: remove the unused xfs_efd_log_format_32_t typedef
` [PATCH 11/15] xfs: remove the unused xfs_efd_log_format_64_t typedef
` [PATCH 12/15] xfs: remove the unused xfs_buf_log_format_t typedef
` [PATCH 13/15] xfs: remove the unused xfs_dq_logformat_t typedef
` [PATCH 14/15] xfs: remove the unused xfs_qoff_logformat_t typedef
` [PATCH 15/15] xfs: remove the unused xfs_log_iovec_t typedef

[PATCH] xfs: extend removed sysctls table
 2025-09-16 11:34 UTC  (2+ messages)

linux-next: build warning after merge of the xfs tree
 2025-09-16 10:22 UTC  (2+ messages)

[linux-next:master] [xfs] b9a176e541: xfstests.xfs.613.fail
 2025-09-16  7:59 UTC 

[PATCH CANDIDATE 5.15, 6.1, 6.6] xfs: Increase XFS_QM_TRANS_MAXDQS to 5
 2025-09-16  6:37 UTC  (5+ messages)

cleanup error tags
 2025-09-15 23:37 UTC  (15+ messages)
` [PATCH 1/6] xfs: remove xfs_errortag_get
` [PATCH 2/6] xfs: remove xfs_errortag_set
` [PATCH 3/6] xfs: remove the expr argument to XFS_TEST_ERROR
` [PATCH 4/6] xfs: remove pointless externs in xfs_error.h
` [PATCH 5/6] xfs: centralize error tag definitions
` [PATCH 6/6] xfs: constify xfs_errortag_random_default

xfsprogs: cleanup error injection
 2025-09-15 20:51 UTC  (5+ messages)
` [PATCH 1/2] xfs: centralize error tag definitions
` [PATCH 2/2] xfs_io: use the XFS_ERRTAG macro to generate injection targets

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

[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 v6 00/11] Add more tests for multi fs block atomic writes
 2025-09-15 13:26 UTC  (3+ messages)
` [PATCH v6 09/12] generic: Add sudden shutdown tests for multi "


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