1
0
Fork 0

inotify: drop user watch count when a watch is removed

The inotify rewrite forgot to drop the inotify watch use cound when a watch
was removed.  This means that a single inotify fd can only ever register a
maximum of /proc/sys/fs/max_user_watches even if some of those had been
freed.

Signed-off-by: Eric Paris <eparis@redhat.com>
hifive-unleashed-5.1
Eric Paris 2009-07-07 10:28:23 -04:00
parent aea1f7964a
commit 5549f7cdf8
1 changed files with 2 additions and 0 deletions

View File

@ -404,6 +404,8 @@ skip_send_ignore:
/* removed from idr, drop that reference */
fsnotify_put_mark(entry);
atomic_dec(&group->inotify_data.user->inotify_watches);
}
/* ding dong the mark is dead */