linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2025-10-29 08:45:44 to 2025-11-06 13:02:39 UTC [more...]

[PATCH 0/4] ext4: replace ext4_es_insert_extent() when caching on-disk extents
 2025-11-06 13:02 UTC  (7+ messages)
` [PATCH 1/4] ext4: make ext4_es_cache_extent() support overwrite existing extents
` [PATCH 2/4] ext4: check for conflicts when caching extents
` [PATCH 3/4] ext4: adjust the debug info in ext4_es_cache_extent()
` [PATCH 4/4] ext4: replace ext4_es_insert_extent() when caching on-disk extents

[PATCH] vfs: remove the excl argument from the ->create() inode_operation
 2025-11-06 12:07 UTC  (3+ messages)

[PATCH RFC 0/8] fs: introduce super write guard
 2025-11-06 10:04 UTC  (27+ messages)
` [PATCH RFC 1/8] fs: add super_write_guard
` [PATCH RFC 2/8] btrfs: use super write guard in btrfs_reclaim_bgs_work()
` [PATCH RFC 3/8] btrfs: use super write guard btrfs_run_defrag_inode()
` [PATCH RFC 4/8] btrfs: use super write guard in sb_start_write()
` [PATCH RFC 5/8] ext4: use super write guard in write_mmp_block()
` [PATCH RFC 6/8] btrfs: use super write guard in relocating_repair_kthread()
` [PATCH RFC 7/8] open: use super write guard in do_ftruncate()
` [PATCH RFC 8/8] xfs: use super write guard in xfs_file_ioctl()

[PATCH v2 0/2] ext4: fixes for mb_check_buddy integrity checks
 2025-11-06  9:52 UTC  (4+ messages)
` [PATCH v2 1/2] ext4: fix incorrect group number assertion in mb_check_buddy for exhausted preallocations
` [PATCH v2 2/2] ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation

[PATCHBOMB v6] fuse: containerize ext4 for safer operation
 2025-11-06  9:23 UTC  (24+ messages)
` [PATCHSET v6] fstests: support ext4 fuse testing
  ` [PATCH 01/33] misc: adapt tests to handle the fuse ext[234] drivers
  ` [PATCH 02/33] generic/740: don't run this test for fuse ext* implementations
  ` [PATCH 22/33] generic/631: don't run test if we can't mount overlayfs
  ` [PATCH 23/33] generic/{409,410,411,589}: check for stacking mount support
  ` [PATCH 27/33] generic/050: skip test because fuse2fs doesn't have stable output

