aboutsummaryrefslogtreecommitdiff
path: root/fs/file.c
AgeCommit message (Expand)AuthorFilesLines
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Gravatar Ingo Molnar 1-1/+1
2016-09-27fs/file: more unsigned file descriptorsGravatar Alexey Dobriyan 1-17/+17
2016-05-02give readdir(2)/getdents(2)/etc. uniform exclusion with lseek()Gravatar Al Viro 1-0/+5
2016-01-14kmemcg: account certain kmem allocations to memcgGravatar Vladimir Davydov 1-3/+4
2015-12-06fs/file.c: __const_max is actually __const_min :-)Gravatar Rasmus Villemoes 1-3/+3
2015-11-05vfs: clear remainder of 'full_fds_bits' in dup_fd()Gravatar Eric Biggers 1-32/+32
2015-10-31vfs: conditionally clear close-on-exec flagGravatar Linus Torvalds 1-1/+2
2015-10-31vfs: Fix pathological performance case for __alloc_fd()Gravatar Linus Torvalds 1-4/+35
2015-07-01fs/file.c: __fget() and dup2() atomicity rulesGravatar Eric Dumazet 1-2/+8
2015-07-01fs/file.c: don't acquire files->file_lock in fd_install()Gravatar Eric Dumazet 1-19/+48
2015-04-17mm: rcu-protected get_mm_exe_file()Gravatar Konstantin Khlebnikov 1-2/+1
2014-12-10fs/file.c: replace get_unused_fd() with get_unused_fd_flags(0)Gravatar Yann Droneaud 1-1/+1
2014-10-13Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 1-1/+1
2014-10-09missing annotation in fs/file.cGravatar Al Viro 1-0/+1
2014-09-07rcu: Provide cond_resched_rcu_qs() to force quiescent states in long loopsGravatar Paul E. McKenney 1-1/+1
2014-05-06fs/file.c: don't open-code kvfree()Gravatar Al Viro 1-8/+3
2014-04-12Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-7/+4
2014-04-01get rid of files_defer_init()Gravatar Al Viro 1-7/+4
2014-03-31Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 1-1/+1
2014-03-23vfs: Don't let __fdget_pos() get FMODE_PATH filesGravatar Eric Biggers 1-15/+4
2014-03-10get rid of fget_light()Gravatar Al Viro 1-13/+43
2014-02-17fs: Substitute rcu_access_pointer() for rcu_dereference_raw()Gravatar Paul E. McKenney 1-1/+1
2014-02-10fs/file.c:fdtable: avoid triggering OOMs from alloc_fdmemGravatar Eric W. Biederman 1-1/+1
2014-01-25fs: __fget_light() can use __fget() in slow pathGravatar Oleg Nesterov 1-11/+3
2014-01-25fs: factor out common code in fget_light() and fget_raw_light()Gravatar Oleg Nesterov 1-24/+9
2014-01-25fs: factor out common code in fget() and fget_raw()Gravatar Oleg Nesterov 1-17/+8
2014-01-25change close_files() to use rcu_dereference_raw(files->fdt)Gravatar Oleg Nesterov 1-17/+9
2014-01-25introduce __fcheck_files() to fix rcu_dereference_check_fdtable(), kill rcu_m...Gravatar Oleg Nesterov 1-2/+2
2013-05-01don't bother with deferred freeing of fdtablesGravatar Al Viro 1-66/+2
2013-02-19locking: Various static lock initializer fixesGravatar Thomas Gleixner 1-1/+1
2013-01-03misc: remove __dev* attributes.Gravatar Greg Kroah-Hartman 1-1/+1
2012-12-12Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-6/+0
2012-11-29fix off-by-one in argument passed by iterate_fd() to callbacksGravatar Al Viro 1-6/+8
2012-11-28kill daemonize()Gravatar Al Viro 1-6/+0
2012-11-18Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-1/+0
2012-11-12kill bogus BUG_ON() in do_close_on_exec()Gravatar Al Viro 1-1/+0
2012-10-30Return the right error value when dup[23]() newfd argument is too largeGravatar Al Viro 1-2/+2
2012-10-09dup3: Return an error when oldfd == newfd.Gravatar Richard W.M. Jones 1-0/+3
2012-09-26export fget_lightGravatar Al Viro 1-0/+1
2012-09-26new helper: daemonize_descriptors()Gravatar Al Viro 1-0/+6
2012-09-26new helper: iterate_fd()Gravatar Al Viro 1-0/+21
2012-09-26make expand_files() and alloc_fd() staticGravatar Al Viro 1-2/+2
2012-09-26take __{set,clear}_{open_fd,close_on_exec}() into fs/file.cGravatar Al Viro 1-0/+20
2012-09-26new helper: replace_fd()Gravatar Al Viro 1-29/+62
2012-09-26take purely descriptor-related stuff from fcntl.c to file.cGravatar Al Viro 1-0/+132
2012-09-26take close-on-exec logics to fs/file.c, clean it up a bitGravatar Al Viro 1-0/+37
2012-09-26take descriptor-related part of close() to file.cGravatar Al Viro 1-0/+26
2012-09-26take fget() and friends to fs/file.cGravatar Al Viro 1-0/+106
2012-09-26expose a low-level variant of fd_install() for binderGravatar Al Viro 1-2/+14
2012-09-26move put_unused_fd() and fd_install() to fs/file.cGravatar Al Viro 1-0/+44