Lines Matching refs:wlist
95 static inline void init_watch_list(struct watch_list *wlist, in init_watch_list() argument
98 INIT_HLIST_HEAD(&wlist->watchers); in init_watch_list()
99 spin_lock_init(&wlist->lock); in init_watch_list()
100 wlist->release_watch = release_watch; in init_watch_list()
103 static inline void post_watch_notification(struct watch_list *wlist, in post_watch_notification() argument
108 if (unlikely(wlist)) in post_watch_notification()
109 __post_watch_notification(wlist, n, cred, id); in post_watch_notification()
112 static inline void remove_watch_list(struct watch_list *wlist, u64 id) in remove_watch_list() argument
114 if (wlist) { in remove_watch_list()
115 remove_watch_from_object(wlist, NULL, id, true); in remove_watch_list()
116 kfree_rcu(wlist, rcu); in remove_watch_list()