public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-07-31 14:47:48 to 2025-08-21 01:14:24 UTC [more...]

[RFC v4] fuse: use fs-iomap for better performance so we can containerize ext4
 2025-08-21  1:14 UTC  (32+ messages)
` [PATCHSET RFC v4 1/6] fuse4fs: fork a low level fuse server
  ` [PATCH 01/20] fuse2fs: port fuse2fs to lowlevel libfuse API
  ` [PATCH 02/20] fuse4fs: drop fuse 2.x support code
  ` [PATCH 03/20] fuse4fs: namespace some helpers
  ` [PATCH 04/20] fuse4fs: convert to low level API
  ` [PATCH 05/20] libsupport: port the kernel list.h to libsupport
  ` [PATCH 06/20] libsupport: add a cache
  ` [PATCH 07/20] cache: disable debugging
  ` [PATCH 08/20] cache: use modern list iterator macros
  ` [PATCH 09/20] cache: embed struct cache in the owner
  ` [PATCH 10/20] cache: pass cache pointer to callbacks
  ` [PATCH 11/20] cache: pass a private data pointer through cache_walk
  ` [PATCH 12/20] cache: add a helper to grab a new refcount for a cache_node
  ` [PATCH 13/20] cache: return results of a cache flush
  ` [PATCH 14/20] cache: add a "get only if incore" flag to cache_node_get
  ` [PATCH 15/20] cache: support gradual expansion
  ` [PATCH 16/20] cache: implement automatic shrinking
  ` [PATCH 17/20] fuse4fs: add cache to track open files
  ` [PATCH 18/20] fuse4fs: use the orphaned inode list
  ` [PATCH 19/20] fuse4fs: implement FUSE_TMPFILE
  ` [PATCH 20/20] fuse4fs: create incore reverse orphan list
` [PATCHSET RFC v4 2/6] libext2fs: refactoring for fuse2fs iomap support
  ` [PATCH 01/10] libext2fs: make it possible to extract the fd from an IO manager
  ` [PATCH 02/10] libext2fs: always fsync the device when flushing the cache
  ` [PATCH 03/10] libext2fs: always fsync the device when closing the unix IO manager
  ` [PATCH 04/10] libext2fs: only fsync the unix fd if we wrote to the device
  ` [PATCH 05/10] libext2fs: invalidate cached blocks when freeing them
` [PATCHSET RFC v4 3/6] fuse2fs: use fuse iomap data paths for better file I/O performance
` [PATCHSET RFC v4 4/6] "
` [PATCHSET RFC v4 5/6] fuse2fs: handle timestamps and ACLs correctly when iomap is enabled
` [PATCHSET RFC v4 6/6] fuse2fs: improve block and inode caching

[PATCHSET] fuse2fs: round 4 bug fixes
 2025-08-20 23:44 UTC  (13+ messages)
` [PATCH 01/12] mke2fs: don't print warnings about dax to stderr
` [PATCH 02/12] fuse2fs: fix readlink failure
` [PATCH 03/12] fuse2fs: fix various problems in get_req_groups
` [PATCH 04/12] fuse2fs: allow O_APPEND and O_TRUNC opens
` [PATCH 05/12] fuse2fs: don't let ENOENT escape from ioctl_fitrim
` [PATCH 06/12] fuse2fs: don't run fallible operations in op_init
` [PATCH 07/12] fuse2fs: check for recorded fs errors before touching things
` [PATCH 08/12] fuse2fs: interpret error codes in remove_ea_inodes correctly
` [PATCH 09/12] fuse2fs: don't write inode when inactivation fails
` [PATCH 10/12] fuse2fs: set EXT2_ERROR_FS when recording errors
` [PATCH 11/12] fuse2fs: disable fallocate/zero range on indirect files
` [PATCH 12/12] libext2fs: relock CACHE_MTX after calling ->write_error

[PATCH 6.16 000/564] 6.16.2-rc2 review
 2025-08-20 14:36 UTC 

[PATCH 6.12 000/438] 6.12.43-rc2 review
 2025-08-20 12:45 UTC 

[PATCH 6.15 000/509] 6.15.11-rc2 review
 2025-08-20 11:14 UTC 

[REGRESSION][STABLE] ext4: too many credits wanted / file system issue in v6.16.1
 2025-08-19 22:38 UTC  (2+ messages)

[PATCH] docs: fix spelling and grammar in atomic_writes
 2025-08-19 17:21 UTC  (3+ messages)

[GIT PULL] ext4 bug fixes for v6.17-rc3
 2025-08-18 16:40 UTC  (2+ messages)

[Bug 217965] New: ext4(?) regression since 6.5.0 on sata hdd
 2025-08-18 13:48 UTC  (2+ messages)
` [Bug 217965] "

