linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-04-26 11:55:26 to 2024-05-08 15:20:23 UTC [more...]

[PATCH 0/5] Convert ext4's mballoc to use folios
 2024-05-08 15:20 UTC  (3+ messages)

[PATCH v3 00/10] ext4: support adding multi-delalloc blocks
 2024-05-08 15:02 UTC  (12+ messages)
` [PATCH v3 01/10] ext4: factor out a common helper to query extent map
` [PATCH v3 02/10] ext4: check the extent status again before inserting delalloc block
` [PATCH v3 03/10] ext4: warn if delalloc counters are not zero on inactive
` [PATCH v3 04/10] ext4: trim delalloc extent
` [PATCH v3 05/10] ext4: drop iblock parameter
` [PATCH v3 06/10] ext4: make ext4_es_insert_delayed_block() insert multi-blocks
` [PATCH v3 07/10] ext4: make ext4_da_reserve_space() reserve multi-clusters
` [PATCH v3 08/10] ext4: factor out check for whether a cluster is allocated
` [PATCH v3 09/10] ext4: make ext4_insert_delayed_block() insert multi-blocks
` [PATCH v3 10/10] ext4: make ext4_da_map_blocks() buffer_head unaware

[Bug 218820] New: The empty file occupies incorrect blocks
 2024-05-08 13:33 UTC 

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

[PATCH 0/9] A fix and some cleanups to jbd2
 2024-05-08  1:45 UTC  (18+ messages)
` [PATCH 1/9] jbd2: avoid memleak in jbd2_journal_write_metadata_buffer
` [PATCH 2/9] jbd2: remove unused return info from jbd2_journal_write_metadata_buffer
` [PATCH 3/9] jbd2: remove unnedded "need_copy_out" in jbd2_journal_write_metadata_buffer
` [PATCH 4/9] jbd2: move repeat tag around to remove a repeat check of b_frozen_data
` [PATCH 5/9] jbd2: remove unneeded kmap to do escape in jbd2_journal_write_metadata_buffer
` [PATCH 6/9] jbd2: use bh_in instead of jh2bh(jh_in) to simplify code
` [PATCH 7/9] jbd2: remove dead equality check of j_commit_[sequence/request] in kjournald2
` [PATCH 8/9] jbd2: remove dead check of JBD2_UNMOUNT "
` [PATCH 9/9] jbd2: remove unnecessary "should_sleep" "

[PATCH] ext4: remove the redundant folio_wait_stable()
 2024-05-07 23:03 UTC  (2+ messages)

[PATCH 0/2] ext4: fix WARNING in mb_cache_destroy
 2024-05-07 23:03 UTC  (6+ messages)
` [PATCH 1/2] ext4: fix mb_cache_entry's e_refcnt leak in ext4_xattr_block_cache_find()
` [PATCH 2/2] ext4: propagate errors from ext4_sb_bread() "

[PATCH v3 0/5] Minor improvements and cleanups to ext4 mballoc
 2024-05-07 23:03 UTC  (4+ messages)
` [PATCH v3 3/5] ext4: call ext4_mb_mark_free_simple to free continuous bits in found chunk

[PATCH] ext4: fix potential unnitialized variable
 2024-05-07 23:03 UTC  (2+ messages)

[PATCH][next] jbd2: remove redundant assignement to variable err
 2024-05-07 23:03 UTC  (2+ messages)

[PATCHv2 0/2] iomap: Optimize read_folio
 2024-05-07 21:11 UTC  (4+ messages)
` [PATCHv2 1/2] iomap: Fix iomap_adjust_read_range for plen calculation
` [PATCHv2 2/2] iomap: Optimize iomap_read_folio

[RESEND RFC PATCH v4 00/34] ext4: use iomap for regular file's buffered IO path and enable large folio
 2024-05-07  5:10 UTC  (31+ messages)
` [PATCH v4 02/34] ext4: check the extent status again before inserting delalloc block
` [RFC PATCH v4 24/34] ext4: implement buffered write iomap path
` [RFC PATCH v4 27/34] ext4: implement zero_range "
` [RFC PATCH v4 29/34] ext4: fall back to buffer_head path for defrag
` [RFC PATCH v4 33/34] ext4: don't mark IOMAP_F_DIRTY for buffer write

[PATCH 0/3] e2fsck: expand checking of EA inode
 2024-05-06 17:41 UTC  (4+ messages)
` [PATCH 1/3] e2fsck: add more checks for ea inode consistency
` [PATCH 2/3] e2fsck: add tests for EA inodes
` [PATCH 3/3] e2fsck: fix golden output of several tests

Massive slowdown in kernels as of 6.x
 2024-05-06 13:32 UTC  (6+ messages)

[PATCH v2 4/4] btrfs-progs: convert: support ext2 unwritten file data extents
 2024-05-06 10:25 UTC  (3+ messages)

[PATCH v4 03/34] ext4: trim delalloc extent
 2024-05-06  6:15 UTC  (3+ messages)

[PATCH] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard
 2024-05-06  0:59 UTC  (4+ messages)

[syzbot] [bcachefs?] [ext4?] WARNING: suspicious RCU usage in bch2_fs_quota_read
 2024-05-05 20:59 UTC  (2+ messages)

