| Age | Commit message (Expand) | Author | Files | Lines |
| 2023-07-26 | epoll: simplify ep_alloc() | Zhen Lei | 1 | -10/+2 |
| 2023-06-26 | Merge tag 'v6.5/vfs.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vf... | Linus Torvalds | 1 | -1/+1 |
| 2023-06-12 | epoll: ep_autoremove_wake_function should use list_del_init_careful | Benjamin Segall | 1 | -1/+5 |
| 2023-05-15 | fs: use correct __poll_t type | Min-Hua Chen | 1 | -1/+1 |
| 2023-04-27 | Merge tag 'mm-nonmm-stable-2023-04-27-16-01' of git://git.kernel.org/pub/scm/... | Linus Torvalds | 1 | -82/+133 |
| 2023-04-25 | Merge tag 'asm-generic-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/... | Linus Torvalds | 1 | -0/+13 |
| 2023-04-18 | epoll: rename global epmutex | Davidlohr Bueso | 1 | -11/+11 |
| 2023-04-08 | epoll: use refcount to reduce ep_mutex contention | Paolo Abeni | 1 | -72/+123 |
| 2023-03-13 | eventpoll: align comment with nested epoll limitation | Changcheng Liu | 1 | -2/+2 |
| 2023-03-10 | Move ep_take_care_of_epollwakeup() to fs/eventpoll.c | Palmer Dabbelt | 1 | -0/+13 |
| 2022-11-21 | eventpoll: add EPOLL_URING_WAKE poll wakeup flag | Jens Axboe | 1 | -8/+10 |
| 2022-09-11 | epoll: use try_cmpxchg in list_add_tail_lockless | Uros Bizjak | 1 | -1/+1 |
| 2022-07-17 | epoll: autoremove wakers even more aggressively | Benjamin Segall | 1 | -0/+22 |
| 2022-01-22 | eventpoll: simplify sysctl declaration with register_sysctl() | Xiaoming Ni | 1 | -1/+9 |
| 2021-09-09 | Merge tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm | Linus Torvalds | 1 | -3/+2 |
| 2021-09-08 | fs/epoll: use a per-cpu counter for user's watches count | Nicholas Piggin | 1 | -8/+10 |
| 2021-08-20 | ARM: 9108/1: oabi-compat: rework epoll_wait/epoll_pwait emulation | Arnd Bergmann | 1 | -3/+2 |
| 2021-05-06 | fs/epoll: restore waking from ep_done_scan() | Davidlohr Bueso | 1 | -0/+6 |
| 2021-03-06 | fs: eventpoll: fix comments & kernel-doc notation | Randy Dunlap | 1 | -26/+26 |
| 2021-02-16 | kcmp: Support selection of SYS_kcmp without CHECKPOINT_RESTORE | Chris Wilson | 1 | -2/+2 |
| 2020-12-19 | epoll: add syscall epoll_pwait2 | Willem de Bruijn | 1 | -14/+73 |
| 2020-12-19 | epoll: convert internal api to timespec64 | Willem de Bruijn | 1 | -20/+37 |
| 2020-12-19 | epoll: eliminate unnecessary lock for zero timeout | Soheil Hassas Yeganeh | 1 | -13/+12 |
| 2020-12-19 | epoll: replace gotos with a proper loop | Soheil Hassas Yeganeh | 1 | -21/+21 |
| 2020-12-19 | epoll: pull all code between fetch_events and send_event into the loop | Soheil Hassas Yeganeh | 1 | -20/+21 |
| 2020-12-19 | epoll: simplify and optimize busy loop logic | Soheil Hassas Yeganeh | 1 | -23/+17 |
| 2020-12-19 | epoll: move eavail next to the list_empty_careful check | Soheil Hassas Yeganeh | 1 | -2/+1 |
| 2020-12-19 | epoll: pull fatal signal checks into ep_send_events() | Soheil Hassas Yeganeh | 1 | -9/+8 |
| 2020-12-19 | epoll: simplify signal handling | Soheil Hassas Yeganeh | 1 | -10/+10 |
| 2020-12-19 | epoll: check for events when removing a timed out thread from the wait queue | Soheil Hassas Yeganeh | 1 | -9/+16 |
| 2020-12-15 | Merge branch 'work.epoll' of git://git.kernel.org/pub/scm/linux/kernel/git/vi... | Linus Torvalds | 1 | -415/+302 |
| 2020-12-04 | net: Remove the err argument from sock_from_file | Florent Revest | 1 | -2/+1 |
| 2020-12-01 | net: Add SO_BUSY_POLL_BUDGET socket option | Björn Töpel | 1 | -1/+2 |
| 2020-12-01 | net: Introduce preferred busy-polling | Björn Töpel | 1 | -1/+1 |
| 2020-10-25 | epoll: take epitem list out of struct file | Al Viro | 1 | -42/+126 |
| 2020-10-25 | epoll: massage the check list insertion | Al Viro | 1 | -4/+4 |
| 2020-10-25 | lift rcu_read_lock() into reverse_path_check() | Al Viro | 1 | -2/+2 |
| 2020-10-25 | convert ->f_ep_links/->fllink to hlist | Al Viro | 1 | -9/+9 |
| 2020-10-25 | ep_insert(): move creation of wakeup source past the fl_ep_links insertion | Al Viro | 1 | -11/+9 |
| 2020-10-25 | fold ep_read_events_proc() into the only caller | Al Viro | 1 | -29/+20 |
| 2020-10-25 | take the common part of ep_eventpoll_poll() and ep_item_poll() into helper | Al Viro | 1 | -30/+27 |
| 2020-10-25 | ep_insert(): we only need tep->mtx around the insertion itself | Al Viro | 1 | -18/+10 |
| 2020-10-25 | ep_insert(): don't open-code ep_remove() on failure exits | Al Viro | 1 | -37/+14 |
| 2020-10-25 | lift locking/unlocking ep->mtx out of ep_{start,done}_scan() | Al Viro | 1 | -31/+26 |
| 2020-10-25 | ep_send_events_proc(): fold into the caller | Al Viro | 1 | -40/+20 |
| 2020-10-25 | lift the calls of ep_send_events_proc() into the callers | Al Viro | 1 | -28/+5 |
| 2020-10-25 | lift the calls of ep_read_events_proc() into the callers | Al Viro | 1 | -10/+14 |
| 2020-10-25 | ep_scan_ready_list(): prepare to splitup | Al Viro | 1 | -27/+36 |
| 2020-10-25 | ep_loop_check_proc(): saner calling conventions | Al Viro | 1 | -22/+16 |
| 2020-10-25 | get rid of ep_push_nested() | Al Viro | 1 | -25/+4 |
| 2020-10-25 | ep_loop_check_proc(): lift pushing the cookie into callers | Al Viro | 1 | -6/+12 |
| 2020-10-25 | clean reverse_path_check_proc() a bit | Al Viro | 1 | -17/+9 |
| 2020-10-25 | reverse_path_check_proc(): don't bother with cookies | Al Viro | 1 | -2/+1 |
| 2020-10-25 | reverse_path_check_proc(): sane arguments | Al Viro | 1 | -7/+5 |
| 2020-10-25 | untangling ep_call_nested(): and there was much rejoicing | Al Viro | 1 | -32/+11 |
| 2020-10-25 | untangling ep_call_nested(): move push/pop of cookie into the callbacks | Al Viro | 1 | -9/+9 |
| 2020-10-25 | untangling ep_call_nested(): take pushing cookie into a helper | Al Viro | 1 | -9/+17 |
| 2020-10-25 | untangling ep_call_nested(): it's all serialized on epmutex. | Al Viro | 1 | -69/+11 |
| 2020-10-25 | untangling ep_call_nested(): get rid of useless arguments | Al Viro | 1 | -19/+12 |
| 2020-10-25 | epoll: get rid of epitem->nwait | Al Viro | 1 | -26/+20 |
| 2020-10-25 | epoll: switch epitem->pwqlist to single-linked list | Al Viro | 1 | -26/+25 |
| 2020-09-24 | ep_create_wakeup_source(): dentry name can change under you... | Al Viro | 1 | -3/+4 |
| 2020-09-10 | epoll: EPOLL_CTL_ADD: close the race in decision to take fast path | Al Viro | 1 | -0/+1 |
| 2020-09-10 | epoll: replace ->visited/visited_list with generation count | Al Viro | 1 | -19/+8 |
| 2020-09-09 | epoll: do not insert into poll queues until all sanity checks are done | Al Viro | 1 | -19/+18 |
| 2020-09-02 | fix regression in "epoll: Keep a reference on files added to the check list" | Al Viro | 1 | -3/+3 |
| 2020-08-22 | do_epoll_ctl(): clean the failure exits up a bit | Al Viro | 1 | -13/+6 |
| 2020-08-22 | epoll: Keep a reference on files added to the check list | Marc Zyngier | 1 | -2/+9 |
| 2020-05-14 | epoll: call final ep_events_available() check under the lock | Roman Penyaev | 1 | -20/+28 |
| 2020-05-07 | epoll: atomically remove wait entry on wake up | Roman Penyaev | 1 | -19/+24 |
| 2020-05-07 | eventpoll: fix missing wakeup for ovflist in ep_poll_callback | Khazhismel Kumykov | 1 | -9/+9 |
| 2020-04-07 | fs/epoll: make nesting accounting safe for -rt kernel | Jason Baron | 1 | -21/+43 |
| 2020-03-21 | epoll: fix possible lost wakeup on epoll_ctl() path | Roman Penyaev | 1 | -4/+4 |
| 2020-01-29 | eventpoll: support non-blocking do_epoll_ctl() calls | Jens Axboe | 1 | -13/+33 |
| 2020-01-29 | eventpoll: abstract out epoll_ctl() handler | Jens Axboe | 1 | -20/+25 |
| 2019-12-04 | fs/epoll: remove unnecessary wakeups of nested epoll | Heiher | 1 | -16/+0 |
| 2019-12-04 | epoll: simplify ep_poll_safewake() for CONFIG_DEBUG_LOCK_ALLOC | Jason Baron | 1 | -23/+13 |
| 2019-08-21 | PM / wakeup: Show wakeup sources stats in sysfs | Tri Vo | 1 | -2/+2 |
| 2019-07-18 | proc/sysctl: add shared variables for range check | Matteo Croce | 1 | -2/+2 |
| 2019-07-16 | signal: simplify set_user_sigmask/restore_user_sigmask | Oleg Nesterov | 1 | -8/+4 |
| 2019-06-29 | signal: remove the wrong signal_pending() check in restore_user_sigmask() | Oleg Nesterov | 1 | -2/+2 |
| 2019-05-30 | treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152 | Thomas Gleixner | 1 | -6/+1 |
| 2019-03-07 | epoll: use rwlock in order to reduce ep_poll_callback() contention | Roman Penyaev | 1 | -36/+122 |
| 2019-03-07 | epoll: unify awaking of wakeup source on ep_poll_callback() path | Roman Penyaev | 1 | -8/+1 |
| 2019-03-07 | epoll: make sure all elements in ready list are in FIFO order | Roman Penyaev | 1 | -1/+5 |
| 2019-01-05 | Merge branch 'akpm' (patches from Andrew) | Linus Torvalds | 1 | -100/+118 |
| 2019-01-04 | fs/epoll: deal with wait_queue only once | Davidlohr Bueso | 1 | -11/+18 |
| 2019-01-04 | fs/epoll: rename check_events label to send_events | Davidlohr Bueso | 1 | -3/+3 |
| 2019-01-04 | fs/epoll: avoid barrier after an epoll_wait(2) timeout | Davidlohr Bueso | 1 | -2/+6 |
| 2019-01-04 | fs/epoll: reduce the scope of wq lock in epoll_wait() | Davidlohr Bueso | 1 | -54/+60 |
| 2019-01-04 | fs/epoll: robustify ep->mtx held checks | Davidlohr Bueso | 1 | -0/+2 |
| 2019-01-04 | fs/epoll: drop ovflist branch prediction | Davidlohr Bueso | 1 | -1/+1 |
| 2019-01-04 | fs/epoll: simplify ep_send_events_proc() ready-list loop | Davidlohr Bueso | 1 | -36/+37 |
| 2019-01-04 | fs/epoll: remove max_nests argument from ep_call_nested() | Davidlohr Bueso | 1 | -8/+6 |
| 2019-01-03 | Remove 'type' argument from access_ok() function | Linus Torvalds | 1 | -1/+1 |
| 2018-12-06 | signal: Add restore_user_sigmask() | Deepa Dinamani | 1 | -28/+2 |
| 2018-12-06 | signal: Add set_user_sigmask() | Deepa Dinamani | 1 | -16/+6 |
| 2018-08-22 | fs/eventpoll.c: simplify ep_is_linked() callers | Davidlohr Bueso | 1 | -8/+8 |
| 2018-08-22 | fs/eventpoll.c: loosen irq safety in ep_poll() | Davidlohr Bueso | 1 | -6/+7 |
| 2018-08-22 | fs/eventpoll.c: simply CONFIG_NET_RX_BUSY_POLL ifdefery | Davidlohr Bueso | 1 | -7/+16 |
| 2018-08-22 | s/epoll: robustify irq safety with lockdep_assert_irqs_enabled() | Davidlohr Bueso | 1 | -0/+8 |
| 2018-08-22 | fs/epoll: loosen irq safety in epoll_insert() and epoll_remove() | Davidlohr Bueso | 1 | -8/+6 |
| 2018-08-22 | fs/epoll: loosen irq safety in ep_scan_ready_list() | Davidlohr Bueso | 1 | -5/+4 |
| 2018-08-22 | epoll: use the waitqueue lock to protect ep->wq | Christoph Hellwig | 1 | -36/+29 |
| 2018-06-28 | Revert changes to convert to ->poll_mask() and aio IOCB_CMD_POLL | Linus Torvalds | 1 | -10/+5 |
| 2018-06-14 | eventpoll: switch to ->poll_mask | Ben Noordhuis | 1 | -5/+10 |
| 2018-05-26 | fs: add new vfs_poll and file_can_poll helpers | Christoph Hellwig | 1 | -3/+2 |
| 2018-04-02 | fs: add do_epoll_*() helpers; remove internal calls to sys_epoll_*() | Dominik Brodowski | 1 | -6/+17 |
| 2018-02-11 | vfs: do bulk POLL* -> EPOLL* replacement | Linus Torvalds | 1 | -11/+11 |
| 2018-02-01 | annotate ep_scan_ready_list() | Al Viro | 1 | -11/+13 |
| 2018-02-01 | ep_send_events_proc(): return result via esed->res | Al Viro | 1 | -7/+10 |
| 2017-11-28 | eventpoll: no need to mask the result of epi_item_poll() again | Al Viro | 1 | -7/+2 |
| 2017-11-28 | eventpoll: constify struct epoll_event pointers | Al Viro | 1 | -3/+5 |
| 2017-11-27 | fs: annotate ->poll() instances | Al Viro | 1 | -1/+1 |
| 2017-11-27 | annotate poll-related wait keys | Al Viro | 1 | -4/+5 |
| 2017-11-17 | Merge branch 'akpm' (patches from Andrew) | Linus Torvalds | 1 | -76/+55 |
| 2017-11-17 | epoll: remove ep_call_nested() from ep_eventpoll_poll() | Jason Baron | 1 | -45/+35 |
| 2017-11-17 | epoll: avoid calling ep_call_nested() from ep_poll_safewake() | Jason Baron | 1 | -29/+18 |
| 2017-11-17 | epoll: account epitem and eppoll_entry to kmemcg | Shakeel Butt | 1 | -2/+2 |
| 2017-09-19 | get_compat_sigset() | Al Viro | 1 | -3/+1 |
| 2017-09-08 | fs/epoll: use faster rb_first_cached() | Davidlohr Bueso | 1 | -14/+16 |
| 2017-09-01 | epoll: fix race between ep_poll_callback(POLLFREE) and ep_free()/ep_remove() | Oleg Nesterov | 1 | -16/+26 |
| 2017-07-12 | kcmp: fs/epoll: wrap kcmp code with CONFIG_CHECKPOINT_RESTORE | Cyrill Gorcunov | 1 | -0/+2 |
| 2017-07-12 | kcmp: add KCMP_EPOLL_TFD mode to compare epoll target files | Cyrill Gorcunov | 1 | -0/+42 |
| 2017-07-12 | procfs: fdinfo: extend information about epoll target files | Cyrill Gorcunov | 1 | -2/+6 |
| 2017-07-10 | fs, epoll: short circuit fetching events if thread has been killed | David Rientjes | 1 | -0/+10 |
| 2017-06-20 | sched/wait: Disambiguate wq_entry->task_list and wq_head->task_list naming | Ingo Molnar | 1 | -1/+1 |
| 2017-06-20 | sched/wait: Rename wait_queue_t => wait_queue_entry_t | Ingo Molnar | 1 | -5/+5 |
| 2017-03-24 | epoll: Add busy poll support to epoll with socket fds. | Sridhar Samudrala | 1 | -0/+93 |
| 2017-03-02 | sched/headers: Prepare to move signal wakeup & sigpending methods from <linux... | Ingo Molnar | 1 | -1/+1 |
| 2017-02-27 | fs,eventpoll: don't test for bitfield with stack value | Cyrill Gorcunov | 1 | -1/+1 |
| 2016-12-24 | Replace <asm/uaccess.h> with <linux/uaccess.h> globally | Linus Torvalds | 1 | -1/+1 |
| 2016-05-19 | fs: poll/select/recvmmsg: use timespec64 for timeout events | Deepa Dinamani | 1 | -6/+6 |
| 2016-03-17 | timer: convert timer_slack_ns from unsigned long to u64 | John Stultz | 1 | -1/+1 |
| 2016-02-05 | epoll: restrict EPOLLEXCLUSIVE to POLLIN and POLLOUT | Jason Baron | 1 | -6/+32 |
| 2016-01-20 | epoll: add EPOLLEXCLUSIVE flag | Jason Baron | 1 | -3/+21 |
| 2015-02-13 | epoll: optimize setting task running after blocking | Davidlohr Bueso | 1 | -2/+2 |
| 2014-11-05 | fs: Convert show_fdinfo functions to void | Joe Perches | 1 | -8/+5 |
| 2014-09-10 | eventpoll: fix uninitialized variable in epoll_ctl | Nicolas Iooss | 1 | -1/+2 |
| 2014-06-16 | epoll: fix use-after-free in eventpoll_release_file | Konstantin Khlebnikov | 1 | -2/+2 |
| 2014-06-06 | fs: convert use of typedef ctl_table to struct ctl_table | Joe Perches | 1 | -1/+1 |
| 2014-01-02 | epoll: do not take the nested ep->mtx on EPOLL_CTL_DEL | Jason Baron | 1 | -4/+0 |
| 2013-12-03 | epoll: drop EPOLLWAKEUP if PM_SLEEP is disabled | Amit Pundir | 1 | -2/+1 |
| 2013-11-13 | Merge branch 'akpm' (patches from Andrew Morton) | Linus Torvalds | 1 | -47/+98 |
| 2013-11-13 | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir... | Linus Torvalds | 1 | -1/+1 |
| 2013-11-13 | epoll: do not take global 'epmutex' for simple topologies | Jason Baron | 1 | -26/+69 |
| 2013-11-13 | epoll: optimize EPOLL_CTL_DEL using rcu | Jason Baron | 1 | -24/+32 |
| 2013-10-30 | Revert "epoll: use freezable blocking call" | Rafael J. Wysocki | 1 | -3/+1 |
| 2013-10-24 | file->f_op is never NULL... | Al Viro | 1 | -1/+1 |
| 2013-09-11 | epoll: add a reschedule point in ep_free() | Eric Dumazet | 1 | -0/+2 |
| 2013-09-03 | switch epoll_ctl() to fdget | Al Viro | 1 | -16/+15 |
| 2013-07-03 | Merge branch 'akpm' (updates from Andrew Morton) | Linus Torvalds | 1 | -6/+6 |
| 2013-07-03 | signals: eventpoll: do not use sigprocmask() | Oleg Nesterov | 1 | -6/+6 |
| 2013-05-12 | epoll: use freezable blocking call | Colin Cross | 1 | -1/+3 |
| 2013-05-01 | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir... | Linus Torvalds | 1 | -0/+47 |
| 2013-04-30 | epoll: cleanup: use RCU_INIT_POINTER when nulling | Eric Wong | 1 | -1/+1 |
| 2013-04-30 | epoll: cleanup: hoist out f_op->poll calls | Eric Wong | 1 | -10/+12 |
| 2013-04-30 | epoll: lock ep->mtx in ep_free to silence lockdep | Eric Wong | 1 | -0/+4 |
| 2013-04-30 | epoll: use RCU to protect wakeup_source in epitem | Eric Wong | 1 | -21/+71 |
| 2013-04-30 | epoll: trim epitem by one cache line | Eric Wong | 1 | -1/+9 |
| 2013-03-03 | switch epoll_pwait to COMPAT_SYSCALL_DEFINE | Al Viro | 1 | -0/+47 |
| 2013-01-02 | epoll: prevent missed events on EPOLL_CTL_MOD | Eric Wong | 1 | -1/+21 |
| 2012-12-17 | fs, epoll: add procfs fdinfo helper | Cyrill Gorcunov | 1 | -0/+28 |
| 2012-11-09 | revert "epoll: support for disabling items, and a self-test app" | Andrew Morton | 1 | -35/+3 |
| 2012-10-06 | epoll: support for disabling items, and a self-test app | Paton J. Lewis | 1 | -3/+35 |
| 2012-09-26 | switch simple cases of fget_light to fdget | Al Viro | 1 | -15/+10 |
| 2012-09-26 | switch epoll_wait(2) to fget_light() | Al Viro | 1 | -3/+3 |
| 2012-08-22 | eventpoll: use-after-possible-free in epoll_create1() | Al Viro | 1 | -1/+1 |
| 2012-07-17 | PM: Rename CAP_EPOLLWAKEUP to CAP_BLOCK_SUSPEND | Michael Kerrisk | 1 | -1/+1 |
| 2012-06-01 | HAVE_RESTORE_SIGMASK is defined on all architectures now | Al Viro | 1 | -4/+0 |
| 2012-05-22 | epoll: Fix user space breakage related to EPOLLWAKEUP | Rafael J. Wysocki | 1 | -1/+1 |
| 2012-05-05 | epoll: Add a flag, EPOLLWAKEUP, to prevent suspend while epoll events are ready | Arve Hjønnevåg | 1 | -3/+87 |
| 2012-04-25 | epoll: clear the tfile_check_list on -ELOOP | Jason Baron | 1 | -1/+3 |
| 2012-03-28 | Merge tag 'split-asm_system_h-for-linus-20120328' of git://git.kernel.org/pub... | Linus Torvalds | 1 | -1/+0 |
| 2012-03-28 | Remove all #inclusions of asm/system.h | David Howells | 1 | -1/+0 |
| 2012-03-23 | epoll: remove unneeded variable in reverse_path_check() | Dan Carpenter | 1 | -2/+0 |
| 2012-03-23 | epoll: comment the funky #ifdef | Steven Rostedt | 1 | -0/+25 |
| 2012-03-23 | poll: add poll_requested_events() and poll_does_not_wait() functions | Hans Verkuil | 1 | -3/+15 |
| 2012-03-18 | Don't limit non-nested epoll paths | Jason Baron | 1 | -0/+4 |
| 2012-02-24 | epoll: ep_unregister_pollwait() can use the freed pwq->whead | Oleg Nesterov | 1 | -3/+27 |
| 2012-02-24 | epoll: introduce POLLFREE to flush ->signalfd_wqh before kfree() | Oleg Nesterov | 1 | -0/+4 |
| 2012-01-12 | epoll: limit paths | Jason Baron | 1 | -25/+209 |
| 2011-10-31 | epoll: fix spurious lockdep warnings | Nelson Elhage | 1 | -7/+18 |
| 2011-09-15 | Merge branch 'master' into for-next | Jiri Kosina | 1 | -1/+1 |
| 2011-07-26 | atomic: use <linux/atomic.h> | Arun Sharma | 1 | -1/+1 |
| 2011-07-26 | eventpoll: fix comment typo 'evenpoll' | Paul Bolle | 1 | -1/+1 |
| 2011-03-31 | Fix common misspellings | Lucas De Marchi | 1 | -4/+4 |
| 2011-03-22 | epoll: fix compiler warning and optimize the non-blocking path | Shawn Bohrer | 1 | -5/+28 |
| 2011-03-22 | epoll: move ready event check into proper inline | Davide Libenzi | 1 | -3/+16 |
| 2011-03-18 | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik... | Linus Torvalds | 1 | -6/+6 |
| 2011-02-25 | epoll: prevent creating circular epoll structures | Davide Libenzi | 1 | -0/+95 |
| 2011-02-17 | fs/eventpoll.c: fix spelling | Daniel Baluta | 1 | -6/+6 |
| 2011-02-02 | epoll: epoll_wait() should not use timespec_add_ns() | Eric Dumazet | 1 | -3/+13 |
| 2011-01-13 | epoll: convert max_user_watches to long | Robin Holt | 1 | -8/+12 |
| 2010-10-27 | epoll: make epoll_wait() use the hrtimer range feature | Shawn Bohrer | 1 | -16/+19 |
| 2010-10-15 | llseek: automatically add .llseek fop | Arnd Bergmann | 1 | -1/+2 |
| 2010-05-11 | sched, wait: Use wrapper functions | Changli Gao | 1 | -2/+1 |
| 2009-12-22 | anonfd: Allow making anon files read-only | Roland Dreier | 1 | -1/+1 |
| 2009-11-18 | sysctl: Drop & in front of every proc_handler. | Eric W. Biederman | 1 | -1/+1 |
| 2009-11-12 | sysctl fs: Remove dead binary sysctl support | Eric W. Biederman | 1 | -1/+1 |