[PATCH] ext4: replace min/max nesting with clamp()
 2025-08-18  7:28 UTC 

[linus:master] [ext4] 4b41deb896: stress-ng.fsize.ops_per_sec 23.3% improvement
 2025-08-18  2:46 UTC 

[PATCH RESEND] fs/ext4: remove unused variable 'de' in ext4_init_new_dir()
 2025-08-17 23:43 UTC  (2+ messages)

[PATCH 6.16 000/627] 6.16.1-rc1 review
 2025-08-15 16:24 UTC  (13+ messages)

[PATCH v5 00/13] Move fscrypt and fsverity info out of struct inode
 2025-08-15 14:28 UTC  (26+ messages)
` [PATCH v5 01/13] fscrypt: replace raw loads of info pointer with helper function
` [PATCH v5 02/13] fscrypt: add support for info in fs-specific part of inode
` [PATCH v5 03/13] ext4: move crypt info pointer to "
` [PATCH v5 04/13] f2fs: "
` [PATCH v5 05/13] ubifs: "
` [PATCH v5 06/13] ceph: "
` [PATCH v5 07/13] fs: remove inode::i_crypt_info
` [PATCH v5 08/13] fsverity: add support for info in fs-specific part of inode
` [PATCH v5 09/13] ext4: move verity info pointer to "
` [PATCH v5 10/13] f2fs: "
` [PATCH v5 11/13] btrfs: "
` [PATCH v5 12/13] fs: remove inode::i_verity_info
` [PATCH v5 13/13] fsverity: check IS_VERITY() in fsverity_cleanup_inode()

[RFC v3] fuse: use fs-iomap for better performance so we can containerize ext4
 2025-08-15 14:20 UTC  (11+ messages)

[RFC PATCH v1 0/9] freezer: Introduce freeze priority model to address process dependency issues
 2025-08-15  8:17 UTC  (5+ messages)

[PATCH v1] ext4: fix incorrect function name in comment
 2025-08-15  3:13 UTC  (5+ messages)

[tytso-ext4:dev] BUILD SUCCESS 9d98cf4632258720f18265a058e62fde120c0151
 2025-08-14 20:57 UTC 

[PATCH] jbd2: prevent softlockup in jbd2_log_do_checkpoint()
 2025-08-14 14:48 UTC  (2+ messages)

[PATCH 0/4] fs: Remove redundant __GFP_NOWARN
 2025-08-14 14:48 UTC  (3+ messages)
` [PATCH 3/4] ext4: "

[PATCH 1/2] ext4: show the default enabled i_version option
 2025-08-14 14:48 UTC  (2+ messages)

[PATCH] ext4: fix hole length calculation overflow in non-extent inodes
 2025-08-14 14:48 UTC  (2+ messages)

[PATCH 1/2] ext4: Fix fsmap end of range reporting with bigalloc
 2025-08-14 14:48 UTC  (5+ messages)
` [PATCH 2/2] ext4: Fix reserved gdt blocks handling in fsmap

[PATCH] ext4: check fast symlink for ea_inode correctly
 2025-08-14 14:48 UTC  (2+ messages)

[PATCH] ext4: remove useless if check
 2025-08-14 14:48 UTC  (2+ messages)

[PATCH v2] ext4: Using kmalloc_array() for array space allocation
 2025-08-14 14:48 UTC  (2+ messages)

[PATCH v4 00/11] Add more tests for multi fs block atomic writes
 2025-08-13 13:54 UTC  (27+ messages)
` [PATCH v4 01/11] common/rc: Add _min() and _max() helpers
` [PATCH v4 02/11] common/rc: Add a helper to run fsx on a given file
` [PATCH v4 03/11] ltp/fsx.c: Add atomic writes support to fsx
` [PATCH v4 04/11] generic: Add atomic write test using fio crc check verifier
` [PATCH v4 05/11] generic: Add atomic write test using fio verify on file mixed mappings
` [PATCH v4 06/11] generic: Add atomic write multi-fsblock O_[D]SYNC tests
` [PATCH v4 07/11] generic: Stress fsx with atomic writes enabled
` [PATCH v4 08/11] generic: Add sudden shutdown tests for multi block atomic writes
` [PATCH v4 09/11] ext4: Atomic writes stress test for bigalloc using fio crc verifier
` [PATCH v4 10/11] ext4: Atomic writes test for bigalloc using fio crc verifier on multiple files
` [PATCH v4 11/11] ext4: Atomic write test for extent split across leaf nodes

