public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-12-18 07:30:46 to 2026-01-08 07:13:05 UTC [more...]

[PATCH V5 0/8] mm/slab: reduce slab accounting memory overhead by allocating slabobj_ext metadata within unsed slab space
 2026-01-08  7:12 UTC  (20+ messages)
` [PATCH V5 1/8] mm/slab: use unsigned long for orig_size to ensure proper metadata align
` [PATCH V5 2/8] mm/slab: allow specifying free pointer offset when using constructor
` [PATCH V5 3/8] ext4: specify the free pointer offset for ext4_inode_cache
` [PATCH V5 4/8] mm/slab: abstract slabobj_ext access via new slab_obj_ext() helper
` [PATCH V5 5/8] mm/slab: use stride to access slabobj_ext
` [PATCH V5 6/8] mm/memcontrol,alloc_tag: handle slabobj_ext access under KASAN poison
` [PATCH V5 7/8] mm/slab: save memory by allocating slabobj_ext array from leftover
` [PATCH V5 8/8] mm/slab: place slabobj_ext metadata in unused space within s->size

[PATCH] [v2] ext4: fix ext4_tune_sb_params padding
 2026-01-08  4:12 UTC  (3+ messages)

[PATCH] ext4: fast commit: make s_fc_lock reclaim-safe
 2026-01-08  3:48 UTC  (3+ messages)

[RFC v3 0/2] ext4: fast commit: fix lockdep issues
 2026-01-08  3:00 UTC  (9+ messages)
` [RFC v3 1/2] ext4: fast_commit: assert i_data_sem only before sleep
` [RFC v3 2/2] ext4: fast commit: fix s_fc_lock vs i_data_sem inversion

[PATCH] ext4: publish jinode after initialization
 2026-01-07 14:49 UTC  (3+ messages)

[PATCH v18 00/42] DEPT(DEPendency Tracker)
 2026-01-07 12:19 UTC  (3+ messages)
