aboutsummaryrefslogtreecommitdiff
path: root/fs/splice.c
AgeCommit message (Expand)AuthorFilesLines
2020-10-24Merge tag 'io_uring-5.10-2020-10-24' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-13/+50
2020-10-22splice: change exported internal do_splice() helper to take kernel offsetGravatar Jens Axboe 1-13/+50
2020-10-22Merge branch 'work.set_fs' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-116/+14
2020-10-12Merge branch 'work.iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-44/+13
2020-10-06splice: teach splice pipe reading about empty pipe buffersGravatar Linus Torvalds 1-0/+20
2020-10-03fs: remove compat_sys_vmspliceGravatar Christoph Hellwig 1-44/+13
2020-10-03iov_iter: transparently handle compat iovecs in import_iovecGravatar Christoph Hellwig 1-1/+1
2020-10-01pipe: remove pipe_wait() and fix wakeup race with spliceGravatar Linus Torvalds 1-4/+4
2020-09-08fs: don't allow splice read/write without explicit opsGravatar Christoph Hellwig 1-116/+14
2020-06-13Merge tag 'notifications-20200601' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 1-6/+6
2020-06-03Merge branch 'work.splice' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-52/+29
2020-06-02Merge tag 'for-5.8/io_uring-2020-06-01' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-2/+1
2020-05-20pipe: Fix pipe_full() test in opipe_prep().Gravatar Tetsuo Handa 1-1/+1
2020-05-20fs: rename pipe_buf ->steal to ->try_stealGravatar Christoph Hellwig 1-20/+20
2020-05-20fs: make the pipe_buf_operations ->confirm operation optionalGravatar Christoph Hellwig 1-3/+0
2020-05-20fs: make the pipe_buf_operations ->steal operation optionalGravatar Christoph Hellwig 1-7/+0
2020-05-20pipe: merge anon_pipe_buf*_opsGravatar Christoph Hellwig 1-7/+5
2020-05-20fs: simplify do_splice_fromGravatar Christoph Hellwig 1-8/+2
2020-05-20fs: simplify do_splice_toGravatar Christoph Hellwig 1-7/+2
2020-05-19pipe: Add general notification queue supportGravatar David Howells 1-6/+6
2020-05-17splice: export do_tee()Gravatar Pavel Begunkov 1-2/+1
2020-05-07splice: move f_mode checks to do_{splice,tee}()Gravatar Pavel Begunkov 1-27/+18
2020-03-02splice: make do_splice publicGravatar Pavel Begunkov 1-3/+3
2020-02-08pipe: use exclusive waits when reading or writingGravatar Linus Torvalds 1-4/+4
2019-12-07pipe: remove 'waiting_writers' merging logicGravatar Linus Torvalds 1-17/+4
2019-12-06pipe: fix incorrect caching of pipe state over pipe_wait()Gravatar Linus Torvalds 1-4/+6
2019-11-30Merge tag 'notifications-pipe-prep-20191115' of git://git.kernel.org/pub/scm/...Gravatar Linus Torvalds 1-77/+120
2019-11-15pipe: Allow pipes to have kernel-reserved slotsGravatar David Howells 1-13/+13
2019-10-31pipe: Use head and tail pointers for the ring, not cursor and lengthGravatar David Howells 1-73/+117
2019-10-15splice: only read in as much information as there is pipe buffer spaceGravatar Darrick J. Wong 1-3/+11
2019-05-31uio: make import_iovec()/compat_import_iovec() return bytes on successGravatar Jens Axboe 1-4/+4
2019-05-21treewide: Add SPDX license identifier for missed filesGravatar Thomas Gleixner 1-0/+1
2019-04-26Merge tag 'trace-v5.1-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/r...Gravatar Linus Torvalds 1-2/+2
2019-04-26tracing: Fix buffer_ref pipe opsGravatar Jann Horn 1-2/+2
2019-04-14Merge branch 'page-refs' (page ref overflow)Gravatar Linus Torvalds 1-2/+10
2019-04-14fs: prevent page refcount overflow in pipe_buf_getGravatar Matthew Wilcox 1-2/+10
2019-03-12Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-4/+4
2019-03-04fs: Make splice() and tee() take into account O_NONBLOCK flag on pipesGravatar Slavomir Kaslev 1-0/+12
2019-03-04get rid of legacy 'get_ds()' functionGravatar Linus Torvalds 1-1/+1
2019-02-01pipe: stop using ->can_mergeGravatar Jann Horn 1-4/+0
2019-02-01splice: don't merge into linked buffersGravatar Jann Horn 1-0/+4
2018-12-04splice: don't read more than available pipe spaceGravatar Darrick J. Wong 1-1/+6
2018-10-24iov_iter: Separate type from direction and use accessor functionsGravatar David Howells 1-4/+3
2018-06-16Merge branch 'work.compat' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-69/+75
2018-06-12treewide: kmalloc() -> kmalloc_array()Gravatar Kees Cook 1-3/+4
2018-06-11vmsplice(): lift importing iovec into vmsplice(2) and compat counterpartGravatar Al Viro 1-69/+75
2018-04-02fs: add do_vmsplice() helper; remove in-kernel call to syscallGravatar Dominik Brodowski 1-3/+9
2017-10-25locking/atomics: COCCINELLE/treewide: Convert trivial ACCESS_ONCE() patterns ...Gravatar Mark Rutland 1-1/+1
2017-09-04fs: move kernel_write to fs/read_write.cGravatar Christoph Hellwig 1-16/+0
2017-06-29fs: implement vfs_iter_write using do_iter_writeGravatar Christoph Hellwig 1-1/+1