From: Eric Paris Date: Fri, 28 Aug 2009 16:50:47 +0000 (-0400) Subject: inotify: update the group mask on mark addition X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=750a8870fe4016ef3091fc97e084d58c613c2cc7;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git inotify: update the group mask on mark addition Seperating the addition and update of marks in inotify resulted in a regression in that inotify never gets events. The inotify group mask is always 0. This mask should be updated any time a new mark is added. Signed-off-by: Eric Paris --- diff --git a/fs/notify/inotify/inotify_user.c b/fs/notify/inotify/inotify_user.c index 6111670b2573..dcd2040d330c 100644 --- a/fs/notify/inotify/inotify_user.c +++ b/fs/notify/inotify/inotify_user.c @@ -591,6 +591,10 @@ retry: /* match the ref from fsnotify_init_markentry() */ fsnotify_put_mark(&tmp_ientry->fsn_entry); + /* if this mark added a new event update the group mask */ + if (mask & ~group->mask) + fsnotify_recalc_group_mask(group); + out_err: if (ret < 0) kmem_cache_free(inotify_inode_mark_cachep, tmp_ientry);