aboutsummaryrefslogtreecommitdiff
path: root/fs/ext4
AgeCommit message (Expand)AuthorFilesLines
2023-08-31Merge tag 'ext4_for_linus-6.6-rc1' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 20-376/+462
2023-08-29Merge tag 'for-6.6/block-2023-08-28' of git://git.kernel.dk/linuxGravatar Linus Torvalds 2-1/+2
2023-08-29Merge tag 'mm-stable-2023-08-28-18-26' of git://git.kernel.org/pub/scm/linux/...Gravatar Linus Torvalds 4-23/+13
2023-08-28Merge tag 'v6.6-vfs.super' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 2-40/+32
2023-08-28Merge tag 'v6.6-vfs.ctime' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 11-88/+91
2023-08-27ext4: fix slab-use-after-free in ext4_es_insert_extent()Gravatar Baokun Li 1-14/+30
2023-08-27ext4: remove redundant checks of s_encodingGravatar Eric Biggers 2-4/+4
2023-08-27ext4: reject casefold inode flag without casefold featureGravatar Eric Biggers 1-1/+4
2023-08-27ext4: use LIST_HEAD() to initialize the list_head in mballoc.cGravatar Ruan Jinjie 1-13/+5
2023-08-27ext4: do not mark inode dirty every time when appending using delallocGravatar Liu Song 1-26/+62
2023-08-27ext4: rename s_error_work to s_sb_upd_workGravatar Theodore Ts'o 2-19/+22
2023-08-27ext4: add periodic superblock update checkGravatar Vitaliy Kuznetsov 1-1/+61
2023-08-27ext4: drop dio overwrite only flag and associated warningGravatar Brian Foster 1-15/+10
2023-08-27ext4: add correct group descriptors and reserved GDT blocks to system zoneGravatar Wang Jianjian 3-8/+17
2023-08-27ext4: remove unused function declarationGravatar Cai Xinchen 1-6/+0
2023-08-27ext4: mballoc: avoid garbage value from errGravatar Su Hui 1-1/+1
2023-08-27ext4: use sbi instead of EXT4_SB(sb) in ext4_mb_new_blocks_simple()Gravatar Lu Hongfei 1-1/+1
2023-08-27ext4: change the type of blocksize in ext4_mb_init_cache()Gravatar Lu Hongfei 1-1/+1
2023-08-27ext4: fix unttached inode after power cut with orphan file feature enabledGravatar Zhihao Cheng 1-0/+3
2023-08-27ext4: ext4_get_{dev}_journal return proper error valueGravatar Zhang Yi 1-22/+31
2023-08-24mm: remove enum page_entry_sizeGravatar Matthew Wilcox (Oracle) 1-6/+5
2023-08-24minmax: add in_range() macroGravatar Matthew Wilcox (Oracle) 1-2/+0
2023-08-23ext4: cleanup ext4_get_dev_journal() and ext4_get_journal()Gravatar Zhang Yi 1-60/+49
2023-08-23jbd2: jbd2_journal_init_{dev,inode} return proper error return valueGravatar Zhang Yi 1-2/+2
2023-08-18mm: merge folio_has_private()/filemap_release_folio() call pairsGravatar David Howells 1-8/+4
2023-08-18fs: convert block_commit_write to return voidGravatar Bean Huo 1-5/+2
2023-08-18mm: increase usage of folio_next_index() helperGravatar Sidhartha Kumar 1-2/+2
2023-08-11ext4: use fs_holder_ops for the log deviceGravatar Christoph Hellwig 1-10/+1
2023-08-11ext4: drop s_umount over opening the log deviceGravatar Christoph Hellwig 1-0/+3
2023-08-11ext4: switch to multigrain timestampsGravatar Jeff Layton 1-1/+1
2023-08-10ext4: make the IS_EXT2_SB/IS_EXT3_SB checks more robustGravatar Christoph Hellwig 1-2/+2
2023-08-10ext4: close the external journal device in ->kill_sbGravatar Christoph Hellwig 1-25/+25
2023-08-09fs: pass the request_mask to generic_fillattrGravatar Jeff Layton 1-1/+1
2023-08-09fs, block: remove bdev->bd_superGravatar Christoph Hellwig 1-1/+0
2023-08-09ext4: don't use bdev->bd_super in __ext4_journal_get_write_accessGravatar Christoph Hellwig 1-2/+1
2023-08-05ext4: don't use CR_BEST_AVAIL_LEN for non-regular filesGravatar Ritesh Harjani 1-1/+12
2023-08-05ext4: fix memory leaks in ext4_fname_{setup_filename,prepare_lookup}Gravatar Luís Henriques 1-0/+4
2023-08-03ext4: correct some stale comment of criteriaGravatar Kemeng Shi 1-4/+4
2023-08-03ext4: return found group directly in ext4_mb_choose_next_group_best_availGravatar Kemeng Shi 1-10/+8
2023-08-03ext4: return found group directly in ext4_mb_choose_next_group_goal_fastGravatar Kemeng Shi 1-8/+6
2023-08-03ext4: remove unused ext4_{set}/{clear}_bit_atomicGravatar Kemeng Shi 1-2/+0
2023-08-03ext4: replace the traditional ternary conditional operator with with max()/min()Gravatar Kemeng Shi 1-4/+2
2023-08-03ext4: remove unnecessary return for void functionGravatar Kemeng Shi 1-9/+1
2023-08-03ext4: use is_power_of_2 helper in ext4_mb_regular_allocatorGravatar Kemeng Shi 1-4/+1
2023-08-03ext4: return found group directly in ext4_mb_choose_next_group_p2_alignedGravatar Kemeng Shi 1-14/+7
2023-08-03ext4: avoid potential data overflow in next_linear_groupGravatar Kemeng Shi 1-2/+3
2023-08-03ext4: correct grp validation in ext4_mb_good_groupGravatar Kemeng Shi 1-1/+1
2023-08-03ext4: replace CR_FAST macro with inline function for readabilityGravatar Ojaswin Mujoo 2-7/+13
2023-08-02fs: add CONFIG_BUFFER_HEADGravatar Christoph Hellwig 1-0/+1
2023-08-02fs: rename and move block_page_mkwrite_returnGravatar Christoph Hellwig 1-1/+1