[SECURITY] ext4: KASAN use-after-free and Oops in ext4_xattr_set_entry with crafted ext4 image
 2025-11-06  8:50 UTC  (3+ messages)
    `  "

[PATCH 0/2] ext4: fixes for mb_check_buddy integrity checks
 2025-11-06  2:59 UTC  (6+ messages)
` [PATCH 1/2] ext4: fix incorrect group number assertion in mb_check_buddy for exhausted preallocations
` [PATCH 2/2] ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation

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

[PATCHSET v6 1/8] fuse: general bug fixes
 2025-11-06  0:19 UTC  (14+ messages)
` [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

[syzbot] [ext4?] possible deadlock in ext4_destroy_inline_data (2)
 2025-11-05 22:08 UTC 

[PATCH] ext4: xattr: fix null pointer deref in ext4_raw_inode()
 2025-11-05 17:18 UTC  (2+ messages)

Estimates and Takeoffs
 2025-11-05 16:31 UTC 

[WIP PATCH] fs: speed up path lookup with cheaper MAY_EXEC checks
 2025-11-05 13:55 UTC 

generic_permission() optimization
 2025-11-05 13:37 UTC  (9+ messages)

[syzbot] [ext4?] possible deadlock in ext4_evict_inode (5)
 2025-11-05 11:40 UTC 

[PATCH v2 1/4] ext4: remove useless code in ext4_map_create_blocks
 2025-11-05 10:20 UTC  (11+ messages)
` [PATCH v2 2/4] ext4: rename EXT4_GET_BLOCKS_PRE_IO
` [PATCH v2 3/4] ext4: cleanup for ext4_map_blocks
` [PATCH v2 4/4] ext4: order mode should not take effect for DIO

[PATCH] ext4: clear i_state_flags when alloc inode
 2025-11-05  1:25 UTC  (3+ messages)

[PATCHv4 0/8]
 2025-11-04 11:35 UTC  (14+ messages)
` [PATCHv4 5/8] iomap: simplify direct io validity check

[PATCH RFC] ext4: add i_data_sem protection in ext4_destroy_inline_data_nolock()
 2025-11-04  9:33 UTC 

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

[PATCH 1/4] ext4: remove useless code in ext4_map_create_blocks
 2025-11-03 12:24 UTC  (9+ messages)
` [PATCH 2/4] ext4: rename EXT4_GET_BLOCKS_PRE_IO
` [PATCH 3/4] ext4: cleanup for ext4_map_blocks
` [PATCH 4/4] ext4: order mode should not take effect for DIO

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

ext4 issue on linux-next(next-20251030)
 2025-11-03  8:46 UTC  (5+ messages)

[PATCH V2] jbd2: store more accurate errno in superblock when possible
 2025-11-03  0:56 UTC  (2+ messages)

[PATCH v7 00/11] Add more tests for multi fs block atomic writes
 2025-11-01  9:00 UTC  (4+ messages)
` [PATCH v7 05/12] generic: Add atomic write test using fio crc check verifier

[PATCH 1/2] ext4: fix up copying of mount_opts in superblock tuning ioctls
 2025-10-31 15:44 UTC  (6+ messages)

[PATCH] jbd2: assign different lock_class_key for different filesystem
 2025-10-31 12:42 UTC  (12+ messages)
              ` [PATCH v2] jbd2: allocate lock_class_key for jbd2_handle dynamically

[PATCH] jbd2: fix the inconsistency between checksum and data in memory for journal sb
 2025-10-31  1:47 UTC  (7+ messages)

[Bug 203943] New: ext4 corruption after RAID6 degraded; e2fsck skips block checks and fails
 2025-10-31  1:33 UTC  (2+ messages)
` [Bug 203943] "

[syzbot] [ext4?] WARNING in ext4_xattr_inode_update_ref (2)
 2025-10-30 22:34 UTC 

filemap_* writeback interface cleanups v2
 2025-10-30 18:21 UTC  (4+ messages)
` [PATCH 05/10] btrfs: push struct writeback_control into start_delalloc_inodes

[PATCH] jbd2: avoid bug_on in jbd2_journal_get_create_access() when file system corrupted
 2025-10-30 18:20 UTC  (2+ messages)

[RFC PATCH V3 0/7] mm/slab: reduce slab accounting memory overhead by allocating slabobj_ext metadata within unused slab space
 2025-10-30 16:39 UTC  (28+ messages)
` [RFC PATCH V3 1/7] mm/slab: allow specifying freepointer offset when using constructor
` [RFC PATCH V3 3/7] mm/slab: abstract slabobj_ext access via new slab_obj_ext() helper
` [RFC PATCH V3 5/7] mm/memcontrol,alloc_tag: handle slabobj_ext access under KASAN poison
` [RFC PATCH V3 6/7] mm/slab: save memory by allocating slabobj_ext array from leftover
` [RFC PATCH V3 7/7] mm/slab: place slabobj_ext metadata in unused space within s->size

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

[Bug 220535] New: ext4 __jbd2_log_wait_for_space soft lockup and CPU stuck for 134s
 2025-10-30 12:48 UTC  (2+ messages)
` [Bug 220535] "

[PATCH v2] ext4: refresh inline data size before write operations
 2025-10-30  0:12 UTC  (2+ messages)

[syzbot] Monthly ext4 report (Oct 2025)
 2025-10-29  9:02 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).