aboutsummaryrefslogtreecommitdiffstats
path: root/fs/eventpoll.c
AgeCommit message (Expand)AuthorFilesLines
2015-02-13epoll: optimize setting task running after blockingDavidlohr Bueso1-2/+2
2014-11-05fs: Convert show_fdinfo functions to voidJoe Perches1-8/+5
2014-09-10eventpoll: fix uninitialized variable in epoll_ctlNicolas Iooss1-1/+2
2014-06-16epoll: fix use-after-free in eventpoll_release_fileKonstantin Khlebnikov1-2/+2
2014-06-06fs: convert use of typedef ctl_table to struct ctl_tableJoe Perches1-1/+1
2014-01-02epoll: do not take the nested ep->mtx on EPOLL_CTL_DELJason Baron1-4/+0
2013-12-03epoll: drop EPOLLWAKEUP if PM_SLEEP is disabledAmit Pundir1-2/+1
2013-11-13Merge branch 'akpm' (patches from Andrew Morton)Linus Torvalds1-47/+98
2013-11-13Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-1/+1
2013-11-13epoll: do not take global 'epmutex' for simple topologiesJason Baron1-26/+69
2013-11-13epoll: optimize EPOLL_CTL_DEL using rcuJason Baron1-24/+32
2013-10-30Revert "epoll: use freezable blocking call"Rafael J. Wysocki1-3/+1
2013-10-24file->f_op is never NULL...Al Viro1-1/+1
2013-09-11epoll: add a reschedule point in ep_free()Eric Dumazet1-0/+2
2013-09-03switch epoll_ctl() to fdgetAl Viro1-16/+15
2013-07-03Merge branch 'akpm' (updates from Andrew Morton)Linus Torvalds1-6/+6
2013-07-03signals: eventpoll: do not use sigprocmask()Oleg Nesterov1-6/+6
2013-05-12epoll: use freezable blocking callColin Cross1-1/+3
2013-05-01Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-0/+47
2013-04-30epoll: cleanup: use RCU_INIT_POINTER when nullingEric Wong1-1/+1
2013-04-30epoll: cleanup: hoist out f_op->poll callsEric Wong1-10/+12
2013-04-30epoll: lock ep->mtx in ep_free to silence lockdepEric Wong1-0/+4
2013-04-30epoll: use RCU to protect wakeup_source in epitemEric Wong1-21/+71
2013-04-30epoll: trim epitem by one cache lineEric Wong1-1/+9
2013-03-03switch epoll_pwait to COMPAT_SYSCALL_DEFINEAl Viro1-0/+47
2013-01-02epoll: prevent missed events on EPOLL_CTL_MODEric Wong1-1/+21
2012-12-17fs, epoll: add procfs fdinfo helperCyrill Gorcunov1-0/+28
2012-11-09revert "epoll: support for disabling items, and a self-test app"Andrew Morton1-35/+3
2012-10-06epoll: support for disabling items, and a self-test appPaton J. Lewis1-3/+35
2012-09-26switch simple cases of fget_light to fdgetAl Viro1-15/+10
2012-09-26switch epoll_wait(2) to fget_light()Al Viro1-3/+3
2012-08-22eventpoll: use-after-possible-free in epoll_create1()Al Viro1-1/+1
2012-07-17PM: Rename CAP_EPOLLWAKEUP to CAP_BLOCK_SUSPENDMichael Kerrisk1-1/+1
2012-06-01HAVE_RESTORE_SIGMASK is defined on all architectures nowAl Viro1-4/+0
2012-05-22epoll: Fix user space breakage related to EPOLLWAKEUPRafael J. Wysocki1-1/+1
2012-05-05epoll: Add a flag, EPOLLWAKEUP, to prevent suspend while epoll events are readyArve Hjønnevåg1-3/+87
2012-04-25epoll: clear the tfile_check_list on -ELOOPJason Baron1-1/+3
2012-03-28Merge tag 'split-asm_system_h-for-linus-20120328' of git://git.kernel.org/pub...Linus Torvalds1-1/+0
2012-03-28Remove all #inclusions of asm/system.hDavid Howells1-1/+0
2012-03-23epoll: remove unneeded variable in reverse_path_check()Dan Carpenter1-2/+0
2012-03-23epoll: comment the funky #ifdefSteven Rostedt1-0/+25
2012-03-23poll: add poll_requested_events() and poll_does_not_wait() functionsHans Verkuil1-3/+15
2012-03-18Don't limit non-nested epoll pathsJason Baron1-0/+4
2012-02-24epoll: ep_unregister_pollwait() can use the freed pwq->wheadOleg Nesterov1-3/+27
2012-02-24epoll: introduce POLLFREE to flush ->signalfd_wqh before kfree()Oleg Nesterov1-0/+4
2012-01-12epoll: limit pathsJason Baron1-25/+209
2011-10-31epoll: fix spurious lockdep warningsNelson Elhage1-7/+18
2011-09-15Merge branch 'master' into for-nextJiri Kosina1-1/+1
2011-07-26atomic: use <linux/atomic.h>Arun Sharma1-1/+1
2011-07-26eventpoll: fix comment typo 'evenpoll'Paul Bolle1-1/+1
2011-03-31Fix common misspellingsLucas De Marchi1-4/+4
2011-03-22epoll: fix compiler warning and optimize the non-blocking pathShawn Bohrer1-5/+28
2011-03-22epoll: move ready event check into proper inlineDavide Libenzi1-3/+16
2011-03-18Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds1-6/+6
2011-02-25epoll: prevent creating circular epoll structuresDavide Libenzi1-0/+95
2011-02-17fs/eventpoll.c: fix spellingDaniel Baluta1-6/+6
2011-02-02epoll: epoll_wait() should not use timespec_add_ns()Eric Dumazet1-3/+13
2011-01-13epoll: convert max_user_watches to longRobin Holt1-8/+12
2010-10-27epoll: make epoll_wait() use the hrtimer range featureShawn Bohrer1-16/+19
2010-10-15llseek: automatically add .llseek fopArnd Bergmann1-1/+2
2010-05-11sched, wait: Use wrapper functionsChangli Gao1-2/+1
2009-12-22anonfd: Allow making anon files read-onlyRoland Dreier1-1/+1
2009-11-18sysctl: Drop & in front of every proc_handler.Eric W. Biederman1-1/+1
2009-11-12sysctl fs: Remove dead binary sysctl supportEric W. Biederman1-1/+1
2009-06-18epoll: fix nested calls supportDavide Libenzi1-9/+12
2009-05-12epoll: fix size check in epoll_create()Davide Libenzi1-1/+1
2009-04-01epoll keyed wakeups: teach epoll about hints coming with the wakeup keyDavide Libenzi1-2/+29
2009-04-01epoll: use real type instead of void *Tony Battersby1-1/+1
2009-04-01epoll: clean up ep_modifyTony Battersby1-12/+7
2009-04-01epoll: remove unnecessary xchgTony Battersby1-14/+8
2009-04-01epoll: remember the event if epoll_wait returns -EFAULTTony Battersby1-1/+3
2009-04-01epoll: don't use current in irq contextTony Battersby1-7/+8
2009-04-01epoll: remove debugging codeDavide Libenzi1-67/+11
2009-04-01epoll: fix epoll's own poll (update)Davide Libenzi1-53/+57
2009-04-01epoll: fix epoll's own pollDavide Libenzi1-207/+304
2009-03-16Rename struct file->f_ep_lockJonathan Corbet1-5/+7
2009-01-29epoll: drop max_user_instances and rely only on max_user_watchesDavide Libenzi1-18/+4
2009-01-14[CVE-2009-0029] System call wrappers part 23Heiko Carstens1-9/+9
2008-12-01epoll: introduce resource usage limitsDavide Libenzi1-8/+77
2008-10-26epoll: avoid double-inserts in case of EFAULTDavide Libenzi1-2/+9
2008-10-16epoll: drop unnecessary testDavide Libenzi1-6/+3
2008-08-12fs/eventpoll.c: fix sys_epoll_create1() commentAndrew Morton1-4/+1
2008-07-24flag parameters add-on: remove epoll_create size paramUlrich Drepper1-8/+10
2008-07-24flag parameters: check magic constantsUlrich Drepper1-0/+3
2008-07-24flag parameters: epoll_createUlrich Drepper1-2/+11
2008-07-24flag parameters: anon_inode_getfd extensionUlrich Drepper1-1/+1
2008-05-01[PATCH] sanitize anon_inode_getfd()Al Viro1-15/+8
2008-04-30signals: use HAVE_SET_RESTORE_SIGMASKRoland McGrath1-2/+2
2008-04-30signals: add set_restore_sigmaskRoland McGrath1-2/+1
2008-04-29epoll: avoid kmemcheck warningDavide Libenzi1-24/+3
2008-02-05lockdep: annotate epollPeter Zijlstra1-1/+1
2007-12-06Use wake_up_locked() in eventpollMatthew Wilcox1-7/+4
2007-10-19fs/eventpoll.c: use list_for_each_entry() instead of list_for_each()Matthias Kaehlcke1-3/+2
2007-10-18sparse pointer use of zero as nullStephen Hemminger1-1/+1
2007-07-20mm: Remove slab destructors from kmem_cache_create().Paul Mundt1-2/+2
2007-05-15epoll: move kfree inside ep_freeDavide Libenzi1-5/+2
2007-05-15epoll: fix some commentsDavide Libenzi1-21/+27
2007-05-15epoll locks changes and cleanupsDavide Libenzi1-161/+73
2007-05-15fix epoll single pass code and add wait-exclusive flagDavide Libenzi1-156/+166
2007-05-11epoll cleanups: epoll remove static pre-declarations and akpm-ize the codeDavide Libenzi1-548/+486
2007-05-11epoll cleanups: epoll no moduleDavide Libenzi1-13/+1
2007-05-11epoll: use anonymous inodesDavide Libenzi1-169/+3
2007-05-08Introduce a handy list_first_entry macroPavel Emelianov1-3/+3
2007-05-08header cleaning: don't include smp_lock.h when not usedRandy Dunlap1-1/+0
2007-05-08epoll: optimizations and cleanupsDavide Libenzi1-147/+86
2006-12-08[PATCH] VFS: change struct file to use struct pathJosef "Jeff" Sipek1-2/+2
2006-12-07[PATCH] slab: remove kmem_cache_tChristoph Lameter1-2/+2
2006-12-07[PATCH] slab: remove SLAB_KERNELChristoph Lameter1-2/+2
2006-10-11[PATCH] epoll_pwait()Davide Libenzi1-3/+53
2006-10-03[PATCH] fs/eventpoll: error handling micro-cleanupJeff Garzik1-2/+3
2006-09-27[PATCH] inode-diet: Eliminate i_blksize from the inode structureTheodore Ts'o1-1/+0
2006-08-27[PATCH] eventpoll.c compile fixMasoud Asgharifard Sharbiani1-2/+2
2006-07-03[PATCH] sched: cleanup, remove task_t, convert to struct task_structIngo Molnar1-2/+2
2006-06-25[PATCH] epoll: use unlocked wqueue operationsDavide Libenzi1-7/+10
2006-06-23[PATCH] VFS: Permit filesystem to override root dentry on mountDavid Howells1-6/+7
2006-04-21[RBTREE] Update eventpoll.c to use rb_parent() accessor macro.David Woodhouse1-3/+3
2006-04-11[PATCH] uniform POLLRDHUP handling between epoll and poll/selectDavide Libenzi1-2/+2
2006-03-28[PATCH] Make most file operations structs in fs/ constArjan van de Ven1-1/+1
2006-03-26[PATCH] Use __read_mostly on some hot fs variablesEric Dumazet1-3/+3
2006-03-25[PATCH] POLLRDHUP/EPOLLRDHUP handling for half-closed devices notificationsDavide Libenzi1-2/+2
2006-03-23[PATCH] get_empty_filp tweaks, inline epoll_init_file()Benjamin LaHaise1-9/+0
2006-03-23[PATCH] sem2mutex: eventpollArjan van de Ven1-11/+12
2005-09-28[PATCH] epoll: handle timeout overflowDavide Libenzi1-2/+6
2005-09-17[PATCH] epoll: fix delayed initialization bugDavide Libenzi1-20/+20
2005-06-23[PATCH] Remove eventpoll macro obfuscationPekka Enberg1-85/+110
2005-05-05[PATCH] make some things staticAdrian Bunk1-1/+1
2005-04-16Linux-2.6.12-rc2v2.6.12-rc2Linus Torvalds1-0/+1639