public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-11-07 00:01:17 to 2025-11-12 18:20:05 UTC [more...]

[PATCHSET] fstests: more random fixes for v2025.11.04
 2025-11-12 18:20 UTC  (21+ messages)
` [PATCH 1/7] common: leave any breadcrumbs when _link_out_file_named can't find the output file
` [PATCH 2/7] generic/778: fix severe performance problems
` [PATCH 3/7] generic/778: fix background loop control with sentinel files
` [PATCH 4/7] generic/019: skip test when there is no journal
` [PATCH 5/7] xfs/837: fix test to work with pre-metadir quota mount options
` [PATCH 6/7] generic/774: reduce file size
` [PATCH 7/7] generic/774: turn off lfsr

[PATCH] fs/ext4: fix typo in comment
 2025-11-12 15:59 UTC 

[PATCH v3 00/24] ext4: enable block size larger than page size
 2025-11-12 15:57 UTC  (33+ messages)
` [PATCH v3 01/24] ext4: remove page offset calculation in ext4_block_zero_page_range()
` [PATCH v3 02/24] ext4: remove page offset calculation in ext4_block_truncate_page()
` [PATCH v3 03/24] ext4: remove PAGE_SIZE checks for rec_len conversion
` [PATCH v3 04/24] ext4: make ext4_punch_hole() support large block size
` [PATCH v3 05/24] ext4: enable DIOREAD_NOLOCK by default for BS > PS as well
` [PATCH v3 06/24] ext4: introduce s_min_folio_order for future BS > PS support
` [PATCH v3 07/24] ext4: support large block size in ext4_calculate_overhead()
` [PATCH v3 08/24] ext4: support large block size in ext4_readdir()
` [PATCH v3 09/24] ext4: add EXT4_LBLK_TO_B macro for logical block to bytes conversion
` [PATCH v3 10/24] ext4: add EXT4_LBLK_TO_PG and EXT4_PG_TO_LBLK for block/page conversion
` [PATCH v3 11/24] ext4: support large block size in ext4_mb_load_buddy_gfp()
` [PATCH v3 12/24] ext4: support large block size in ext4_mb_get_buddy_page_lock()
` [PATCH v3 13/24] ext4: support large block size in ext4_mb_init_cache()
` [PATCH v3 14/24] ext4: prepare buddy cache inode for BS > PS with large folios
` [PATCH v3 15/24] ext4: rename 'page' references to 'folio' in multi-block allocator
` [PATCH v3 16/24] ext4: support large block size in ext4_mpage_readpages()
` [PATCH v3 17/24] ext4: support large block size in ext4_block_write_begin()
` [PATCH v3 18/24] ext4: support large block size in mpage_map_and_submit_buffers()
` [PATCH v3 19/24] ext4: support large block size in mpage_prepare_extent_to_map()
` [PATCH v3 20/24] ext4: support large block size in __ext4_block_zero_page_range()
` [PATCH v3 21/24] ext4: make data=journal support large block size
` [PATCH v3 22/24] ext4: support verifying data from large folios with fs-verity
` [PATCH v3 23/24] ext4: add checks for large folio incompatibilities when BS > PS
` [PATCH v3 24/24] ext4: enable block size larger than page size

[RFC PATCH 0/8] xfs: single block atomic writes for buffered IO
 2025-11-12 15:56 UTC  (11+ messages)
` [RFC PATCH 1/8] fs: Rename STATX{_ATTR}_WRITE_ATOMIC -> STATX{_ATTR}_WRITE_ATOMIC_DIO
` [RFC PATCH 2/8] mm: Add PG_atomic
` [RFC PATCH 3/8] fs: Add initial buffered atomic write support info to statx
` [RFC PATCH 4/8] iomap: buffered atomic write support
` [RFC PATCH 5/8] iomap: pin pages for RWF_ATOMIC buffered write
` [RFC PATCH 6/8] xfs: Report atomic write min and max for buf io as well
` [RFC PATCH 7/8] iomap: Add bs<ps buffered atomic writes support
` [RFC PATCH 8/8] xfs: Lift the bs == ps restriction for HW buffered atomic writes
` [syzbot ci] Re: xfs: single block atomic writes for buffered IO

