public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2026-01-05 01:48:44 to 2026-01-13 06:20:31 UTC [more...]

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

[PATCH v2] ext4: fix dirtyclusters double decrement on fs shutdown
 2026-01-13  1:44 UTC  (4+ messages)

[syzbot] [ext4?] KASAN: use-after-free Read in ext4_read_inline_data
 2026-01-13  1:31 UTC 

[PATCHSET v5] fs: generic file IO error reporting
 2026-01-13  1:26 UTC  (9+ 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 3/6] iomap: report file I/O errors to the VFS
` [PATCH 4/6] xfs: report fs metadata errors via fsnotify
` [PATCH 5/6] xfs: translate fsdax media errors into file "data lost" errors when convenient
` [PATCH 6/6] ext4: convert to new fserror helpers

[PATCH 00/44] Change a lot of min_t() that might mask high bits
 2026-01-12 21:51 UTC  (3+ messages)
` [PATCH 30/44] fs: use min() or umin() instead of min_t()

[PATCHSET V4 1/2] fs: generic file IO error reporting
 2026-01-12 18:50 UTC  (15+ messages)
` [PATCH 2/6] fs: report filesystem and file I/O errors to fsnotify
` [PATCH 6/6] ext4: convert to new fserror helpers
` [PATCH 7/6] fs: improve comment in fserror_alloc_event

[PATCH v3 00/16] Exposing case folding behavior
 2026-01-12 17:46 UTC  (17+ messages)
` [PATCH v3 01/16] fs: Add case sensitivity info to file_kattr
` [PATCH v3 02/16] fat: Implement fileattr_get for case sensitivity
` [PATCH v3 03/16] exfat: "
` [PATCH v3 04/16] ntfs3: "
` [PATCH v3 05/16] hfs: "
` [PATCH v3 06/16] hfsplus: Report case sensitivity in fileattr_get
` [PATCH v3 07/16] ext4: "
` [PATCH v3 08/16] xfs: "
` [PATCH v3 09/16] cifs: Implement fileattr_get for case sensitivity
` [PATCH v3 10/16] nfs: "
` [PATCH v3 11/16] f2fs: Add case sensitivity reporting to fileattr_get
` [PATCH v3 12/16] vboxsf: Implement fileattr_get for case sensitivity
` [PATCH v3 13/16] isofs: "
` [PATCH v3 14/16] nfsd: Report export case-folding via NFSv3 PATHCONF
` [PATCH v3 15/16] nfsd: Implement NFSv4 FATTR4_CASE_INSENSITIVE and FATTR4_CASE_PRESERVING
` [PATCH v3 16/16] ksmbd: Report filesystem case sensitivity via FS_ATTRIBUTE_INFORMATION

[PATCH 00/24] vfs: require filesystems to explicitly opt-in to lease support
 2026-01-12 14:50 UTC  (55+ messages)
` [PATCH 01/24] fs: add setlease to generic_ro_fops and read-only filesystem directory operations
` [PATCH 02/24] affs: add setlease file operation
` [PATCH 03/24] btrfs: "
` [PATCH 04/24] erofs: "
` [PATCH 05/24] ext2: "
` [PATCH 06/24] ext4: "
` [PATCH 07/24] exfat: "
` [PATCH 08/24] f2fs: "
` [PATCH 09/24] fat: "
` [PATCH 10/24] gfs2: add a "
` [PATCH 11/24] jffs2: add "
` [PATCH 12/24] jfs: "
` [PATCH 13/24] nilfs2: "
` [PATCH 14/24] ntfs3: "
` [PATCH 15/24] ocfs2: "
` [PATCH 16/24] orangefs: "
` [PATCH 17/24] overlayfs: "
` [PATCH 18/24] squashfs: "
` [PATCH 19/24] tmpfs: "
` [PATCH 20/24] udf: "
` [PATCH 21/24] ufs: "
` [PATCH 22/24] xfs: "
` [PATCH 23/24] filelock: default to returning -EINVAL when ->setlease operation is NULL
` [PATCH 24/24] fs: remove simple_nosetlease()

[PATCH 0/7] ext4 extent split/convert refactor and kunit tests
 2026-01-12  9:41 UTC  (22+ messages)
` [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 V5 0/8] mm/slab: reduce slab accounting memory overhead by allocating slabobj_ext metadata within unsed slab space
 2026-01-12  6:28 UTC  (36+ 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 0/2 v2] ext4: use mb_optimize_scan regardless of inode format
 2026-01-10  1:38 UTC  (7+ messages)
` [PATCH 1/2] ext4: always allocate blocks only from groups inode can use
` [PATCH 2/2] ext4: use optimized mballoc scanning regardless of inode format

[RFC PATCH] ext4: fix e4b bitmap inconsistency reports
 2026-01-09 10:33 UTC  (4+ messages)

[PATCH] ext4: Use optimized mballoc scanning regardless of inode format
 2026-01-09 10:03 UTC  (3+ messages)

[PATCH] ext4: fast commit: make s_fc_lock reclaim-safe
 2026-01-09  2:33 UTC  (4+ messages)

[PATCH 6.12 242/262] ext4: fix checks for orphan inodes
 2026-01-08 14:11 UTC  (4+ messages)

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

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

[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

[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)

[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  (6+ messages)
` [PATCH 1/4] fs: send uevents for filesystem mount events

[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  (4+ messages)
` [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 5/7] ext4: remove unused unwritten parameter in ext4_dio_write_iter()


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