` [PATCH v18 34/42] dept: add module support for struct dept_event_site and dept_event_site_dep

[PATCHSET V4 1/2] fs: generic file IO error reporting
 2026-01-07  9:19 UTC  (22+ messages)
` [PATCH 1/6] uapi: promote EFSCORRUPTED and EUCLEAN to errno.h
` [PATCH 2/6] fs: report filesystem and file I/O errors to fsnotify
  ` [PATCH V4.1 "
` [PATCH 3/6] iomap: report file I/O errors to the VFS
` [PATCH 6/6] ext4: convert to new fserror helpers
` [PATCH 7/6] fs: improve comment in fserror_alloc_event

[PATCH 0/7] ext4 extent split/convert refactor and kunit tests
 2026-01-07  7:19 UTC  (18+ messages)
` [PATCH 1/7] ext4: kunit tests for extent splitting and conversion
` [PATCH 2/7] ext4: kunit tests for higher level extent manipulation functions
` [PATCH 3/7] ext4: propagate flags to convert_initialized_extent()
` [PATCH 4/7] ext4: propagate flags to ext4_convert_unwritten_extents_endio()
` [PATCH 5/7] ext4: Refactor zeroout path and handle all cases
` [PATCH 6/7] ext4: Refactor split and convert extents
` [PATCH 7/7] ext4: Allow zeroout when doing written to unwritten split

[PATCH v2] generic: use _qmount_option and _qmount
 2026-01-06 16:36 UTC  (3+ messages)

[PATCH] ext4: fast commit: avoid fs_reclaim inversion in perform_commit
 2026-01-06 12:14 UTC  (3+ messages)

[RFC PATCH] ext4: fix e4b bitmap inconsistency reports
 2026-01-06 10:56 UTC  (2+ messages)

[PATCH v1] ext4: Remove redundant NULL check after __GFP_NOFAIL
 2026-01-06  6:20 UTC 

[PATCHSET V4 2/2] fs: send uevents on mount and unmount
 2026-01-05 17:26 UTC  (9+ messages)
` [PATCH 1/4] fs: send uevents for filesystem mount events
  ` [PATCH V4.1 "

[PATCH] ext4: fix dirtyclusters double decrement on fs shutdown
 2026-01-05 14:04 UTC  (7+ messages)

[PATCH v2] ext4: check folio uptodate state in ext4_page_mkwrite()
 2026-01-05  2:08 UTC  (13+ messages)

[PATCH -next v3 0/7] ext4: defer unwritten splitting until I/O completion
 2026-01-05  1:45 UTC  (8+ messages)
` [PATCH -next v3 1/7] ext4: use reserved metadata blocks when splitting extent on endio
` [PATCH -next v3 2/7] ext4: don't split extent before submitting I/O
` [PATCH -next v3 3/7] ext4: avoid starting handle when dio writing an unwritten extent
` [PATCH -next v3 4/7] ext4: remove useless ext4_iomap_overwrite_ops
` [PATCH -next v3 5/7] ext4: remove unused unwritten parameter in ext4_dio_write_iter()
` [PATCH -next v3 6/7] ext4: simplify the mapping query logic in ext4_iomap_begin()
` [PATCH -next v3 7/7] ext4: remove EXT4_GET_BLOCKS_IO_CREATE_EXT

[PATCH -next v2 0/7] ext4: defer unwritten splitting until I/O completion
 2026-01-05  1:18 UTC  (25+ messages)
` [PATCH -next v2 1/7] ext4: use reserved metadata blocks when splitting extent on endio
` [PATCH -next v2 2/7] ext4: don't split extent before submitting I/O
` [PATCH -next v2 3/7] ext4: avoid starting handle when dio writing an unwritten extent
` [PATCH -next v2 4/7] ext4: remove useless ext4_iomap_overwrite_ops
` [PATCH -next v2 5/7] ext4: remove unused unwritten parameter in ext4_dio_write_iter()
` [PATCH -next v2 6/7] ext4: simply the mapping query logic in ext4_iomap_begin()
` [PATCH -next v2 7/7] ext4: remove EXT4_GET_BLOCKS_IO_CREATE_EXT

[syzbot] [ext4?] INFO: task hung in ext4_map_blocks (5)
 2026-01-03  0:10 UTC 

[PATCH v2] ext4: don't order data when zeroing unwritten or delayed block
 2025-12-31  6:39 UTC  (2+ messages)

[syzbot] [ext4?] possible deadlock in wait_transaction_locked (3)
 2025-12-30 11:48 UTC 

[syzbot] Monthly ext4 report (Dec 2025)
 2025-12-30  9:52 UTC 

[PATCH V4 0/8] mm/slab: reduce slab accounting memory overhead by allocating slabobj_ext metadata within unsed slab space
 2025-12-30  8:54 UTC  (27+ messages)
` [PATCH V4 1/8] mm/slab: use unsigned long for orig_size to ensure proper metadata align
` [PATCH V4 2/8] mm/slab: allow specifying free pointer offset when using constructor
` [PATCH V4 3/8] ext4: specify the free pointer offset for ext4_inode_cache
` [PATCH V4 4/8] mm/slab: abstract slabobj_ext access via new slab_obj_ext() helper
` [PATCH V4 5/8] mm/slab: use stride to access slabobj_ext
` [PATCH V4 6/8] mm/memcontrol,alloc_tag: handle slabobj_ext access under KASAN poison
` [PATCH V4 7/8] mm/slab: save memory by allocating slabobj_ext array from leftover
              ` [PATCH] slub: clarify object field layout comments
` [PATCH V4 8/8] mm/slab: place slabobj_ext metadata in unused space within s->size

[PATCH] fs/ext4: Initialize new folios before use
 2025-12-28 20:09 UTC  (4+ messages)

[syzbot] [ext4?] kernel BUG in ext4_mb_normalize_request (2)
 2025-12-28  1:12 UTC 

[PATCH] ext4: xattr: fix wrong search.here in clone_block
 2025-12-26  0:53 UTC  (5+ messages)

question about the casefold feature
 2025-12-25 22:06 UTC 

[PATCH] ext4: Fix memory leak in ext4_ext_shift_extents()
 2025-12-25 11:09 UTC  (3+ messages)

[syzbot] [ext4?] [ocfs2?] WARNING in __jbd2_log_wait_for_space
 2025-12-24  0:32 UTC  (2+ messages)
` [syzbot] [ocfs2?] [ext4?] "

ext4: a tool to modify the inode count
 2025-12-23  4:45 UTC  (4+ messages)

[RFC PATCH v2 0/2] ext4: fast commit: fix lockdep issues
 2025-12-22 15:19 UTC  (3+ messages)
` [RFC PATCH v2 1/2] ext4: fast_commit: assert i_data_sem only before sleep
` [RFC PATCH v2 2/2] ext4: fast commit: fix s_fc_lock vs i_data_sem inversion

[PATCH] ext4: don't order data when zeroing unwritten or delayed block
 2025-12-22 11:22 UTC  (3+ messages)

[PATCH -next 0/7] ext4: defer unwritten splitting until I/O completion
 2025-12-22 11:18 UTC  (16+ messages)
` [PATCH -next 2/7] ext4: don't split extent before submitting I/O
` [PATCH -next 3/7] ext4: avoid starting handle when dio writing an unwritten extent
` [PATCH -next 4/7] ext4: remove useless ext4_iomap_overwrite_ops
` [PATCH -next 5/7] ext4: remove unused unwritten parameter in ext4_dio_write_iter()
` [PATCH -next 6/7] ext4: simply the mapping query logic in ext4_iomap_begin()
` [PATCH -next 7/7] ext4: remove EXT4_GET_BLOCKS_IO_CREATE_EXT

[RFC PATCH V3 0/7] mm/slab: reduce slab accounting memory overhead by allocating slabobj_ext metadata within unused slab space
 2025-12-22 11:14 UTC  (4+ messages)
` [RFC PATCH V3 7/7] mm/slab: place slabobj_ext metadata in unused space within s->size

[PATCH] ext4: fast_commit: assert i_data_sem only before sleep
 2025-12-22  3:26 UTC 

[syzbot] [ext4?] possible deadlock in ext4_xattr_set_handle (7)
 2025-12-21 18:39 UTC  (2+ messages)

[syzbot] [ext4?] possible deadlock in ext4_evict_inode (5)
 2025-12-21 10:00 UTC  (2+ messages)

[PATCH] doc : fix a broken link in ext2.rst
 2025-12-19 14:01 UTC  (2+ messages)

[PATCH] ext4: fix ext4_tune_sb_params padding
 2025-12-19  8:43 UTC  (5+ messages)

[PATCH] ext4,fiemap: Add inode offset for xattr fiemap
 2025-12-19  0:50 UTC  (5+ messages)

stop overriding SCRATCH_{,LOG,RT}DEV v3
 2025-12-18 21:27 UTC  (12+ messages)
` [PATCH 01/13] dmflakey: override SCRATCH_DEV in _init_flakey
` [PATCH 05/13] generic/590: split XFS RT specific bits out
` [PATCH 06/13] xfs/157: don't override SCRATCH_{,LOG,RT}DEV
` [PATCH 07/13] xfs/185: don't use SCRATCH_{,RT}DEV helpers
` [PATCH 08/13] xfs/424: don't use SCRATCH_DEV helpers
` [PATCH 09/13] xfs/521: require a real SCRATCH_RTDEV
` [PATCH 10/13] xfs/521: call _require_scratch_size
` [PATCH 11/13] xfs/528: require a real SCRATCH_RTDEV
` [PATCH 12/13] xfs/530: "
` [PATCH 13/13] xfs/650: "


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