diff options
Diffstat (limited to 'fs/eventpoll.c')
| -rw-r--r-- | fs/eventpoll.c | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 79b65c3b9e87..af903128891c 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -1852,8 +1852,7 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd,  		goto error_tgt_fput;  	/* Check if EPOLLWAKEUP is allowed */ -	if ((epds.events & EPOLLWAKEUP) && !capable(CAP_BLOCK_SUSPEND)) -		epds.events &= ~EPOLLWAKEUP; +	ep_take_care_of_epollwakeup(&epds);  	/*  	 * We have to check that the file structure underneath the file descriptor @@ -1908,10 +1907,6 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd,  			}  		}  	} -	if (op == EPOLL_CTL_DEL && is_file_epoll(tf.file)) { -		tep = tf.file->private_data; -		mutex_lock_nested(&tep->mtx, 1); -	}  	/*  	 * Try to lookup the file inside our RB tree, Since we grabbed "mtx"  | 
