aboutsummaryrefslogtreecommitdiff
path: root/fs/read_write.c
AgeCommit message (Expand)AuthorFilesLines
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
2016-03-04vfs: pass a flags argument to vfs_readv/vfs_writevGravatar Christoph Hellwig 1-18/+26
2016-02-27fs: return -EOPNOTSUPP if clone is not supportedGravatar Christoph Hellwig 1-2/+4
2016-02-20fs: allow no_seek_end_llseek to actually seekGravatar Wouter van Kesteren 1-1/+2
2016-01-22vfs: abort dedupe loop if fatal signals are pendingGravatar Darrick J. Wong 1-0/+3
2016-01-22wrappers for ->i_mutex accessGravatar Al Viro 1-2/+2
2016-01-12Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-0/+39
2016-01-01vfs: hoist the btrfs deduplication ioctl to the vfsGravatar Darrick J. Wong 1-0/+100
2016-01-01vfs: wire up compat ioctl for CLONE/CLONE_RANGEGravatar Darrick J. Wong 1-1/+1
2015-12-23new helpers: no_seek_end_llseek{,_size}()Gravatar Al Viro 1-0/+39
2015-12-07vfs: pull btrfs clone API to vfs layerGravatar Christoph Hellwig 1-0/+72
2015-12-07locks: new locks_mandatory_area calling conventionGravatar Christoph Hellwig 1-3/+2
2015-12-01vfs: Add vfs_copy_file_range() support for pagecache copiesGravatar Anna Schumaker 1-4/+9
2015-12-01vfs: add copy_file_range syscall and vfs helperGravatar Zach Brown 1-0/+120
2015-04-11new_sync_write(): discard ->ki_pos unless the return value is positiveGravatar Al Viro 1-1/+2
2015-04-11->aio_read and ->aio_write removedGravatar Al Viro 1-29/+0
2015-04-11kill do_sync_read/do_sync_writeGravatar Al Viro 1-38/+0
2015-04-11make new_sync_{read,write}() staticGravatar Al Viro 1-7/+2
2015-04-11export __vfs_read()Gravatar Al Viro 1-8/+5
2015-04-11new helper: __vfs_write()Gravatar Al Viro 1-12/+16
2015-04-11switch {compat_,}do_readv_writev() to {compat_,}import_iovec()Gravatar Al Viro 1-16/+16
2015-04-11lift iov_iter into {compat_,}do_readv_writev()Gravatar Al Viro 1-31/+23
2015-03-25fs: move struct kiocb to fs.hGravatar Christoph Hellwig 1-1/+0
2015-03-13fs: don't allow to complete sync iocbs through aio_completeGravatar Christoph Hellwig 1-18/+8
2015-03-12fs: remove ki_nbytesGravatar Christoph Hellwig 1-8/+0