[PATCH] ext4: remove branch to identical code ext4_init_new_dir()
 2025-08-12 16:53 UTC 

Ext4 iomap warning during btrfs/136 (yes, it's from btrfs test cases)
 2025-08-12 16:48 UTC  (9+ messages)

[PATCH] ext4: Using vmalloc_array() for array space allocation
 2025-08-11 12:35 UTC 

[PATCH v3 00/13] Add more tests for multi fs block atomic writes
 2025-08-10  9:41 UTC  (6+ messages)
` [PATCH v3 07/13] generic/1228: Add atomic write multi-fsblock O_[D]SYNC tests

[syzbot] [ext4?] possible deadlock in ext4_readpage_inline (2)
 2025-08-08 18:02 UTC 

[PATCHv2] ext2fs: fix fast symlink blocks check
 2025-08-08  8:04 UTC 

[PATCH v3 05/13] generic/1226: Add atomic write test using fio crc check verifier
 2025-08-08  6:00 UTC  (15+ messages)

[PATCH v1 0/5] PM: Reduce spurious wakeups
 2025-08-08  2:12 UTC  (4+ messages)
` [PATCH v1 5/5] jbd2: Add TASK_FREEZABLE to kjournald2 thread

[PATCH] ext4: don't try to clear the orphan_present feature block device is r/o
 2025-08-07 16:22 UTC 

[PATCH v3 3/7] iomap: optional zero range dirty folio processing
 2025-08-07  4:58 UTC  (13+ messages)

[PATCH] ext2fs: fix fast symlink blocks check
 2025-08-06 23:23 UTC  (2+ messages)

[BUG] ext4: mballoctor issue observed in fs/ext4/mballoc.c ext4_mb_regular_allocator on kernel 6.6
 2025-08-06 14:46 UTC 

[PATCH 0/1] fs: ext4: use GFP_KERNEL to GFP_NOFS to avoid deadlock
 2025-08-06  2:28 UTC  (2+ messages)
` [PATCH 1/1] fs: ext4: change "

[PATCH AUTOSEL 6.16] ext4: limit the maximum folio order
 2025-08-05 13:09 UTC  (2+ messages)
` [PATCH AUTOSEL 6.16-5.4] ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr

[PATCH] generic/765: modify some steps to fix test
 2025-08-05  9:55 UTC  (2+ messages)

[PATCH v2] xfs: disallow atomic writes on DAX
 2025-08-05  4:32 UTC  (2+ messages)

[PATCH AUTOSEL 5.15 14/15] ext2: Handle fiemap on empty files to prevent EINVAL
 2025-08-03 21:22 UTC 

[PATCH AUTOSEL 6.1 14/16] ext2: Handle fiemap on empty files to prevent EINVAL
 2025-08-03 21:21 UTC 

[PATCH AUTOSEL 6.6 20/23] ext2: Handle fiemap on empty files to prevent EINVAL
 2025-08-03 21:20 UTC 

[tytso-ext4:dev] BUILD SUCCESS 261a2abe20b034c5383a1474133bad3110291ece
 2025-08-01 16:23 UTC 

[PATCH 00/10] convert the majority of file systems to mmap_prepare
 2025-08-01 14:00 UTC  (2+ messages)

[GIT PULL] ext4 changes for 6.17-rc1
 2025-07-31 17:54 UTC  (2+ messages)

[PATCHSET] fuse2fs: more bug fixes
 2025-07-31 14:47 UTC  (2+ messages)


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