[PATCH v2 00/24] ext4: enable block size larger than page size
 2025-11-12 15:29 UTC  (53+ messages)
` [PATCH v2 01/24] ext4: remove page offset calculation in ext4_block_zero_page_range()
` [PATCH v2 02/24] ext4: remove page offset calculation in ext4_block_truncate_page()
` [PATCH v2 03/24] ext4: remove PAGE_SIZE checks for rec_len conversion
` [PATCH v2 04/24] ext4: make ext4_punch_hole() support large block size
` [PATCH v2 05/24] ext4: enable DIOREAD_NOLOCK by default for BS > PS as well
` [PATCH v2 06/24] ext4: introduce s_min_folio_order for future BS > PS support
` [PATCH v2 07/24] ext4: support large block size in ext4_calculate_overhead()
` [PATCH v2 08/24] ext4: support large block size in ext4_readdir()
` [PATCH v2 09/24] ext4: add EXT4_LBLK_TO_B macro for logical block to bytes conversion
` [PATCH v2 10/24] ext4: add EXT4_LBLK_TO_PG and EXT4_PG_TO_LBLK for block/page conversion
` [PATCH v2 11/24] ext4: support large block size in ext4_mb_load_buddy_gfp()
` [PATCH v2 12/24] ext4: support large block size in ext4_mb_get_buddy_page_lock()
` [PATCH v2 13/24] ext4: support large block size in ext4_mb_init_cache()
` [PATCH v2 14/24] ext4: prepare buddy cache inode for BS > PS with large folios
` [PATCH v2 15/24] ext4: rename 'page' references to 'folio' in multi-block allocator
` [PATCH v2 16/24] ext4: support large block size in ext4_mpage_readpages()
` [PATCH v2 17/24] ext4: support large block size in ext4_block_write_begin()
` [PATCH v2 18/24] ext4: support large block size in mpage_map_and_submit_buffers()
` [PATCH v2 19/24] ext4: support large block size in mpage_prepare_extent_to_map()
` [PATCH v2 20/24] ext4: support large block size in __ext4_block_zero_page_range()
` [PATCH v2 21/24] ext4: make data=journal support large block size
` [PATCH v2 22/24] ext4: support verifying data from large folios with fs-verity
` [PATCH v2 23/24] ext4: add checks for large folio incompatibilities when BS > PS
` [PATCH v2 24/24] ext4: enable block size larger than page size

[PATCH e2fsprogs] libext2fs: fix orphan file size > kernel limit with large blocksize
 2025-11-12 12:21 UTC 

[PATCH v1] jbd2: use J_ASSERT instead of BUG_ON for checkpoint mutex
 2025-11-12 10:29 UTC 

[PATCH v4 0/3] ext4: minor cleanup
 2025-11-12  8:45 UTC  (4+ messages)
` [PATCH v4 1/3] ext4: rename EXT4_GET_BLOCKS_PRE_IO
` [PATCH v4 2/3] ext4: cleanup for ext4_map_blocks
` [PATCH v4 3/3] ext4: correct the comments place for EXT4_EXT_MAY_ZEROOUT

[PATCH v3 1/3] ext4: remove useless code in ext4_map_create_blocks
 2025-11-12  8:30 UTC  (8+ messages)
` [PATCH v3 2/3] ext4: rename EXT4_GET_BLOCKS_PRE_IO
` [PATCH v3 3/3] ext4: cleanup for ext4_map_blocks

[PATCHSET v6] fstests: support ext4 fuse testing
 2025-11-12  6:35 UTC  (10+ messages)
` [PATCH 01/33] misc: adapt tests to handle the fuse ext[234] drivers
` [PATCH 04/33] common/rc: skip test if swapon doesn't work

[PATCHv2] ext2fs: fix fast symlink blocks check
 2025-11-11 20:09 UTC  (2+ messages)

[PATCH v2 0/4] mke2fs: small doc and features
 2025-11-11 20:09 UTC  (2+ messages)

[PATCH] doc: fix mke2fs.8 Extended Options formatting
 2025-11-11 20:09 UTC  (2+ messages)

[PATCH v3 0/3] cheaper MAY_EXEC handling for path lookup
 2025-11-11 11:47 UTC  (14+ messages)
` [PATCH v3 1/3] fs: speed up path lookup with cheaper handling of MAY_EXEC
` [PATCH v3 2/3] btrfs: utilize IOP_FASTPERM_MAY_EXEC
` [PATCH v3 3/3] fs: retire now stale MAY_WRITE predicts in inode_permission()

