Skip to content

Commit

Permalink
switch epoll_wait(2) to fget_light()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Sep 27, 2012
1 parent ecd1881 commit 5e196a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/eventpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd,
SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events,
int, maxevents, int, timeout)
{
int error;
int error, fput_needed;
struct file *file;
struct eventpoll *ep;

Expand All @@ -1825,7 +1825,7 @@ SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events,

/* Get the "struct file *" for the eventpoll file */
error = -EBADF;
file = fget(epfd);
file = fget_light(epfd, &fput_needed);
if (!file)
goto error_return;

Expand All @@ -1847,7 +1847,7 @@ SYSCALL_DEFINE4(epoll_wait, int, epfd, struct epoll_event __user *, events,
error = ep_poll(ep, events, maxevents, timeout);

error_fput:
fput(file);
fput_light(file, fput_needed);
error_return:

return error;
Expand Down

0 comments on commit 5e196a9

Please sign in to comment.