linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-01-12 13:40:05 to 2024-01-28 13:10:36 UTC [more...]

[PATCH v11 00/26] DEPT(Dependency Tracker)
 2024-01-28 13:10 UTC  (29+ messages)
` [PATCH v11 01/26] llist: Move llist_{head,node} definition to types.h
` [PATCH v11 02/26] dept: Implement Dept(Dependency Tracker)
` [PATCH v11 03/26] dept: Add single event dependency tracker APIs
` [PATCH v11 04/26] dept: Add lock "
` [PATCH v11 05/26] dept: Tie to Lockdep and IRQ tracing
` [PATCH v11 06/26] dept: Add proc knobs to show stats and dependency graph
` [PATCH v11 07/26] dept: Apply sdt_might_sleep_{start,end}() to wait_for_completion()/complete()
` [PATCH v11 08/26] dept: Apply sdt_might_sleep_{start,end}() to swait
` [PATCH v11 09/26] dept: Apply sdt_might_sleep_{start,end}() to waitqueue wait
` [PATCH v11 10/26] dept: Apply sdt_might_sleep_{start,end}() to hashed-waitqueue wait
` [PATCH v11 11/26] dept: Distinguish each syscall context from another
` [PATCH v11 12/26] dept: Distinguish each work "
` [PATCH v11 13/26] dept: Add a mechanism to refill the internal memory pools on running out
` [PATCH v11 14/26] locking/lockdep, cpu/hotplus: Use a weaker annotation in AP thread
` [PATCH v11 15/26] dept: Apply sdt_might_sleep_{start,end}() to dma fence wait
` [PATCH v11 16/26] dept: Track timeout waits separately with a new Kconfig
` [PATCH v11 17/26] dept: Apply timeout consideration to wait_for_completion()/complete()
` [PATCH v11 18/26] dept: Apply timeout consideration to swait
` [PATCH v11 19/26] dept: Apply timeout consideration to waitqueue wait
` [PATCH v11 20/26] dept: Apply timeout consideration to hashed-waitqueue wait
` [PATCH v11 21/26] dept: Apply timeout consideration to dma fence wait
` [PATCH v11 22/26] dept: Record the latest one out of consecutive waits of the same class
` [PATCH v11 23/26] dept: Make Dept able to work with an external wgen
` [PATCH v11 24/26] dept: Track PG_locked with dept
` [PATCH v11 25/26] dept: Print event context requestor's stacktrace on report
` [PATCH v11 26/26] locking/lockdep, fs/jbd2: Use a weaker annotation in journal handling

[inline_data] ext4: Stale flags before sync when convert to non-inline
 2024-01-28 12:06 UTC  (4+ messages)

[syzbot] [ext4?] KASAN: use-after-free Read in ext4_find_extent (3)
 2024-01-27 21:58 UTC  (3+ messages)

[PATCH 1/7] ext4: avoid overflow when setting values via sysfs
 2024-01-27 10:44 UTC  (2+ messages)

[PATCH v3 00/10] Set casefold/fscrypt dentry operations through sb->s_d_op
 2024-01-27  7:17 UTC  (20+ messages)
` [PATCH v3 01/10] ovl: Reject mounting case-insensitive filesystems
` [PATCH v3 02/10] fscrypt: Share code between functions that prepare lookup
` [PATCH v3 03/10] fscrypt: Drop d_revalidate for valid dentries during lookup
` [PATCH v3 04/10] fscrypt: Drop d_revalidate once the key is added
` [PATCH v3 05/10] libfs: Merge encrypted_ci_dentry_ops and ci_dentry_ops
` [PATCH v3 06/10] libfs: Add helper to choose dentry operations at mount
` [PATCH v3 07/10] ext4: Configure dentry operations at dentry-creation time
` [PATCH v3 08/10] f2fs: "
` [PATCH v3 09/10] ubifs: "
` [PATCH v3 10/10] libfs: Drop generic_set_encrypted_ci_d_ops

[Bug 218380] 4.19.304/305 (and 4.14.336) no message 'unable to mount rootfs' anymore
 2024-01-27  6:19 UTC 

