diff options
Diffstat (limited to 'fs/eventpoll.c')
| -rw-r--r-- | fs/eventpoll.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 74598f67efe..1c8b5567080 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -1710,7 +1710,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_EPOLLWAKEUP)) +	if ((epds.events & EPOLLWAKEUP) && !capable(CAP_BLOCK_SUSPEND))  		epds.events &= ~EPOLLWAKEUP;  	/*  |