Lines Matching refs:event
42 struct fsnotify_event *event) in fanotify_merge() argument
48 pr_debug("%s: list=%p event=%p\n", __func__, list, event); in fanotify_merge()
52 if (should_merge(test_holder->event, event)) { in fanotify_merge()
53 test_event = test_holder->event; in fanotify_merge()
64 if (test_event->mask == event->mask) in fanotify_merge()
73 test_event->mask |= event->mask; in fanotify_merge()
87 new_event->mask = (test_event->mask | event->mask); in fanotify_merge()
96 struct fsnotify_event *event) in fanotify_get_response_from_access() argument
100 pr_debug("%s: group=%p event=%p\n", __func__, group, event); in fanotify_get_response_from_access()
102 wait_event(group->fanotify_data.access_waitq, event->response || in fanotify_get_response_from_access()
105 if (!event->response) /* bypass_perm set */ in fanotify_get_response_from_access()
109 spin_lock(&event->lock); in fanotify_get_response_from_access()
110 switch (event->response) { in fanotify_get_response_from_access()
118 event->response = 0; in fanotify_get_response_from_access()
119 spin_unlock(&event->lock); in fanotify_get_response_from_access()
122 group, event, ret); in fanotify_get_response_from_access()
131 struct fsnotify_event *event) in fanotify_handle_event() argument
147 pr_debug("%s: group=%p event=%p\n", __func__, group, event); in fanotify_handle_event()
149 notify_event = fsnotify_add_notify_event(group, event, NULL, fanotify_merge); in fanotify_handle_event()
154 if (event->mask & FAN_ALL_PERM_EVENTS) { in fanotify_handle_event()
157 event = notify_event; in fanotify_handle_event()
158 ret = fanotify_get_response_from_access(group, event); in fanotify_handle_event()