[PATCH 0/7] ext4: avoid sysfs variables overflow causing BUG_ON/SOOB
 2024-01-27  2:12 UTC  (15+ messages)
` [PATCH 1/7] ext4: avoid overflow when setting values via sysfs
` [PATCH 2/7] ext4: refactor out ext4_generic_attr_store()
` [PATCH 3/7] ext4: refactor out ext4_generic_attr_show()
` [PATCH 4/7] ext4: add positive int attr pointer to avoid sysfs variables overflow
` [PATCH 5/7] ext4: fix slab-out-of-bounds in ext4_mb_find_good_group_avg_frag_lists()
` [PATCH 6/7] ext4: set type of ac_groups_linear_remaining to __u32 to avoid overflow
` [PATCH 7/7] ext4: set the type of max_zeroout to unsigned int "

[RFC PATCH v3 00/26] ext4: use iomap for regular file's buffered IO path and enable large foilo
 2024-01-27  1:58 UTC  (27+ messages)
` [PATCH v3 01/26] ext4: refactor ext4_da_map_blocks()
` [PATCH v3 02/26] ext4: convert to exclusive lock while inserting delalloc extents
` [PATCH v3 03/26] ext4: correct the hole length returned by ext4_map_blocks()
` [PATCH v3 04/26] ext4: add a hole extent entry in cache after punch
` [PATCH v3 05/26] ext4: make ext4_map_blocks() distinguish delalloc only extent
` [PATCH v3 06/26] ext4: make ext4_set_iomap() recognize IOMAP_DELALLOC map type
` [RFC PATCH v3 07/26] iomap: don't increase i_size if it's not a write operation
` [RFC PATCH v3 08/26] iomap: add pos and dirty_len into trace_iomap_writepage_map
` [RFC PATCH v3 09/26] ext4: allow inserting delalloc extents with multi-blocks
` [RFC PATCH v3 10/26] ext4: correct delalloc extent length
` [RFC PATCH v3 11/26] ext4: also mark extent as delalloc if it's been unwritten
` [RFC PATCH v3 12/26] ext4: factor out bh handles to ext4_da_get_block_prep()
` [RFC PATCH v3 13/26] ext4: use reserved metadata blocks when splitting extent in endio
` [RFC PATCH v3 14/26] ext4: factor out ext4_map_{create|query}_blocks()
` [RFC PATCH v3 15/26] ext4: introduce seq counter for extent entry
` [RFC PATCH v3 16/26] ext4: add a new iomap aops for regular file's buffered IO path
` [RFC PATCH v3 17/26] ext4: implement buffered read iomap path
` [RFC PATCH v3 18/26] ext4: implement buffered write "
` [RFC PATCH v3 19/26] ext4: implement writeback "
` [RFC PATCH v3 20/26] ext4: implement mmap "
` [RFC PATCH v3 21/26] ext4: implement zero_range "
` [RFC PATCH v3 22/26] ext4: writeback partial blocks before zero range
` [RFC PATCH v3 23/26] ext4: fall back to buffer_head path for defrag
` [RFC PATCH v3 24/26] ext4: partially enable iomap for regular file's buffered IO path
` [RFC PATCH v3 25/26] filemap: support disable large folios on active inode
` [RFC PATCH v3 26/26] ext4: enable large folio for regular file with iomap buffered IO path

[PATCH v4 00/12] Set casefold/fscrypt dentry operations through sb->s_d_op
 2024-01-27  0:10 UTC  (13+ messages)
` [PATCH v4 01/12] ovl: Reject mounting over case-insensitive directories
` [PATCH v4 02/12] fscrypt: Factor out a helper to configure the lookup dentry
` [PATCH v4 03/12] fscrypt: Call fscrypt_prepare_lookup_dentry on unencrypted dentries
` [PATCH v4 04/12] fscrypt: Drop d_revalidate for valid dentries during lookup
` [PATCH v4 05/12] fscrypt: Drop d_revalidate once the key is added
` [PATCH v4 06/12] fscrypt: Ignore non-fscrypt volumes during d_move
` [PATCH v4 07/12] libfs: Merge encrypted_ci_dentry_ops and ci_dentry_ops
` [PATCH v4 08/12] libfs: Add helper to choose dentry operations at mount-time
` [PATCH v4 09/12] ext4: Configure dentry operations at dentry-creation time
` [PATCH v4 10/12] f2fs: "
` [PATCH v4 11/12] ubifs: "
` [PATCH v4 12/12] libfs: Drop generic_set_encrypted_ci_d_ops

[syzbot] [ext4?] kernel BUG in ext4_write_inline_data_end
 2024-01-26 11:05 UTC  (3+ messages)

[syzbot] [ext4?] general protection fault in jbd2__journal_start
 2024-01-26  9:05 UTC 

[syzbot] [ext4?] kernel BUG in ext4_write_inline_data
 2024-01-26  3:41 UTC  (2+ messages)
` [syzbot] "

