diff options
Diffstat (limited to 'fs/notify/inotify/inotify_fsnotify.c')
| -rw-r--r-- | fs/notify/inotify/inotify_fsnotify.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/fs/notify/inotify/inotify_fsnotify.c b/fs/notify/inotify/inotify_fsnotify.c index 40dedb37a1f3..9ab6dde38a14 100644 --- a/fs/notify/inotify/inotify_fsnotify.c +++ b/fs/notify/inotify/inotify_fsnotify.c @@ -65,12 +65,11 @@ static int inotify_merge(struct list_head *list,  int inotify_handle_event(struct fsnotify_group *group,  			 struct inode *inode, -			 struct fsnotify_mark *inode_mark, -			 struct fsnotify_mark *vfsmount_mark,  			 u32 mask, const void *data, int data_type,  			 const unsigned char *file_name, u32 cookie,  			 struct fsnotify_iter_info *iter_info)  { +	struct fsnotify_mark *inode_mark = fsnotify_iter_inode_mark(iter_info);  	struct inotify_inode_mark *i_mark;  	struct inotify_event_info *event;  	struct fsnotify_event *fsn_event; @@ -78,7 +77,8 @@ int inotify_handle_event(struct fsnotify_group *group,  	int len = 0;  	int alloc_len = sizeof(struct inotify_event_info); -	BUG_ON(vfsmount_mark); +	if (WARN_ON(fsnotify_iter_vfsmount_mark(iter_info))) +		return 0;  	if ((inode_mark->mask & FS_EXCL_UNLINK) &&  	    (data_type == FSNOTIFY_EVENT_PATH)) { |