diff options
Diffstat (limited to 'fs/notify/group.c')
| -rw-r--r-- | fs/notify/group.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/notify/group.c b/fs/notify/group.c index bd2625bd88b..ad199598045 100644 --- a/fs/notify/group.c +++ b/fs/notify/group.c @@ -55,6 +55,13 @@ void fsnotify_destroy_group(struct fsnotify_group *group)  	/* clear the notification queue of all events */  	fsnotify_flush_notify(group); +	/* +	 * Destroy overflow event (we cannot use fsnotify_destroy_event() as +	 * that deliberately ignores overflow events. +	 */ +	if (group->overflow_event) +		group->ops->free_event(group->overflow_event); +  	fsnotify_put_group(group);  }  | 