[PATCH] shrink extent tree
 2024-01-25 18:31 UTC 

[PATCH] merge extent blocks when possible
 2024-01-25 17:01 UTC 

[PATCH 5.10/5.15 v2 0/1 RFC] mm/truncate: fix WARNING in ext4_set_page_dirty()
 2024-01-25 14:06 UTC 

[syzbot] [ext4?] kernel BUG in ext4_split_extent_at (2)
 2024-01-25 12:55 UTC  (3+ messages)

[PATCH] generic/459: don't run on non-journaled ext4 file systems
 2024-01-24 19:53 UTC 

[PATCH AUTOSEL 6.1 08/14] ext4: enable dioread_nolock as default for bs < ps case
 2024-01-24  5:56 UTC  (7+ messages)
` [PATCH AUTOSEL 6.1 11/14] ext4: fix inconsistent between segment fstrim and full fstrim
` [PATCH AUTOSEL 6.1 12/14] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 6.1 13/14] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 6.1 14/14] ext4: avoid online resizing failures due to oversized flex bg

[PATCH 0/9] Remove GFP_NOFS uses from ext2, udf, and quota code
 2024-01-23 15:25 UTC  (10+ messages)
` [PATCH 1/9] udf: Remove GFP_NOFS from dir iteration code
` [PATCH 2/9] udf: Avoid GFP_NOFS allocation in udf_symlink()
` [PATCH 3/9] udf: Avoid GFP_NOFS allocation in udf_load_pvoldesc()
` [PATCH 4/9] udf: Remove GFP_NOFS allocation in udf_expand_file_adinicb()
` [PATCH 5/9] ext2: Drop GFP_NOFS allocation from ext2_init_block_alloc_info()
` [PATCH 6/9] ext2: Drop GFP_NOFS use in ext2_get_blocks()
` [PATCH 7/9] ext2: Remove GFP_NOFS use in ext2_xattr_cache_insert()
` [PATCH 8/9] quota: Set nofs allocation context when acquiring dqio_sem
` [PATCH 9/9] quota: Drop GFP_NOFS instances under dquot->dq_lock and dqio_sem

[PATCH 18/82] ext4: Refactor intentional wrap-around calculation
 2024-01-23  0:27 UTC  (2+ messages)
` [PATCH 51/82] ext4: Refactor intentional wrap-around test

[PATCH] ext4: correct best extent lstart adjustment logic
 2024-01-22 12:33 UTC 

[PATCH] ext4: forbid commit inconsistent quota data when errors=remount-ro
 2024-01-22 11:50 UTC  (2+ messages)

[PATCH] ext4: add a hint for block bitmap corrupt state in mb_groups
 2024-01-19 14:33 UTC  (2+ messages)

[syzbot] kernel BUG in ext4_do_writepages
 2024-01-19  0:08 UTC  (2+ messages)

[PATCH v3 04/10] fscrypt: Drop d_revalidate once the key is added
 2024-01-18 18:58 UTC  (3+ messages)

[PATCH] ext4: fix the comment of ext4_map_blocks()/ext4_ext_map_blocks()
 2024-01-18  6:25 UTC 

[PATCH v2 1/2] ext4: remove unused buddy_loaded in ext4_mb_seq_groups_show
 2024-01-18  4:25 UTC  (2+ messages)
