Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139196
b: refs/heads/master
c: e057e15
h: refs/heads/master
v: v3
  • Loading branch information
Tony Battersby authored and Linus Torvalds committed Apr 1, 2009
1 parent d33ce30 commit 245f69f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d1bc90dd5d037079f96b3327f943eb6ae8ef7491
refs/heads/master: e057e15ff66a620eda4c407486cbb8f8fbb7d878
19 changes: 7 additions & 12 deletions trunk/fs/eventpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ static int ep_scan_ready_list(struct eventpoll *ep,

/*
* We need to lock this because we could be hit by
* eventpoll_release_file() and epoll_ctl(EPOLL_CTL_DEL).
* eventpoll_release_file() and epoll_ctl().
*/
mutex_lock(&ep->mtx);

Expand Down Expand Up @@ -972,32 +972,27 @@ static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_even
{
int pwake = 0;
unsigned int revents;
unsigned long flags;

/*
* Set the new event interest mask before calling f_op->poll(), otherwise
* a potential race might occur. In fact if we do this operation inside
* the lock, an event might happen between the f_op->poll() call and the
* new event set registering.
* Set the new event interest mask before calling f_op->poll();
* otherwise we might miss an event that happens between the
* f_op->poll() call and the new event set registering.
*/
epi->event.events = event->events;
epi->event.data = event->data; /* protected by mtx */

/*
* Get current event bits. We can safely use the file* here because
* its usage count has been increased by the caller of this function.
*/
revents = epi->ffd.file->f_op->poll(epi->ffd.file, NULL);

spin_lock_irqsave(&ep->lock, flags);

/* Copy the data member from inside the lock */
epi->event.data = event->data;

/*
* If the item is "hot" and it is not registered inside the ready
* list, push it inside.
*/
if (revents & event->events) {
spin_lock_irq(&ep->lock);
if (!ep_is_linked(&epi->rdllink)) {
list_add_tail(&epi->rdllink, &ep->rdllist);

Expand All @@ -1007,8 +1002,8 @@ static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_even
if (waitqueue_active(&ep->poll_wait))
pwake++;
}
spin_unlock_irq(&ep->lock);
}
spin_unlock_irqrestore(&ep->lock, flags);

/* We have to call this outside the lock */
if (pwake)
Expand Down

0 comments on commit 245f69f

Please sign in to comment.