index
:
BMC/Intel-BMC/linux.git
dev
dev-4.10
dev-4.13
dev-4.17
dev-4.18
dev-4.19
dev-4.3
dev-4.4
dev-4.6
dev-4.7
dev-5.0
dev-5.1
dev-5.10-intel
dev-5.10.46-intel
dev-5.10.49-intel
dev-5.14-intel
dev-5.15-intel
dev-5.2
dev-5.3
dev-5.4
dev-5.7
dev-5.8
dev-5.8-intel
master
Intel OpenBMC Linux kernel source tree (mirror)
Andrey V.Kosteltsev
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
fs
/
eventpoll.c
Age
Commit message (
Expand
)
Author
Files
Lines
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-16
Merge branch 'work.epoll' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...
Linus Torvalds
1
-415
/
+302
2020-12-05
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-26
epoll: take epitem list out of struct file
Al Viro
1
-42
/
+126
2020-10-26
epoll: massage the check list insertion
Al Viro
1
-4
/
+4
2020-10-26
lift rcu_read_lock() into reverse_path_check()
Al Viro
1
-2
/
+2
2020-10-26
convert ->f_ep_links/->fllink to hlist
Al Viro
1
-9
/
+9
2020-10-26
ep_insert(): move creation of wakeup source past the fl_ep_links insertion
Al Viro
1
-11
/
+9
2020-10-26
fold ep_read_events_proc() into the only caller
Al Viro
1
-29
/
+20
2020-10-26
take the common part of ep_eventpoll_poll() and ep_item_poll() into helper
Al Viro
1
-30
/
+27
2020-10-26
ep_insert(): we only need tep->mtx around the insertion itself
Al Viro
1
-18
/
+10
2020-10-26
ep_insert(): don't open-code ep_remove() on failure exits
Al Viro
1
-37
/
+14
2020-10-26
lift locking/unlocking ep->mtx out of ep_{start,done}_scan()
Al Viro
1
-31
/
+26
2020-10-26
ep_send_events_proc(): fold into the caller
Al Viro
1
-40
/
+20
2020-10-26
lift the calls of ep_send_events_proc() into the callers
Al Viro
1
-28
/
+5
2020-10-26
lift the calls of ep_read_events_proc() into the callers
Al Viro
1
-10
/
+14
2020-10-26
ep_scan_ready_list(): prepare to splitup
Al Viro
1
-27
/
+36
2020-10-26
ep_loop_check_proc(): saner calling conventions
Al Viro
1
-22
/
+16
2020-10-26
get rid of ep_push_nested()
Al Viro
1
-25
/
+4
2020-10-26
ep_loop_check_proc(): lift pushing the cookie into callers
Al Viro
1
-6
/
+12
2020-10-26
clean reverse_path_check_proc() a bit
Al Viro
1
-17
/
+9
2020-10-26
reverse_path_check_proc(): don't bother with cookies
Al Viro
1
-2
/
+1
2020-10-26
reverse_path_check_proc(): sane arguments
Al Viro
1
-7
/
+5
2020-10-26
untangling ep_call_nested(): and there was much rejoicing
Al Viro
1
-32
/
+11
2020-10-26
untangling ep_call_nested(): move push/pop of cookie into the callbacks
Al Viro
1
-9
/
+9
2020-10-26
untangling ep_call_nested(): take pushing cookie into a helper
Al Viro
1
-9
/
+17
2020-10-26
untangling ep_call_nested(): it's all serialized on epmutex.
Al Viro
1
-69
/
+11
2020-10-26
untangling ep_call_nested(): get rid of useless arguments
Al Viro
1
-19
/
+12
2020-10-26
epoll: get rid of epitem->nwait
Al Viro
1
-26
/
+20
2020-10-26
epoll: switch epitem->pwqlist to single-linked list
Al Viro
1
-26
/
+25
2020-09-25
ep_create_wakeup_source(): dentry name can change under you...
Al Viro
1
-3
/
+4
2020-09-11
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-10
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-23
do_epoll_ctl(): clean the failure exits up a bit
Al Viro
1
-13
/
+6
2020-08-23
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-08
epoll: atomically remove wait entry on wake up
Roman Penyaev
1
-19
/
+24
[next]