forked from luck/tmp_suning_uos_patched
inotify: don't use idr_remove_all()
idr_destroy() can destroy idr by itself and idr_remove_all() is being deprecated. Drop its usage. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: John McCutchan <john@johnmccutchan.com> Cc: Robert Love <rlove@rlove.org> Cc: Eric Paris <eparis@parisplace.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d97bec801d
commit
644e1b90ef
|
@ -197,7 +197,6 @@ static void inotify_free_group_priv(struct fsnotify_group *group)
|
||||||
{
|
{
|
||||||
/* ideally the idr is empty and we won't hit the BUG in the callback */
|
/* ideally the idr is empty and we won't hit the BUG in the callback */
|
||||||
idr_for_each(&group->inotify_data.idr, idr_callback, group);
|
idr_for_each(&group->inotify_data.idr, idr_callback, group);
|
||||||
idr_remove_all(&group->inotify_data.idr);
|
|
||||||
idr_destroy(&group->inotify_data.idr);
|
idr_destroy(&group->inotify_data.idr);
|
||||||
atomic_dec(&group->inotify_data.user->inotify_devs);
|
atomic_dec(&group->inotify_data.user->inotify_devs);
|
||||||
free_uid(group->inotify_data.user);
|
free_uid(group->inotify_data.user);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user