aboutsummaryrefslogtreecommitdiff
path: root/fs/open.c
AgeCommit message (Expand)AuthorFilesLines
2014-04-01mark struct file that had write access grabbed by open()Gravatar Al Viro 1-5/+4
2014-04-01fold __get_file_write_access() into its only callerGravatar Al Viro 1-19/+6
2014-04-01get rid of DEBUG_WRITECOUNTGravatar Al Viro 1-8/+0
2014-04-01don't bother with {get,put}_write_access() on non-regular filesGravatar Al Viro 1-19/+7
2014-03-13fs: Introduce FALLOC_FL_ZERO_RANGE flag for fallocateGravatar Lukas Czerner 1-1/+6
2014-03-10vfs: atomic f_pos accesses as per POSIXGravatar Linus Torvalds 1-0/+4
2014-02-24fs: Add new flag(FALLOC_FL_COLLAPSE_RANGE) for fallocateGravatar Namjae Jeon 1-3/+21
2013-11-09locks: break delegations on any attribute modificationGravatar J. Bruce Fields 1-4/+18
2013-11-09get rid of s_files and files_lockGravatar Al Viro 1-2/+0
2013-10-24file->f_op is never NULL...Gravatar Al Viro 1-2/+6
2013-09-16vfs: improve i_op->atomic_open() documentationGravatar Miklos Szeredi 1-3/+18
2013-09-07Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi...Gravatar Linus Torvalds 1-1/+1
2013-09-03switch fchmod() to fdgetGravatar Al Viro 1-6/+5
2013-08-30userns: Kill nsown_capable it makes the wrong thing easyGravatar Eric W. Biederman 1-1/+1
2013-08-05fs: Fix file mode for O_TMPFILEGravatar Andy Lutomirski 1-1/+1
2013-07-20allow O_TMPFILE to work with O_WRONLYGravatar Al Viro 1-0/+2
2013-07-13Safer ABI for O_TMPFILEGravatar Al Viro 1-2/+2
2013-06-29[O_TMPFILE] it's still short a few helpers, but infrastructure should be OK n...Gravatar Al Viro 1-5/+9
2013-06-29allow build_open_flags() to return an errorGravatar Al Viro 1-21/+28
2013-03-03make SYSCALL_DEFINE<n>-generated wrappers do asmlinkage_protectGravatar Al Viro 1-20/+4
2013-03-03teach SYSCALL_DEFINE<n> how to deal with long long/unsigned long longGravatar Al Viro 1-25/+3
2013-03-03Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-1/+2
2013-03-02Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-0/+15
2013-03-01cache the value of file_inode() in struct fileGravatar Al Viro 1-1/+2
2013-02-26get_empty_filp()/alloc_file() leave both ->f_pos and ->f_version zeroGravatar Al Viro 1-1/+0
2013-02-25fix compat truncate/ftruncateGravatar Al Viro 1-0/+15
2013-02-22propagate error from get_empty_filp() to its callersGravatar Al Viro 1-14/+13
2013-02-22new helper: file_inode(file)Gravatar Al Viro 1-3/+3
2012-12-20vfs: make fchownat retry once on ESTALE errorsGravatar Jeff Layton 1-0/+5
2012-12-20vfs: make fchmodat retry once on ESTALE errorsGravatar Jeff Layton 1-2/+7
2012-12-20vfs: have chroot retry once on ESTALE errorGravatar Jeff Layton 1-2/+7
2012-12-20vfs: have chdir retry lookup and call once on ESTALE errorGravatar Jeff Layton 1-2/+7
2012-12-20vfs: have faccessat retry once on an ESTALE errorGravatar Jeff Layton 1-2/+7
2012-12-20vfs: have do_sys_truncate retry once on an ESTALE errorGravatar Jeff Layton 1-1/+7
2012-12-20VFS: Make more complete truncate operation available to CacheFilesGravatar David Howells 1-23/+27
2012-11-19vfs: Allow chroot if you have CAP_SYS_CHROOT in your user namespaceGravatar Eric W. Biederman 1-1/+1
2012-10-12vfs: make path_openat take a struct filename pointerGravatar Jeff Layton 1-4/+21
2012-10-12vfs: define struct filename and have getname() return itGravatar Jeff Layton 1-2/+2
2012-10-12audit: set the name_len in audit_inode for parent lookupsGravatar Jeff Layton 1-2/+2
2012-10-02Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-100/+30
2012-10-02Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi...Gravatar Linus Torvalds 1-1/+1
2012-09-26switch simple cases of fget_light to fdgetGravatar Al Viro 1-34/+30
2012-09-26switch fchmod(2) to fget_light()Gravatar Al Viro 1-7/+5
2012-09-26switch fallocate(2) to fget_light()Gravatar Al Viro 1-3/+3
2012-09-26switch ftruncate(2) to fget_lightGravatar Al Viro 1-5/+5
2012-09-26don't leak O_CLOEXEC into ->f_flagsGravatar Al Viro 1-1/+1
2012-09-26take descriptor-related part of close() to file.cGravatar Al Viro 1-21/+1
2012-09-26move put_unused_fd() and fd_install() to fs/file.cGravatar Al Viro 1-44/+0
2012-09-21userns: Teach security_path_chown to take kuids and kgidsGravatar Eric W. Biederman 1-1/+1
2012-08-15vfs: canonicalize create mode in build_open_flags()Gravatar Miklos Szeredi 1-3/+4