created ext4 disk image differs depending on the underlying filesystem
 2024-05-05  0:10 UTC  (3+ messages)

[syzbot] [ext4?] WARNING in mb_cache_destroy
 2024-05-04  2:00 UTC  (9+ messages)

[PATCH RFC 4/4] btrfs-progs: convert: support ext2 unwritten file data extents
 2024-05-04  0:06 UTC  (5+ messages)

[RFC] Documentation: Add initial iomap document
 2024-05-03 16:41 UTC  (2+ messages)

[PATCH] ext2: Remove LEGACY_DIRECT_IO dependency
 2024-05-03  9:54 UTC  (2+ messages)

[PATCH] ext4: implement filesystem specific alloc_inode in unit test
 2024-05-03  4:07 UTC  (3+ messages)

[PATCH 0/3] ext4: Create EA inodes outside of buffer lock
 2024-05-03  4:03 UTC  (5+ messages)
` [PATCH 1/2] Revert "ext4: drop duplicate ea_inode handling in ext4_xattr_block_set()"
` [PATCH 2/2] ext4: Do not create EA inode under buffer lock

[PATCH v4 0/9] ext4: avoid sysfs variables overflow causing BUG_ON/SOOB
 2024-05-03  4:01 UTC  (6+ messages)

[PATCH] ext4: replace deprecated strncpy with alternatives
 2024-05-03  4:01 UTC  (2+ messages)

[syzbot] [ext4?] kernel BUG in ext4_write_inline_data
 2024-05-03  3:44 UTC  (2+ messages)
` [syzbot] "

[PATCH] ext4: fix uninitialized ratelimit_state->lock access in __ext4_fill_super()
 2024-05-03  2:09 UTC  (3+ messages)

[PATCH] Revert "ext4: apply umask if ACL support is disabled"
 2024-05-02 22:26 UTC  (4+ messages)

[RESEND PATCH] ext4: Remove unneeded if checks before kfree
 2024-05-02 20:00 UTC  (3+ messages)

[PATCH] ext4: Avoid excessive credit estimate in ext4_tmpfile()
 2024-05-02 20:00 UTC  (2+ messages)

[PATCH 1/2] ext4: set FMODE_CAN_ODIRECT instead of a dummy direct_IO method
 2024-05-02 14:54 UTC  (2+ messages)

[PATCH 1/2] ext4: Fixes len calculation in mpage_journal_page_buffers
 2024-05-02 14:51 UTC  (2+ messages)

[RFC PATCH 0/1] Change failover behavior for DIRECT writes in ext4/block fops
 2024-05-02 14:33 UTC  (5+ messages)
` [RFC PATCH 1/1] Remove buffered failover for ext4 and block fops direct writes

[PATCH v4 04/34] ext4: drop iblock parameter
 2024-05-01 14:41 UTC  (2+ messages)

[PATCH] Fix uninitialized variable in ext4_inlinedir_to_tree
 2024-05-01  3:30 UTC 

[linux-next:master] BUILD REGRESSION d04466706db5e241ee026f17b5f920e50dee26b5
 2024-04-30 20:14 UTC 

[PATCH v3] jbd2: avoid mount failed when commit block is partial submitted
 2024-04-29 19:14 UTC  (2+ messages)

[PATCH v2 0/9] ext4: support adding multi-delalloc blocks
 2024-04-29 16:27 UTC  (20+ messages)
` [PATCH v2 3/9] ext4: trim delalloc extent
` [PATCH v2 4/9] ext4: drop iblock parameter
` [PATCH v2 5/9] ext4: make ext4_es_insert_delayed_block() insert multi-blocks
` [PATCH v2 6/9] ext4: make ext4_da_reserve_space() reserve multi-clusters
` [PATCH v2 8/9] ext4: make ext4_insert_delayed_block() insert multi-blocks
` [PATCH v2 9/9] ext4: make ext4_da_map_blocks() buffer_head unaware

[syzbot] [ext4?] KMSAN: uninit-value in ext4_inlinedir_to_tree
 2024-04-29 16:05 UTC 

[syzbot] [ext4?] WARNING in __ext4_journal_start_sb
 2024-04-27 20:56 UTC 

shrink extent tree when possible
 2024-04-27  6:41 UTC 

merge extent blocks when possible
 2024-04-27  6:35 UTC 

[RFCv3 0/7] ext2 iomap changes and iomap improvements
 2024-04-27  6:03 UTC  (21+ messages)
` [RFCv3 1/7] ext2: Remove comment related to journal handle
` [RFCv3 2/7] ext2: Convert ext2 regular file buffered I/O to use iomap
` [RFCv3 3/7] ext2: Enable large folio support
` [RFCv3 4/7] ext2: Implement seq counter for validating cached iomap
` [RFCv3 7/7] iomap: Optimize data access patterns for filesystems with indirect mappings

[RFCv3 6/7] iomap: Optimize iomap_read_folio
 2024-04-27  4:44 UTC  (3+ messages)

[RFCv3 5/7] iomap: Fix iomap_adjust_read_range for plen calculation
 2024-04-26 15:43 UTC  (3+ messages)

[PATCH v4 01/34] ext4: factor out a common helper to query extent map
 2024-04-26 11:55 UTC  (2+ messages)


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