aboutsummaryrefslogtreecommitdiff
path: root/fs/fuse/file.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-08fuse: Convert fuse_readpages_end() to use folio_end_read()Gravatar Matthew Wilcox (Oracle) 1-7/+3
2024-04-15fuse: fix wrong ff->iomode state changes from parallel dio writeGravatar Amir Goldstein 1-5/+7
2024-03-15Merge tag 'fuse-update-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-179/+278
2024-03-06fuse: get rid of ff->readdir.lockGravatar Miklos Szeredi 1-2/+0
2024-03-06fuse: Fix missing FOLL_PIN for direct-ioGravatar Lei Huang 1-5/+10
2024-03-06fuse: remove an unnecessary if statementGravatar Jiachen Zhang 1-4/+0
2024-03-06fuse: Track process write operations in both direct and writethrough modesGravatar Zhou Jifeng 1-2/+6
2024-03-05fuse: Convert fuse_writepage_locked to take a folioGravatar Matthew Wilcox (Oracle) 1-15/+15
2024-03-05fuse: Remove fuse_writepageGravatar Matthew Wilcox (Oracle) 1-29/+1
2024-03-05fuse: implement passthrough for mmapGravatar Amir Goldstein 1-3/+10
2024-03-05fuse: implement splice read/write passthroughGravatar Amir Goldstein 1-2/+27
2024-03-05fuse: implement read/write passthroughGravatar Amir Goldstein 1-6/+12
2024-03-05fuse: implement open in passthrough modeGravatar Amir Goldstein 1-1/+8
2024-03-05fuse: prepare for opening file in passthrough modeGravatar Amir Goldstein 1-19/+15
2024-02-23fuse: allow parallel dio writes with FUSE_DIRECT_IO_ALLOW_MMAPGravatar Amir Goldstein 1-12/+29
2024-02-23fuse: introduce inode io modesGravatar Amir Goldstein 1-0/+15
2024-02-23fuse: prepare for failing open responseGravatar Amir Goldstein 1-5/+10
2024-02-23fuse: break up fuse_open_common()Gravatar Amir Goldstein 1-7/+2
2024-02-23fuse: allocate ff->release_args only if release is neededGravatar Amir Goldstein 1-30/+39
2024-02-23fuse: factor out helper fuse_truncate_update_attr()Gravatar Amir Goldstein 1-17/+21
2024-02-23fuse: add fuse_dio_lock/unlock helper functionsGravatar Bernd Schubert 1-27/+34
2024-02-23fuse: create helper function if DIO write needs exclusive lockGravatar Bernd Schubert 1-18/+45
2024-02-23fuse: fix VM_MAYSHARE and direct_io_allow_mmapGravatar Bernd Schubert 1-2/+6
2024-02-05fuse: adapt to breakup of struct file_lockGravatar Jeff Layton 1-8/+7
2024-02-05filelock: split common fields into struct file_lock_coreGravatar Jeff Layton 1-0/+1
2024-01-08Merge tag 'vfs-6.8.rw' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsGravatar Linus Torvalds 1-2/+3
2023-12-12fs: use splice_copy_file_range() inline helperGravatar Amir Goldstein 1-2/+3
2023-12-04fuse: disable FOPEN_PARALLEL_DIRECT_WRITES with FUSE_DIRECT_IO_ALLOW_MMAPGravatar Amir Goldstein 1-0/+2
2023-12-04fuse: Rename DIRECT_IO_RELAX to DIRECT_IO_ALLOW_MMAPGravatar Tyler Fanelli 1-3/+3
2023-08-16fuse: write back dirty pages before direct write in direct_io_relax modeGravatar Hao Xu 1-0/+7
2023-08-16fuse: add a new fuse init flag to relax restrictions in no cache modeGravatar Hao Xu 1-2/+5
2023-08-16fuse: invalidate page cache pages before direct writeGravatar Hao Xu 1-1/+11
2023-08-14Revert "fuse: in fuse_flush only wait if someone wants the return code"Gravatar Miklos Szeredi 1-63/+26
2023-06-28Merge tag 'mm-stable-2023-06-24-19-15' of git://git.kernel.org/pub/scm/linux/...Gravatar Linus Torvalds 1-35/+10
2023-06-09fuse: use direct_write_fallbackGravatar Christoph Hellwig 1-22/+2
2023-06-09fuse: drop redundant arguments to fuse_perform_writeGravatar Christoph Hellwig 1-6/+5
2023-06-09fuse: update ki_pos in fuse_perform_writeGravatar Christoph Hellwig 1-10/+10
2023-06-09backing_dev: remove current->backing_dev_infoGravatar Christoph Hellwig 1-4/+0
2023-05-24splice: Use filemap_splice_read() instead of generic_file_splice_read()Gravatar David Howells 1-1/+1
2023-03-30iov_iter: add iter_iovec() helperGravatar Jens Axboe 1-1/+1
2023-02-27Merge tag 'fuse-update-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-27/+64
2023-02-23Merge tag 'mm-stable-2023-02-20-13-37' of git://git.kernel.org/pub/scm/linux/...Gravatar Linus Torvalds 1-9/+9
2023-02-20Merge tag 'fs.idmapped.v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-1/+2
2023-02-02fs: convert writepage_t callback to pass a folioGravatar Matthew Wilcox (Oracle) 1-9/+9
2023-01-26fuse: fix all W=1 kernel-doc warningsGravatar Randy Dunlap 1-1/+1
2023-01-26fuse: in fuse_flush only wait if someone wants the return codeGravatar Eric W. Biederman 1-26/+63
2023-01-19fs: port privilege checking helpers to mnt_idmapGravatar Christian Brauner 1-1/+2
2023-01-11filelock: move file locking definitions to separate header fileGravatar Jeff Layton 1-0/+1
2022-12-12Merge tag 'fuse-update-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-3/+40
2022-12-12Merge tag 'fs.ovl.setgid.v6.2' of git://git.kernel.org/pub/scm/linux/kernel/g...Gravatar Linus Torvalds 1-1/+1