aboutsummaryrefslogtreecommitdiff
path: root/fs/read_write.c
AgeCommit message (Expand)AuthorFilesLines
2017-09-26vfs: Return -ENXIO for negative SEEK_HOLE / SEEK_DATA offsetsGravatar Andreas Gruenbacher 1-2/+2
2017-09-14Merge branch 'work.set_fs' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-11/+32
2017-09-04fs: unexport vfs_readv and vfs_writevGravatar Christoph Hellwig 1-3/+1
2017-09-04fs: unexport vfs_read and vfs_writeGravatar Christoph Hellwig 1-4/+0
2017-09-04fs: unexport __vfs_read/__vfs_writeGravatar Christoph Hellwig 1-2/+0
2017-09-04fs: make the buf argument to __kernel_write a void pointerGravatar Christoph Hellwig 1-1/+1
2017-09-04fs: fix kernel_write prototypeGravatar Christoph Hellwig 1-3/+3
2017-09-04fs: fix kernel_read prototypeGravatar Christoph Hellwig 1-5/+3
2017-09-04fs: move kernel_read to fs/read_write.cGravatar Christoph Hellwig 1-0/+16
2017-09-04fs: move kernel_write to fs/read_write.cGravatar Christoph Hellwig 1-1/+16
2017-08-31annotate RWF_... flagsGravatar Christoph Hellwig 1-25/+25
2017-07-07Merge branch 'work.read_write' of git://git.kernel.org/pub/scm/linux/kernel/g...Gravatar Linus Torvalds 1-2/+4
2017-07-06move file_{start,end}_write() out of do_iter_write()Gravatar Al Viro 1-2/+4
2017-07-05Merge branch 'work.read_write' of git://git.kernel.org/pub/scm/linux/kernel/g...Gravatar Linus Torvalds 1-129/+91
2017-07-03Merge branch 'for-4.13/block' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-9/+3
2017-06-29fs: implement vfs_iter_write using do_iter_writeGravatar Christoph Hellwig 1-20/+9
2017-06-29fs: implement vfs_iter_read using do_iter_readGravatar Christoph Hellwig 1-20/+9
2017-06-29fs: move more code into do_iter_read/do_iter_writeGravatar Christoph Hellwig 1-45/+28
2017-06-29fs: remove __do_readv_writevGravatar Christoph Hellwig 1-24/+36
2017-06-29fs: remove do_compat_readv_writevGravatar Christoph Hellwig 1-26/+16
2017-06-29fs: remove do_readv_writevGravatar Christoph Hellwig 1-22/+21
2017-06-20fs: Separate out kiocb flags setup based on RWF_* flagsGravatar Goldwyn Rodrigues 1-9/+3
2017-06-16fs: pass on flags in compat_writevGravatar Christoph Hellwig 1-1/+1
2017-04-17move compat_rw_copy_check_uvector() over to fs/read_write.cGravatar Al Viro 1-0/+75
2017-03-03Merge branch 'WIP.sched-core-for-linus' of git://git.kernel.org/pub/scm/linux...Gravatar Linus Torvalds 1-1/+2
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Gravatar Ingo Molnar 1-1/+2
2017-02-20vfs: use helpers for calling f_op->{read,write}_iter()Gravatar Miklos Szeredi 1-6/+6
2017-02-20vfs: pass type instead of fn to do_{loop,iter}_readv_writev()Gravatar Miklos Szeredi 1-19/+18
2017-02-20vfs: extract common parts of {compat_,}do_readv_writev()Gravatar Miklos Szeredi 1-51/+29
2017-02-07vfs: wrap write f_ops with file_{start,end}_write()Gravatar Amir Goldstein 1-2/+2
2017-02-07vfs: deny copy_file_range() for non regular filesGravatar Amir Goldstein 1-0/+5
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyGravatar Linus Torvalds 1-1/+1
2016-12-22vfs: fix isize/pos/len checks for reflink & dedupeGravatar Darrick J. Wong 1-7/+11
2016-12-17Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-5/+226
2016-12-16vfs: fix vfs_clone_file_range() for overlayfs filesGravatar Amir Goldstein 1-5/+5
2016-12-16vfs: call vfs_clone_file_range() under freeze protectionGravatar Amir Goldstein 1-3/+0
2016-12-16vfs: allow vfs_clone_file_range() across mount pointsGravatar Amir Goldstein 1-2/+6
2016-12-16vfs: no mnt_want_write_file() in vfs_{copy,clone}_file_range()Gravatar Miklos Szeredi 1-8/+4
2016-12-09vfs: refactor clone/dedupe_file_range common functionsGravatar Darrick J. Wong 1-0/+204
2016-12-09fs: try to clone files first in vfs_copy_file_rangeGravatar Christoph Hellwig 1-5/+22
2016-10-14iov_iter: kernel-doc import_iovec() and rw_copy_check_uvector()Gravatar Vegard Nossum 1-0/+29
2016-07-15x86/syscalls: Add compat_sys_preadv64v2/compat_sys_pwritev64v2Gravatar H.J. Lu 1-0/+18
2016-05-18Merge branch 'work.iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-19/+14
2016-05-17Merge branch 'work.preadv2' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-1/+5
2016-05-02give readdir(2)/getdents(2)/etc. uniform exclusion with lseek()Gravatar Al Viro 1-12/+0
2016-05-01fs: add RWF_DSYNC aand RWF_SYNCGravatar Christoph Hellwig 1-1/+5
2016-04-03rw_verify_area(): saner calling conventionsGravatar Al Viro 1-19/+14
2016-03-18Merge branches 'work.lookups', 'work.misc' and 'work.preadv2' into for-nextGravatar Al Viro 1-48/+149
2016-03-04vfs: add the RWF_HIPRI flag for preadv2/pwritev2Gravatar Christoph Hellwig 1-2/+4
2016-03-04vfs: vfs: Define new syscalls preadv2,pwritev2Gravatar Milosz Tanski 1-35/+126