` [PATCH v2 2/2] ext4: improve error msg for ext4_mb_seq_groups_show

[PATCH 1/2] ext4: remove unused buddy_loaded in ext4_mb_seq_groups_show
 2024-01-18  4:22 UTC  (5+ messages)
` [PATCH 2/2] ext4: distinguish different error "

Subject: [PATCH next] ext4: super: Use clamp() instead of clamp_val() to bound timestamps
 2024-01-17 22:47 UTC 

e2scrub finds corruption immediately after mounting
 2024-01-17 22:20 UTC  (13+ messages)

[e2fsprogs] resize2fs 1.47.0 creates unclean orphan file
 2024-01-17 13:34 UTC 

Protecting lost+found from rmdir by directory owner?
 2024-01-17  5:28 UTC  (3+ messages)

[PATCH v6 0/9] Support negative dentries on case-insensitive ext4 and f2fs
 2024-01-16 19:02 UTC  (2+ messages)
` [f2fs-dev] "

[syzbot] [ext4?] INFO: task hung in find_inode_fast (2)
 2024-01-16 15:57 UTC  (3+ messages)

[PATCH AUTOSEL 4.19 5/8] ext4: fix inconsistent between segment fstrim and full fstrim
 2024-01-16  1:08 UTC  (4+ messages)
` [PATCH AUTOSEL 4.19 6/8] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 4.19 7/8] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 4.19 8/8] ext4: avoid online resizing failures due to oversized flex bg

[PATCH AUTOSEL 5.4 6/9] ext4: fix inconsistent between segment fstrim and full fstrim
 2024-01-16  1:08 UTC  (4+ messages)
` [PATCH AUTOSEL 5.4 7/9] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 5.4 8/9] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 5.4 9/9] ext4: avoid online resizing failures due to oversized flex bg

[PATCH AUTOSEL 5.10 6/9] ext4: fix inconsistent between segment fstrim and full fstrim
 2024-01-16  1:07 UTC  (4+ messages)
` [PATCH AUTOSEL 5.10 7/9] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 5.10 8/9] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 5.10 9/9] ext4: avoid online resizing failures due to oversized flex bg

[PATCH AUTOSEL 5.15 08/11] ext4: fix inconsistent between segment fstrim and full fstrim
 2024-01-16  1:07 UTC  (4+ messages)
` [PATCH AUTOSEL 5.15 09/11] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 5.15 10/11] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 5.15 11/11] ext4: avoid online resizing failures due to oversized flex bg

[PATCH AUTOSEL 6.6 10/19] ext4: enable dioread_nolock as default for bs < ps case
 2024-01-16  1:05 UTC  (6+ messages)
` [PATCH AUTOSEL 6.6 11/19] ext4: treat end of range as exclusive in ext4_zero_range()
` [PATCH AUTOSEL 6.6 16/19] ext4: fix inconsistent between segment fstrim and full fstrim
` [PATCH AUTOSEL 6.6 17/19] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 6.6 18/19] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 6.6 19/19] ext4: avoid online resizing failures due to oversized flex bg

[PATCH AUTOSEL 6.7 11/21] ext4: enable dioread_nolock as default for bs < ps case
 2024-01-16  1:03 UTC  (6+ messages)
` [PATCH AUTOSEL 6.7 12/21] ext4: treat end of range as exclusive in ext4_zero_range()
` [PATCH AUTOSEL 6.7 18/21] ext4: fix inconsistent between segment fstrim and full fstrim
` [PATCH AUTOSEL 6.7 19/21] ext4: unify the type of flexbg_size to unsigned int
` [PATCH AUTOSEL 6.7 20/21] ext4: remove unnecessary check from alloc_flex_gd()
` [PATCH AUTOSEL 6.7 21/21] ext4: avoid online resizing failures due to oversized flex bg

[PATCH] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard
 2024-01-16  1:02 UTC  (2+ messages)

[PATCH v2 0/4] xfstests: test custom crypto data unit size
 2024-01-14 12:57 UTC  (5+ messages)
` [PATCH v2 4/4] generic: add test for "


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