aboutsummaryrefslogtreecommitdiff
path: root/fs/f2fs/data.c
AgeCommit message (Expand)AuthorFilesLines
2023-08-23f2fs: fix error path of f2fs_submit_page_read()Gravatar Chao Yu 1-0/+3
2023-08-14f2fs: increase usage of folio_next_index() helperGravatar Minjie Du 1-2/+1
2023-08-14f2fs: get out of a repeat loop when getting a locked data pageGravatar Jaegeuk Kim 1-6/+2
2023-06-26f2fs: set FMODE_CAN_ODIRECT instead of a dummy direct_IO methodGravatar Christoph Hellwig 1-1/+0
2023-06-12f2fs: fix potential deadlock due to unpaired node_write lock useGravatar Chao Yu 1-3/+4
2023-05-23f2fs: maintain six open zones for zoned devicesGravatar Daeho Jeong 1-0/+58
2023-05-08f2fs: remove redundant goto statement in f2fs_read_single_page()Gravatar Li Zetao 1-1/+0
2023-05-08f2fs: support errors=remount-ro|continue|panic mountoptionGravatar Chao Yu 1-0/+4
2023-04-24f2fs: use cow inode data when updating atomic writeGravatar Daeho Jeong 1-5/+10
2023-04-18f2fs: relax sanity check if checkpoint is corruptedGravatar Jaegeuk Kim 1-0/+4
2023-04-17f2fs: remove folio_detach_private() in .invalidate_folio and .release_folioGravatar Chao Yu 1-23/+2
2023-04-10f2fs: fix to drop all dirty pages during umount() if cp_error is setGravatar Chao Yu 1-1/+2
2023-04-10f2fs: fix to avoid use-after-free for cached IPU bioGravatar Chao Yu 1-1/+4
2023-03-29f2fs: remove else in f2fs_write_cache_pages()Gravatar Yangtao Li 1-5/+2
2023-03-29f2fs: convert to use bitmap APIGravatar Yangtao Li 1-6/+6
2023-02-27Merge tag 'f2fs-for-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-311/+313
2023-02-23Merge tag 'mm-stable-2023-02-20-13-37' of git://git.kernel.org/pub/scm/linux/...Gravatar Linus Torvalds 1-26/+58
2023-02-20Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linuxGravatar Linus Torvalds 1-2/+1
2023-02-07f2fs: fix typos in commentsGravatar Jinyoung CHOI 1-4/+4
2023-02-07f2fs: fix kernel crash due to null io->bioGravatar Jaegeuk Kim 1-0/+4
2023-02-07f2fs: use iostat_lat_type directly as a parameter in the iostat_update_and_un...Gravatar Yangtao Li 1-2/+2
2023-02-05f2fs: fix cgroup writeback accounting with fs-layer encryptionGravatar Eric Biggers 1-3/+3
2023-02-02f2fs: convert f2fs_write_cache_pages() to use filemap_get_folios_tag()Gravatar Vishal Moola (Oracle) 1-26/+58
2023-02-02f2fs: reduce stack memory cost by using bitfield in struct f2fs_io_infoGravatar Chao Yu 1-5/+5
2023-01-11f2fs: merge f2fs_show_injection_info() into time_to_inject()Gravatar Yangtao Li 1-6/+2
2023-01-09f2fs: simplify f2fs_readpage_limit()Gravatar Eric Biggers 1-2/+1
2023-01-06f2fs: avoid to check PG_error flagGravatar Chao Yu 1-2/+0
2023-01-06f2fs: introduce IS_F2FS_IPU_* macroGravatar Yangtao Li 1-15/+10
2023-01-06f2fs: refactor the hole reporting and allocation logic in f2fs_map_blocksGravatar Christoph Hellwig 1-57/+56
2023-01-06f2fs: factor out a f2fs_map_no_dnodeGravatar Christoph Hellwig 1-23/+24
2023-01-06f2fs: factor a f2fs_map_blocks_cached helperGravatar Christoph Hellwig 1-27/+38
2023-01-06f2fs: remove the create argument to f2fs_map_blocksGravatar Christoph Hellwig 1-36/+27
2023-01-06f2fs: remove f2fs_get_blockGravatar Christoph Hellwig 1-11/+7
2023-01-06f2fs: simplify __allocate_data_blockGravatar Christoph Hellwig 1-6/+5
2023-01-06f2fs: reflow prepare_write_beginGravatar Christoph Hellwig 1-29/+32
2023-01-06f2fs: f2fs_do_map_lockGravatar Christoph Hellwig 1-22/+23
2023-01-06f2fs: add a f2fs_get_block_locked helperGravatar Christoph Hellwig 1-2/+14
2023-01-06f2fs: add a f2fs_lookup_extent_cache_block helperGravatar Christoph Hellwig 1-33/+18
2023-01-06f2fs: split __submit_bioGravatar Christoph Hellwig 1-53/+58
2023-01-06f2fs: rename F2FS_MAP_UNWRITTEN to F2FS_MAP_DELALLOCGravatar Christoph Hellwig 1-4/+4
2023-01-06f2fs: don't rely on F2FS_MAP_* in f2fs_iomap_beginGravatar Christoph Hellwig 1-10/+14
2023-01-04f2fs: fix to call clear_page_private_reference in .{release,invalid}_folioGravatar Chao Yu 1-0/+2
2023-01-03f2fs: initialize extent_cache parameterGravatar Jaegeuk Kim 1-1/+1
2022-12-14Merge tag 'f2fs-for-6.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-25/+29
2022-12-12f2fs: refactor extent_cache to support for read and moreGravatar Jaegeuk Kim 1-10/+10
2022-12-08f2fs: do some cleanup for f2fs module initGravatar Yangtao Li 1-10/+4
2022-11-28fsverity: stop using PG_error to track error statusGravatar Eric Biggers 1-20/+33
2022-11-28f2fs: introduce F2FS_IOC_START_ATOMIC_REPLACEGravatar Daeho Jeong 1-0/+3
2022-11-11f2fs: optimize iteration over sparse directoriesGravatar Chao Yu 1-5/+12
2022-10-10Merge tag 'f2fs-for-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-16/+37