diff options
Diffstat (limited to 'fs/notify')
| -rw-r--r-- | fs/notify/fanotify/fanotify.c | 1 | ||||
| -rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 3 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/fs/notify/fanotify/fanotify.c b/fs/notify/fanotify/fanotify.c index f35794b97e8..a5063602536 100644 --- a/fs/notify/fanotify/fanotify.c +++ b/fs/notify/fanotify/fanotify.c @@ -21,6 +21,7 @@ static bool should_merge(struct fsnotify_event *old, struct fsnotify_event *new)  			if ((old->path.mnt == new->path.mnt) &&  			    (old->path.dentry == new->path.dentry))  				return true; +			break;  		case (FSNOTIFY_EVENT_NONE):  			return true;  		default: diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 721d692fa8d..6fcaeb8c902 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c @@ -258,7 +258,8 @@ static ssize_t copy_event_to_user(struct fsnotify_group *group,  	if (ret)  		goto out_close_fd; -	fd_install(fd, f); +	if (fd != FAN_NOFD) +		fd_install(fd, f);  	return fanotify_event_metadata.event_len;  out_close_fd:  |