epoll: clean up ep_modify
ep_modify() doesn't need to set event.data from within the ep->lock spinlock as the comment suggests. The only place event.data is used is ep_send_events_proc(), and this is protected by ep->mtx instead of ep->lock. Also update the comment for mutex_lock() at the top of ep_scan_ready_list(), which mentions epoll_ctl(EPOLL_CTL_DEL) but not epoll_ctl(EPOLL_CTL_MOD). ep_modify() can also use spin_lock_irq() instead of spin_lock_irqsave(). Signed-off-by: Tony Battersby <tonyb@cybernetics.com> Acked-by: Davide Libenzi <davidel@xmailserver.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d1bc90dd5d
commit
e057e15ff6
@ -435,7 +435,7 @@ static int ep_scan_ready_list(struct eventpoll *ep,
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to lock this because we could be hit by
|
* 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);
|
mutex_lock(&ep->mtx);
|
||||||
|
|
||||||
@ -972,15 +972,14 @@ static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_even
|
|||||||
{
|
{
|
||||||
int pwake = 0;
|
int pwake = 0;
|
||||||
unsigned int revents;
|
unsigned int revents;
|
||||||
unsigned long flags;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the new event interest mask before calling f_op->poll(), otherwise
|
* Set the new event interest mask before calling f_op->poll();
|
||||||
* a potential race might occur. In fact if we do this operation inside
|
* otherwise we might miss an event that happens between the
|
||||||
* the lock, an event might happen between the f_op->poll() call and the
|
* f_op->poll() call and the new event set registering.
|
||||||
* new event set registering.
|
|
||||||
*/
|
*/
|
||||||
epi->event.events = event->events;
|
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
|
* Get current event bits. We can safely use the file* here because
|
||||||
@ -988,16 +987,12 @@ static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_even
|
|||||||
*/
|
*/
|
||||||
revents = epi->ffd.file->f_op->poll(epi->ffd.file, NULL);
|
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
|
* If the item is "hot" and it is not registered inside the ready
|
||||||
* list, push it inside.
|
* list, push it inside.
|
||||||
*/
|
*/
|
||||||
if (revents & event->events) {
|
if (revents & event->events) {
|
||||||
|
spin_lock_irq(&ep->lock);
|
||||||
if (!ep_is_linked(&epi->rdllink)) {
|
if (!ep_is_linked(&epi->rdllink)) {
|
||||||
list_add_tail(&epi->rdllink, &ep->rdllist);
|
list_add_tail(&epi->rdllink, &ep->rdllist);
|
||||||
|
|
||||||
@ -1007,8 +1002,8 @@ static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_even
|
|||||||
if (waitqueue_active(&ep->poll_wait))
|
if (waitqueue_active(&ep->poll_wait))
|
||||||
pwake++;
|
pwake++;
|
||||||
}
|
}
|
||||||
|
spin_unlock_irq(&ep->lock);
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&ep->lock, flags);
|
|
||||||
|
|
||||||
/* We have to call this outside the lock */
|
/* We have to call this outside the lock */
|
||||||
if (pwake)
|
if (pwake)
|
||||||
|
Loading…
Reference in New Issue
Block a user