diff options
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r-- | mm/swapfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c index 42fe5653814a..c7a33717d079 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c @@ -2705,10 +2705,10 @@ static __poll_t swaps_poll(struct file *file, poll_table *wait) if (seq->poll_event != atomic_read(&proc_poll_event)) { seq->poll_event = atomic_read(&proc_poll_event); - return POLLIN | POLLRDNORM | POLLERR | POLLPRI; + return EPOLLIN | EPOLLRDNORM | EPOLLERR | EPOLLPRI; } - return POLLIN | POLLRDNORM; + return EPOLLIN | EPOLLRDNORM; } /* iterator */ |