diff options
Diffstat (limited to 'fs/notify/fanotify/fanotify_user.c')
| -rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index d0d4bc4c4b70..c07eb3d655ea 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c @@ -239,15 +239,15 @@ out_close_fd:  }  /* intofiy userspace file descriptor functions */ -static unsigned int fanotify_poll(struct file *file, poll_table *wait) +static __poll_t fanotify_poll(struct file *file, poll_table *wait)  {  	struct fsnotify_group *group = file->private_data; -	int ret = 0; +	__poll_t ret = 0;  	poll_wait(file, &group->notification_waitq, wait);  	spin_lock(&group->notification_lock);  	if (!fsnotify_notify_queue_is_empty(group)) -		ret = POLLIN | POLLRDNORM; +		ret = EPOLLIN | EPOLLRDNORM;  	spin_unlock(&group->notification_lock);  	return ret; |