summaryrefslogtreecommitdiffstats
path: root/fs/ext4 (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'mm-stable-2023-08-28-18-26' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2023-08-294-23/+13
|\
| * mm: remove enum page_entry_sizeMatthew Wilcox (Oracle)2023-08-251-6/+5
| * minmax: add in_range() macroMatthew Wilcox (Oracle)2023-08-251-2/+0
| * mm: merge folio_has_private()/filemap_release_folio() call pairsDavid Howells2023-08-181-8/+4
| * fs: convert block_commit_write to return voidBean Huo2023-08-181-5/+2
| * mm: increase usage of folio_next_index() helperSidhartha Kumar2023-08-181-2/+2
* | Merge tag 'v6.6-vfs.super' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds2023-08-282-40/+32
|\ \
| * | ext4: use fs_holder_ops for the log deviceChristoph Hellwig2023-08-111-10/+1
| * | ext4: drop s_umount over opening the log deviceChristoph Hellwig2023-08-111-0/+3
| * | ext4: make the IS_EXT2_SB/IS_EXT3_SB checks more robustChristoph Hellwig2023-08-101-2/+2
| * | ext4: close the external journal device in ->kill_sbChristoph Hellwig2023-08-101-25/+25
| * | fs, block: remove bdev->bd_superChristoph Hellwig2023-08-091-1/+0
| * | ext4: don't use bdev->bd_super in __ext4_journal_get_write_accessChristoph Hellwig2023-08-091-2/+1
* | | Merge tag 'v6.6-vfs.ctime' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds2023-08-2811-88/+91
|\ \ \ | |_|/ |/| |
| * | ext4: switch to multigrain timestampsJeff Layton2023-08-111-1/+1
| * | fs: pass the request_mask to generic_fillattrJeff Layton2023-08-091-1/+1
| * | ext4: convert to ctime accessor functionsJeff Layton2023-07-2411-86/+89
| |/
* | ext4: fix rbtree traversal bug in ext4_mb_use_preallocatedOjaswin Mujoo2023-07-231-27/+131
* | ext4: fix off by one issue in ext4_mb_choose_next_group_best_avail()Ojaswin Mujoo2023-07-231-5/+9
* | ext4: correct inline offset when handling xattrs in inode bodyEric Whitney2023-07-231-0/+14
|/
* Merge tag 'fs_for_v6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds2023-06-291-17/+16
|\
| * ext4: Use generic_buffers_fsync_noflush() implementationRitesh Harjani (IBM)2023-05-161-17/+16
* | Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds2023-06-2914-534/+827
|\ \
| * | ext4: avoid updating the superblock on a r/o mount if not neededTheodore Ts'o2023-06-271-2/+10
| * | ext4: fix to check return value of freeze_bdev() in ext4_shutdown()Chao Yu2023-06-271-1/+4
| * | ext4: refactoring to use the unified helper ext4_quotas_off()Baokun Li2023-06-271-19/+7
| * | ext4: turn quotas off if mount failed after enabling quotasBaokun Li2023-06-271-2/+4
| * | ext4: add journal cycled recording supportZhang Yi2023-06-271-0/+5
| * | ext4: ext4_put_super: Remove redundant checking for 'sbi->s_journal_bdev'Zhihao Cheng2023-06-271-1/+1
| * | ext4: Fix reusing stale buffer heads from last failed mountingZhihao Cheng2023-06-271-6/+7
| * | ext4: allow concurrent unaligned dio overwritesBrian Foster2023-06-271-40/+46
| * | ext4: clean up mballoc criteria commentsTheodore Ts'o2023-06-272-30/+34
| * | ext4: make ext4_zeroout_es() return voidBaokun Li2023-06-271-7/+5
| * | ext4: make ext4_es_insert_extent() return voidBaokun Li2023-06-274-28/+18
| * | ext4: make ext4_es_insert_delayed_block() return voidBaokun Li2023-06-273-20/+11
| * | ext4: make ext4_es_remove_extent() return voidBaokun Li2023-06-275-52/+18
| * | ext4: using nofail preallocation in ext4_es_insert_extent()Baokun Li2023-06-271-12/+26
| * | ext4: using nofail preallocation in ext4_es_insert_delayed_block()Baokun Li2023-06-271-11/+22
| * | ext4: using nofail preallocation in ext4_es_remove_extent()Baokun Li2023-06-271-2/+11
| * | ext4: use pre-allocated es in __es_remove_extent()Baokun Li2023-06-271-13/+13
| * | ext4: use pre-allocated es in __es_insert_extent()Baokun Li2023-06-271-7/+12
| * | ext4: factor out __es_alloc_extent() and __es_free_extent()Baokun Li2023-06-271-11/+19
| * | ext4: add a new helper to check if es must be keptBaokun Li2023-06-271-13/+21
| * | ext4: only update i_reserved_data_blocks on successful block allocationBaokun Li2023-06-272-10/+8
| * | ext4: Give symbolic names to mballoc criteriasOjaswin Mujoo2023-06-274-137/+201
| * | ext4: Add allocation criteria 1.5 (CR1_5)Ojaswin Mujoo2023-06-274-10/+148
| * | ext4: Abstract out logic to search average fragment listOjaswin Mujoo2023-06-271-18/+33
| * | ext4: Ensure ext4_mb_prefetch_fini() is called for all prefetched BGsOjaswin Mujoo2023-06-272-11/+4
| * | ext4: Don't skip prefetching BLOCK_UNINIT groupsOjaswin Mujoo2023-06-271-6/+2
| * | ext4: Avoid scanning smaller extents in BG during CR1Ojaswin Mujoo2023-06-271-1/+18