aboutsummaryrefslogtreecommitdiff
path: root/fs/f2fs/file.c
AgeCommit message (Expand)AuthorFilesLines
2023-04-20f2fs: allocate trace path buffer from names_cacheGravatar Wu Bo 1-2/+2
2023-04-13f2fs: support iopoll methodGravatar Wu Bo 1-0/+1
2023-04-13f2fs: fix to check return value of f2fs_do_truncate_blocks()Gravatar Chao Yu 1-1/+5
2023-03-29f2fs: preserve direct write semantics when buffering is forcedGravatar Hans Holmberg 1-8/+26
2023-03-29f2fs: fix to handle filemap_fdatawrite() error in f2fs_ioc_decompress_file/f2...Gravatar Yangtao Li 1-4/+10
2023-03-29f2fs: handle dqget error in f2fs_transfer_project_quota()Gravatar Yangtao Li 1-7/+8
2023-03-29f2fs: convert to use bitmap APIGravatar Yangtao Li 1-1/+1
2023-02-27Merge tag 'f2fs-for-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-83/+90
2023-02-20Merge tag 'fs.idmapped.v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-25/+25
2023-02-15f2fs: drop unnecessary arg for f2fs_ioc_*()Gravatar Yangtao Li 1-8/+8
2023-02-14f2fs: synchronize atomic write abortsGravatar Daeho Jeong 1-15/+29
2023-02-07f2fs: fix typos in commentsGravatar Jinyoung CHOI 1-3/+3
2023-02-02f2fs: fix to update age extent in f2fs_do_zero_range()Gravatar Chao Yu 1-0/+1
2023-02-02f2fs: fix to update age extent correctly during truncationGravatar Chao Yu 1-1/+1
2023-02-02f2fs: fix to handle F2FS_IOC_START_ATOMIC_REPLACE in f2fs_compat_ioctl()Gravatar Chao Yu 1-0/+1
2023-02-02f2fs: factor the read/write tracing logic into a helperGravatar Christoph Hellwig 1-35/+26
2023-01-31f2fs: fix to abort atomic write only during do_exist()Gravatar Chao Yu 1-1/+2
2023-01-31f2fs: allow set compression option of files without blocksGravatar Yangtao Li 1-1/+1
2023-01-19fs: port i_{g,u}id_into_vfs{g,u}id() to mnt_idmapGravatar Christian Brauner 1-2/+1
2023-01-19fs: port i_{g,u}id_{needs_}update() to mnt_idmapGravatar Christian Brauner 1-7/+6
2023-01-19quota: port to mnt_idmapGravatar Christian Brauner 1-2/+2
2023-01-19fs: port privilege checking helpers to mnt_idmapGravatar Christian Brauner 1-1/+1
2023-01-19fs: port inode_owner_or_capable() to mnt_idmapGravatar Christian Brauner 1-6/+5
2023-01-19fs: port inode_init_owner() to mnt_idmapGravatar Christian Brauner 1-2/+3
2023-01-19fs: port ->fileattr_set() to pass mnt_idmapGravatar Christian Brauner 1-1/+1
2023-01-19fs: port ->set_acl() to pass mnt_idmapGravatar Christian Brauner 1-1/+1
2023-01-19fs: port ->getattr() to pass mnt_idmapGravatar Christian Brauner 1-2/+2
2023-01-19fs: port ->setattr() to pass mnt_idmapGravatar Christian Brauner 1-4/+6
2023-01-11f2fs: merge f2fs_show_injection_info() into time_to_inject()Gravatar Yangtao Li 1-3/+1
2023-01-11f2fs: add a f2fs_ prefix to punch_hole() and expand_inode_data()Gravatar Yangtao Li 1-4/+4
2023-01-06f2fs: fix to avoid potential deadlockGravatar Chao Yu 1-3/+6
2023-01-06f2fs: remove the create argument to f2fs_map_blocksGravatar Christoph Hellwig 1-6/+6
2023-01-06f2fs: add a f2fs_get_block_locked helperGravatar Christoph Hellwig 1-3/+1
2023-01-04f2fs: file: drop useless initializer in expand_inode_data()Gravatar Sergey Shtylyov 1-1/+1
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-14/+32
2022-12-12f2fs: add block_age-based extent cacheGravatar Jaegeuk Kim 1-0/+1
2022-12-12f2fs: refactor extent_cache to support for read and moreGravatar Jaegeuk Kim 1-4/+4
2022-11-28f2fs: introduce F2FS_IOC_START_ATOMIC_REPLACEGravatar Daeho Jeong 1-6/+15
2022-11-11f2fs: correct i_size change for atomic writesGravatar Daeho Jeong 1-7/+11
2022-11-01f2fs: Fix typo in commentsGravatar Keoseong Park 1-1/+1
2022-11-01f2fs: allow to set compression for inlined fileGravatar Jaegeuk Kim 1-0/+4
2022-10-20fs: rename current get acl methodGravatar Christian Brauner 1-1/+1
2022-10-19fs: pass dentry to set acl methodGravatar Christian Brauner 1-1/+1
2022-10-10Merge tag 'f2fs-for-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-21/+36
2022-10-07f2fs: change to use atomic_t type form sbi.atomic_filesGravatar Chao Yu 1-3/+1
2022-10-04f2fs: support recording errors into superblockGravatar Chao Yu 1-2/+10
2022-10-04f2fs: support recording stop_checkpoint reason into super_blockGravatar Chao Yu 1-5/+6
2022-10-04f2fs: code clean and fix a type errorGravatar Zhang Qilong 1-1/+1
2022-10-04f2fs: port to vfs{g,u}id_t and associated helpersGravatar Christian Brauner 1-2/+3