[PATCH 0/4] ext4: replace ext4_es_insert_extent() when caching on-disk extents
 2025-11-11 10:33 UTC  (5+ messages)
` [PATCH 1/4] ext4: make ext4_es_cache_extent() support overwrite existing extents

[PATCH v2] ext4: synchronize free block counter when detecting corruption
 2025-11-11  8:45 UTC  (3+ messages)

[PATCHSET v6 1/8] fuse: general bug fixes
 2025-11-11  0:33 UTC  (20+ messages)
` [PATCH 1/5] fuse: flush pending fuse events before aborting the connection
` [PATCH 4/5] fuse: update file mode when updating acls

[PATCHSET v6 3/8] fuse: cleanups ahead of adding fuse support
 2025-11-10 17:50 UTC  (5+ messages)
` [PATCH 2/2] fuse_trace: move the passthrough-specific code back to passthrough.c

[PATCH V2] jbd2: store more accurate errno in superblock when possible
 2025-11-10 17:33 UTC  (3+ messages)

[PATCH v3] vfs: remove the excl argument from the ->create() inode_operation
 2025-11-10 13:13 UTC 

[PATCH] ext4: validate xattrs to avoid OOB in ext4_find_inline_entry
 2025-11-10 11:55 UTC  (2+ messages)

[tytso-ext4:dev] BUILD SUCCESS 9dbf945320b11c5865d2f550f8e972566d04d181
 2025-11-08 17:14 UTC 

[syzbot] [ext4?] possible deadlock in ext4_xattr_get (2)
 2025-11-08 13:32 UTC 

[PATCH v2] vfs: remove the excl argument from the ->create() inode_operation
 2025-11-08  9:19 UTC  (7+ messages)
  ` LLM disclosure (was: [PATCH v2] vfs: remove the excl argument from the ->create() inode_operation)

[PATCH v2 1/2] ext4: fix string copying in parse_apply_sb_mount_options()
 2025-11-08  4:05 UTC  (4+ messages)
` [PATCH v2 2/2] ext4: check if mount_opts is NUL-terminated in ext4_ioctl_set_tune_sb()

[PATCH v2] jbd2: fix the inconsistency between checksum and data in memory for journal sb
 2025-11-08  3:55 UTC  (2+ messages)

[PATCH] ext4: clear i_state_flags when alloc inode
 2025-11-08  3:22 UTC  (2+ messages)

[PATCH] ext4: xattr: fix null pointer deref in ext4_raw_inode()
 2025-11-08  3:12 UTC  (2+ messages)

[PATCH v2 0/2] block: enable per-cpu bio cache by default
 2025-11-08  1:15 UTC  (5+ messages)
` [PATCH v2 1/2] block: use bio_alloc_bioset for passthru IO "
` [PATCH v2 2/2] block: enable per-cpu bio cache "

[PATCHSET 9/9] fuse4fs: fork a low level fuse server
 2025-11-08  0:25 UTC  (4+ messages)
` [PATCH 04/23] fuse4fs: namespace some helpers

[PATCHSET v6 2/8] iomap: cleanups ahead of adding fuse support
 2025-11-07 18:05 UTC  (7+ messages)
` [PATCH 1/1] iomap: allow NULL swap info bdev when activating swapfile

[PATCH v2 1/4] ext4: remove useless code in ext4_map_create_blocks
 2025-11-07 11:54 UTC  (4+ messages)
` [PATCH v2 4/4] ext4: order mode should not take effect for DIO

[Bug 220760] New: Observed data-race in _find_next_bit+0x42/0xf0
 2025-11-07  8:10 UTC 

[PATCH] vfs: remove the excl argument from the ->create() inode_operation
 2025-11-07  0:00 UTC  (5+ messages)


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