aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/file.c
AgeCommit message (Expand)AuthorFilesLines
2024-04-15fuse: fix wrong ff->iomode state changes from parallel dio writeAmir Goldstein1-5/+7
2024-03-15Merge tag 'fuse-update-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-179/+278
2024-03-06fuse: get rid of ff->readdir.lockMiklos Szeredi1-2/+0
2024-03-06fuse: Fix missing FOLL_PIN for direct-ioLei Huang1-5/+10
2024-03-06fuse: remove an unnecessary if statementJiachen Zhang1-4/+0
2024-03-06fuse: Track process write operations in both direct and writethrough modesZhou Jifeng1-2/+6
2024-03-05fuse: Convert fuse_writepage_locked to take a folioMatthew Wilcox (Oracle)1-15/+15
2024-03-05fuse: Remove fuse_writepageMatthew Wilcox (Oracle)1-29/+1
2024-03-05fuse: implement passthrough for mmapAmir Goldstein1-3/+10
2024-03-05fuse: implement splice read/write passthroughAmir Goldstein1-2/+27
2024-03-05fuse: implement read/write passthroughAmir Goldstein1-6/+12
2024-03-05fuse: implement open in passthrough modeAmir Goldstein1-1/+8
2024-03-05fuse: prepare for opening file in passthrough modeAmir Goldstein1-19/+15
2024-02-23fuse: allow parallel dio writes with FUSE_DIRECT_IO_ALLOW_MMAPAmir Goldstein1-12/+29
2024-02-23fuse: introduce inode io modesAmir Goldstein1-0/+15
2024-02-23fuse: prepare for failing open responseAmir Goldstein1-5/+10
2024-02-23fuse: break up fuse_open_common()Amir Goldstein1-7/+2
2024-02-23fuse: allocate ff->release_args only if release is neededAmir Goldstein1-30/+39
2024-02-23fuse: factor out helper fuse_truncate_update_attr()Amir Goldstein1-17/+21
2024-02-23fuse: add fuse_dio_lock/unlock helper functionsBernd Schubert1-27/+34
2024-02-23fuse: create helper function if DIO write needs exclusive lockBernd Schubert1-18/+45
2024-02-23fuse: fix VM_MAYSHARE and direct_io_allow_mmapBernd Schubert1-2/+6
2024-02-05fuse: adapt to breakup of struct file_lockJeff Layton1-8/+7
2024-02-05filelock: split common fields into struct file_lock_coreJeff Layton1-0/+1
2024-01-08Merge tag 'vfs-6.8.rw' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfsLinus Torvalds1-2/+3
2023-12-12fs: use splice_copy_file_range() inline helperAmir Goldstein1-2/+3
2023-12-04fuse: disable FOPEN_PARALLEL_DIRECT_WRITES with FUSE_DIRECT_IO_ALLOW_MMAPAmir Goldstein1-0/+2
2023-12-04fuse: Rename DIRECT_IO_RELAX to DIRECT_IO_ALLOW_MMAPTyler Fanelli1-3/+3
2023-08-16fuse: write back dirty pages before direct write in direct_io_relax modeHao Xu1-0/+7
2023-08-16fuse: add a new fuse init flag to relax restrictions in no cache modeHao Xu1-2/+5
2023-08-16fuse: invalidate page cache pages before direct writeHao Xu1-1/+11
2023-08-14Revert "fuse: in fuse_flush only wait if someone wants the return code"Miklos Szeredi1-63/+26
2023-06-28Merge tag 'mm-stable-2023-06-24-19-15' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-35/+10
2023-06-09fuse: use direct_write_fallbackChristoph Hellwig1-22/+2
2023-06-09fuse: drop redundant arguments to fuse_perform_writeChristoph Hellwig1-6/+5
2023-06-09fuse: update ki_pos in fuse_perform_writeChristoph Hellwig1-10/+10
2023-06-09backing_dev: remove current->backing_dev_infoChristoph Hellwig1-4/+0
2023-05-24splice: Use filemap_splice_read() instead of generic_file_splice_read()David Howells1-1/+1
2023-03-30iov_iter: add iter_iovec() helperJens Axboe1-1/+1
2023-02-27Merge tag 'fuse-update-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-27/+64
2023-02-23Merge tag 'mm-stable-2023-02-20-13-37' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-9/+9
2023-02-20Merge tag 'fs.idmapped.v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-1/+2
2023-02-02fs: convert writepage_t callback to pass a folioMatthew Wilcox (Oracle)1-9/+9
2023-01-26fuse: fix all W=1 kernel-doc warningsRandy Dunlap1-1/+1
2023-01-26fuse: in fuse_flush only wait if someone wants the return codeEric W. Biederman1-26/+63
2023-01-19fs: port privilege checking helpers to mnt_idmapChristian Brauner1-1/+2
2023-01-11filelock: move file locking definitions to separate header fileJeff Layton1-0/+1
2022-12-12Merge tag 'fuse-update-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-3/+40
2022-12-12Merge tag 'fs.ovl.setgid.v6.2' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-1/+1
2022-11-23fuse: allow non-extending parallel direct writes on the same fileDharmendra Singh1-3/+40
2022-11-23fuse: lock inode unconditionally in fuse_fallocate()Miklos Szeredi1-21/+16
2022-10-28fuse: add file_modified() to fallocateMiklos Szeredi1-0/+4
2022-10-18attr: use consistent sgid stripping checksChristian Brauner1-1/+1
2022-08-08Merge tag 'pull-work.iov_iter-rebased' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-3/+2
2022-08-08iov_iter: advancing variants of iov_iter_get_pages{,_alloc}()Al Viro1-2/+1
2022-08-08new iov_iter flavour - ITER_UBUFAl Viro1-1/+1
2022-08-08Merge tag 'fuse-update-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-13/+26
2022-07-21fuse: fix deadlock between atomic O_TRUNC and page invalidationMiklos Szeredi1-13/+17
2022-07-21fuse: write inode in fuse_release()Miklos Szeredi1-0/+9
2022-06-10iocb: delay evaluation of IS_SYNC(...) until we want to check IOCB_DSYNCAl Viro1-1/+1
2022-05-09fuse: Convert fuse to read_folioMatthew Wilcox (Oracle)1-2/+3
2022-05-08fs: Remove flags parameter from aops->write_beginMatthew Wilcox (Oracle)1-2/+1
2022-05-08fs: Remove aop flags parameter from grab_cache_page_write_begin()Matthew Wilcox (Oracle)1-2/+2
2022-03-22Merge tag 'folio-5.18b' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds1-8/+8
2022-03-22fuse: remove reliance on bdi congestionNeilBrown1-0/+17
2022-03-15fs: Convert trivial uses of __set_page_dirty_nobuffers to filemap_dirty_folioMatthew Wilcox (Oracle)1-1/+1
2022-03-15fuse: Convert from launder_page to launder_folioMatthew Wilcox (Oracle)1-7/+7
2022-03-07fuse: fix pipe buffer lifetime for direct_ioMiklos Szeredi1-0/+1
2021-12-14fuse: enable per inode DAXJeffle Xu1-2/+2
2021-12-07fuse: Pass correct lend value to filemap_write_and_wait_range()Xie Yongji1-1/+1
2021-11-09Merge tag 'fuse-update-5.16' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-50/+56
2021-11-02Merge tag 'gfs2-v5.15-rc5-mmap-fault' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds1-1/+1
2021-10-28fuse: add FOPEN_NOFLUSHAmir Goldstein1-0/+3
2021-10-28fuse: only update necessary attributesMiklos Szeredi1-4/+5
2021-10-28fuse: cleanup code conditional on fc->writeback_cacheMiklos Szeredi1-13/+4
2021-10-28fuse: fix attr version comparison in fuse_read_update_size()Miklos Szeredi1-1/+1
2021-10-28fuse: always invalidate attributes after writesMiklos Szeredi1-14/+12
2021-10-28fuse: rename fuse_write_update_size()Miklos Szeredi1-6/+6
2021-10-28fuse: don't bump attr_version in cached writeMiklos Szeredi1-2/+5
2021-10-28fuse: selective attribute invalidationMiklos Szeredi1-8/+8
2021-10-25fs: get rid of the res2 iocb->ki_complete argumentJens Axboe1-1/+1
2021-10-22fuse: simplify __fuse_write_file_get()Miklos Szeredi1-5/+4
2021-10-22fuse: delete redundant codePeng Hao1-1/+0
2021-10-22fuse: write inode in fuse_vma_close() instead of fuse_release()Miklos Szeredi1-9/+6
2021-10-22fuse: make sure reclaim doesn't write the inodeMiklos Szeredi1-0/+15
2021-10-18iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readableAndreas Gruenbacher1-1/+1
2021-09-07Merge tag 'fuse-update-5.15' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-12/+33
2021-09-06fuse: remove unused arg in fuse_write_file_get()Miklos Szeredi1-9/+6
2021-09-06fuse: wait for writepages in syncfsMiklos Szeredi1-0/+21
2021-08-31fuse: flush extending writesMiklos Szeredi1-1/+1
2021-08-17fuse: truncate pagecache on atomic_o_truncMiklos Szeredi1-2/+5
2021-07-13fuse: Convert to using invalidate_lockJan Kara1-5/+5
2021-07-06Merge tag 'fuse-update-5.14' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-6/+8
2021-06-22virtiofs: Fix spelling mistakesZheng Yongjun1-1/+1
2021-06-22fuse: use DIV_ROUND_UP helper macro for calculationsWu Bo1-1/+1
2021-06-22fuse: allow fallocate(FALLOC_FL_ZERO_RANGE)Richard W.M. Jones1-4/+6
2021-06-10iov_iter: replace iov_iter_copy_from_user_atomic() with iterator-advancing va...Al Viro1-2/+1
2021-06-03fuse_fill_write_pages(): don't bother with iov_iter_single_seg_count()Al Viro1-1/+0
2021-04-30Merge tag 'fuse-update-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-27/+44
2021-04-14fuse: invalidate attrs when page writeback completesVivek Goyal1-0/+9
2021-04-14fuse: don't zero pages twiceMiklos Szeredi1-15/+6
2021-04-14fuse: fix write deadlockVivek Goyal1-12/+29
2021-04-12fuse: add internal open/release helpersMiklos Szeredi1-17/+33
2021-04-12fuse: unsigned open flagsMiklos Szeredi1-2/+3
2021-04-12fuse: move ioctl to separate source fileMiklos Szeredi1-380/+0
2020-12-10fuse: fix bad inodeMiklos Szeredi1-8/+11
2020-11-11fuse: add a flag FUSE_OPEN_KILL_SUIDGID for open() requestVivek Goyal1-0/+6
2020-11-11fuse: don't send ATTR_MODE to kill suid/sgid for handle_killpriv_v2Vivek Goyal1-1/+8
2020-11-11fuse: set FUSE_WRITE_KILL_SUIDGID in cached write pathVivek Goyal1-0/+2
2020-11-11fuse: rename FUSE_WRITE_KILL_PRIV to FUSE_WRITE_KILL_SUIDGIDMiklos Szeredi1-1/+1
2020-11-11fuse: launder page should wait for page writebackMiklos Szeredi1-0/+3
2020-10-19Merge tag 'fuse-update-5.10' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-106/+149
2020-09-18fuse: split fuse_mount off of fuse_connMax Reitz1-102/+106
2020-09-17fuse: fix the ->direct_IO() treatment of iov_iterAl Viro1-13/+12
2020-09-10virtiofs: serialize truncate/punch_hole and dax fault pathVivek Goyal1-3/+27
2020-09-10virtiofs: add DAX mmap supportStefan Hajnoczi1-0/+5
2020-09-10virtiofs: implement dax read/write operationsVivek Goyal1-2/+13
2020-08-04Merge tag 'uninit-macro-v5.9-rc1' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-1/+1
2020-07-16treewide: Remove uninitialized_var() usageKees Cook1-1/+1
2020-07-15fuse: Fix parameter for FS_IOC_{GET,SET}FLAGSChirantan Ekbote1-1/+11
2020-07-14fuse: don't ignore errors from fuse_writepages_fill()Vasily Averin1-2/+0
2020-07-14fuse: clean up condition for writepage sendingMiklos Szeredi1-18/+35
2020-07-14fuse: fix warning in tree_insert() and clean up writepage insertionMiklos Szeredi1-32/+30
2020-07-14fuse: move rb_erase() before tree_insert()Miklos Szeredi1-1/+2
2020-06-09Merge tag 'fuse-update-5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-28/+92
2020-06-02fuse: convert from readpages to readaheadMatthew Wilcox (Oracle)1-72/+28
2020-05-20fuse: copy_file_range should truncate cacheMiklos Szeredi1-0/+22
2020-05-20fuse: fix copy_file_range cache issuesMiklos Szeredi1-12/+8
2020-05-19fuse: optimize writepages searchMaxim Patlasov1-13/+49
2020-05-19fuse: always flush dirty data on close(2)Miklos Szeredi1-4/+4
2020-05-19fuse: invalidate inode attr in writeback cache modeEryu Guan1-1/+10
2020-04-20virtiofs: schedule blocking async replies in separate workerVivek Goyal1-0/+1
2020-02-06fuse: use true,false for bool variablezhengbin1-2/+2
2020-02-06fuse: don't overflow LLONG_MAX with end offsetMiklos Szeredi1-0/+12
2020-02-06fix up iter on short count in fuse_direct_io()Miklos Szeredi1-1/+4
2020-01-16fuse: fix fuse_send_readpages() in the syncronous read caseMiklos Szeredi1-1/+3
2019-11-27fuse: fix leak of fuse_io_privMiklos Szeredi1-1/+3
2019-11-12fuse: verify write returnMiklos Szeredi1-0/+2
2019-10-23fuse: redundant get_fuse_inode() calls in fuse_writepages_fill()Vasily Averin1-3/+1
2019-10-23fuse: truncate pending writes on O_TRUNCMiklos Szeredi1-3/+7
2019-09-24fuse: kmemcg account fs dataKhazhismel Kumykov1-2/+3
2019-09-24fuse: fix missing unlock_page in fuse_writepage()Vasily Averin1-0/+1
2019-09-10fuse: simplify request allocationMiklos Szeredi1-2/+2
2019-09-10fuse: convert release to simple apiMiklos Szeredi1-36/+39
2019-09-10fuse: convert writepages to simple apiMiklos Szeredi1-155/+206
2019-09-10fuse: convert readdir to simple apiMiklos Szeredi1-36/+0
2019-09-10fuse: convert readpages to simple apiMiklos Szeredi1-67/+72
2019-09-10fuse: convert direct_io to simple apiMiklos Szeredi1-95/+124
2019-09-10fuse: convert sync write to simple apiMiklos Szeredi1-44/+86
2019-09-10fuse: covert readpage to simple apiMiklos Szeredi1-32/+48
2019-09-10fuse: fuse_short_read(): don't take fuse_req as argumentMiklos Szeredi1-8/+9
2019-09-10fuse: convert ioctl to simple apiMiklos Szeredi1-54/+43
2019-09-10fuse: move page allocMiklos Szeredi1-0/+12
2019-09-10fuse: convert destroy to simple apiMiklos Szeredi1-1/+1
2019-09-10fuse: convert flush to simple apiMiklos Szeredi1-11/+9
2019-09-10fuse: simplify 'nofail' requestMiklos Szeredi1-1/+1
2019-09-10fuse: flatten 'struct fuse_args'Miklos Szeredi1-58/+58
2019-09-02fuse: cleanup fuse_wait_on_page_writebackMaxim Patlasov1-2/+1
2019-06-09fuse: copy_file_range needs to strip setuid bits and update timestampsAmir Goldstein1-0/+5
2019-06-09vfs: allow copy_file_range to copy across devicesAmir Goldstein1-1/+4
2019-06-09vfs: no fallback for ->copy_file_rangeDave Chinner1-3/+18
2019-05-28fuse: extract helper for range writebackMiklos Szeredi1-12/+14
2019-05-28fuse: fix copy_file_range() in the writeback caseMiklos Szeredi1-0/+12
2019-05-27fuse: add FUSE_WRITE_KILL_PRIVMiklos Szeredi1-2/+9
2019-05-27fuse: fallocate: fix return with locked inodeMiklos Szeredi1-1/+1
2019-04-24fuse: Add ioctl flag for x32 compat ioctlIan Abbott1-1/+6
2019-04-24fuse: document fuse_fsync_in.fsync_flagsAlan Somers1-1/+1
2019-04-24fuse: Add FOPEN_STREAM to use stream_open()Kirill Smelkov1-1/+3
2019-04-24fuse: honor RLIMIT_FSIZE in fuse_file_fallocateLiu Bo1-0/+7
2019-04-24fuse: fix writepages on 32bitMiklos Szeredi1-1/+1
2019-02-13fuse: cache readdir calls if filesystem opts out of opendirChad Austin1-1/+2
2019-02-13fuse: support clients that don't implement 'opendir'Chad Austin1-4/+7
2019-02-13fuse: lift bad inode checks into callersMiklos Szeredi1-16/+10
2019-02-13fuse: multiplex cached/direct_io file operationsMiklos Szeredi1-37/+34
2019-02-13fuse add copy_file_range to direct io fopsMiklos Szeredi1-0/+1
2019-02-13fuse: use iov_iter based generic splice helpersMiklos Szeredi1-1/+3
2019-02-13fuse: Switch to using async direct IO for FOPEN_DIRECT_IOMartin Raiber1-4/+26
2019-02-13fuse: use atomic64_t for khctrMiklos Szeredi1-3/+1
2019-02-13fuse: Introduce fi->lock to protect write related fieldsKirill Tkhai1-45/+48
2019-02-13fuse: Convert fc->attr_version into atomic64_tKirill Tkhai1-4/+4
2019-02-13fuse: Add fuse_inode argument to fuse_prepare_release()Kirill Tkhai1-4/+6
2019-02-13fuse: Replace page without copying in fuse_writepage_in_flight()Kirill Tkhai1-1/+1
2019-02-13fuse: fix leaked aux requestsMiklos Szeredi1-0/+10
2019-02-13fuse: only reuse auxiliary request in fuse_writepage_in_flight()Miklos Szeredi1-6/+7
2019-02-13fuse: clean up fuse_writepage_in_flight()Miklos Szeredi1-16/+24
2019-02-13fuse: extract fuse_find_writeback() helperMiklos Szeredi1-27/+25
2019-01-16fuse: decrement NR_WRITEBACK_TEMP on the right pageMiklos Szeredi1-1/+1
2018-12-11fuse: continue to send FUSE_RELEASEDIR when FUSE_OPEN returns ENOSYSChad Austin1-10/+11
2018-12-03fuse: fix fsync on directoryMiklos Szeredi1-21/+22
2018-11-09fuse: fix use-after-free in fuse_direct_IO()Lukas Czerner1-1/+3
2018-11-01Merge branch 'work.afs' of git://git.kernel.org/pub/scm/linux/kernel/git/viro...Linus Torvalds1-1/+1
2018-10-24iov_iter: Use accessor functionDavid Howells1-1/+1
2018-10-15fuse: only invalidate atime in direct readMiklos Szeredi1-1/+1
2018-10-01fuse: realloc page arrayMiklos Szeredi1-1/+7
2018-10-01fuse: add max_pages to init_outConstantine Shulyupin1-29/+30
2018-10-01fuse: reduce size of struct fuse_inodeMiklos Szeredi1-0/+8
2018-10-01fuse: allow using readdir cacheMiklos Szeredi1-0/+2
2018-09-28fuse: do not take fc->lock in fuse_request_send_background()Kirill Tkhai1-1/+3
2018-09-28fuse: introduce fc->bg_lockKirill Tkhai1-1/+1
2018-09-28fuse: add support for copy_file_range()Niels de Vos1-0/+77