aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/ext4/inline.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-05-13ext4: inline: fix len overflow in ext4_prepare_inline_dataThadeu Lima de Souza Cascardo1-1/+1
2025-05-08ext4: for committing inode, make ext4_fc_track_inode waitHarshad Shirwadkar1-0/+1
2025-04-01Merge tag 'mm-stable-2025-03-30-16-52' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmLinus Torvalds1-1/+1
2025-03-17ext4: remove redundant function ext4_has_metadata_csumEric Biggers1-1/+1
2025-03-16fs: convert block_commit_write() to take a folioMatthew Wilcox (Oracle)1-1/+1
2025-03-16ext4: remove unused input "inode" in ext4_find_dest_deKemeng Shi1-1/+1
2025-03-13ext4: add ext4_emergency_state() helper functionBaokun Li1-1/+1
2025-03-13ext4: Refactor out ext4_try_to_write_inline_data()Julian Sun1-74/+3
2025-03-13ext4: Replace ext4_da_write_inline_data_begin() with ext4_generic_write_inline_data().Julian Sun1-89/+9
2025-03-13ext4: Introduce a new helper function ext4_generic_write_inline_data()Julian Sun1-0/+86
2024-09-20Merge tag 'ext4_for_linus-6.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4Linus Torvalds1-15/+31
2024-09-16Merge tag 'vfs-6.12.file' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsLinus Torvalds1-3/+4
2024-09-09ext4: store cookie in private dataChristian Brauner1-3/+4
2024-09-03ext4: fix a potential assertion failure due to improperly dirtied bufferShida Zhang1-3/+4
2024-09-03ext4: hoist ext4_block_write_begin and replace the __block_write_beginShida Zhang1-5/+5
2024-09-03ext4: avoid OOB when system.data xattr changes underneath the filesystemThadeu Lima de Souza Cascardo1-10/+21
2024-09-03ext4: return error on ext4_find_inline_entryThadeu Lima de Souza Cascardo1-3/+7
2024-08-07buffer: Convert __block_write_begin() to take a folioMatthew Wilcox (Oracle)1-3/+3
2024-08-07fs: Convert aops->write_begin to take a folioMatthew Wilcox (Oracle)1-4/+4
2024-06-27ext4: fix uninitialized variable in ext4_inlinedir_to_treeXiaxi Shen1-1/+5
2023-12-10mm: add folio_zero_tail() and use it in ext4Matthew Wilcox (Oracle)1-2/+1
2023-10-18ext4: convert to new timestamp accessorsJeff Layton1-2/+2
2023-08-31Merge tag 'ext4_for_linus-6.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4Linus Torvalds1-1/+1
2023-07-29ext4: make ext4_forced_shutdown() take struct super_blockJan Kara1-1/+1
2023-07-24ext4: convert to ctime accessor functionsJeff Layton1-2/+2
2023-06-26ext4: make ext4_es_remove_extent() return voidBaokun Li1-10/+2
2023-06-15ext4: Make ext4_write_inline_data_end() use folioRitesh Harjani1-2/+1
2023-06-15ext4: kill unused function ext4_journalled_write_inline_dataRitesh Harjani1-24/+0
2023-05-13ext4: bail out of ext4_xattr_ibody_get() fails for any reasonTheodore Ts'o1-1/+1
2023-05-13ext4: add bounds checking in get_max_inline_xattr_value_size()Theodore Ts'o1-1/+11
2023-05-13ext4: fix deadlock when converting an inline directory in nojournal modeTheodore Ts'o1-1/+2
2023-04-27Merge tag 'mm-stable-2023-04-27-15-30' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmLinus Torvalds1-9/+10
2023-04-06ext4: Convert ext4_write_inline_data_end() to use a folioMatthew Wilcox1-14/+15
2023-04-06ext4: Convert ext4_read_inline_page() to ext4_read_inline_folio()Matthew Wilcox1-13/+14
2023-04-06ext4: Convert ext4_da_write_inline_data_begin() to use a folioMatthew Wilcox1-11/+9
2023-04-06ext4: Convert ext4_da_convert_inline_data_to_extent() to use a folioMatthew Wilcox1-13/+14
2023-04-06ext4: Convert ext4_try_to_write_inline_data() to use a folioMatthew Wilcox1-13/+11
2023-04-06ext4: Convert ext4_convert_inline_data_to_extent() to use a folioMatthew Wilcox1-21/+19
2023-04-06ext4: Convert ext4_readpage_inline() to take a folioMatthew Wilcox1-7/+7
2023-03-11ext4: move where set the MAY_INLINE_DATA flag is setYe Bin1-1/+0
2022-11-29fs/ext4: replace ternary operator with min()/max() and min_t()Jiangshan Yi1-2/+1
2022-08-02ext4: correct max_inline_xattr_value_size computingBaokun Li1-0/+3
2022-08-02ext4: fix reading leftover inlined symlinksZhang Yi1-0/+30
2022-05-24Merge tag 'folio-5.19' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds1-22/+19
2022-05-21ext4: fix bug_on in ext4_writepagesYe Bin1-0/+12
2022-05-11ext4: remove unnecessary type castingsYu Zhe1-3/+3
2022-05-08fs: Remove aop flags parameter from grab_cache_page_write_begin()Matthew Wilcox (Oracle)1-4/+4
2022-05-08ext4: Use scoped memory APIs in ext4_write_begin()Matthew Wilcox (Oracle)1-11/+10
2022-05-08ext4: Use scoped memory APIs in ext4_da_write_begin()Matthew Wilcox (Oracle)1-8/+8
2022-05-08ext4: Allow GFP_FS allocations in ext4_da_convert_inline_data_to_extent()Matthew Wilcox (Oracle)1-3/+1