Home
last modified time | relevance | path

Searched refs:watched_objects (Results 1 – 3 of 3) sorted by relevance

/linux/fs/notify/
H A Dmark.c146 atomic_long_t *watched_objects = fsnotify_sb_watched_objects(sb); in fsnotify_put_sb_watched_objects() local
149 if (atomic_long_dec_and_test(watched_objects)) in fsnotify_put_sb_watched_objects()
150 wake_up_var(watched_objects); in fsnotify_put_sb_watched_objects()
194 atomic_long_inc(&sbinfo->watched_objects[p]); in fsnotify_update_sb_watchers()
196 atomic_long_dec(&sbinfo->watched_objects[p]); in fsnotify_update_sb_watchers()
/linux/include/linux/
H A Dfsnotify_backend.h592 * The value in watched_objects[prio] is the number of objects that are
593 * watched by groups of priority >= prio, so watched_objects[0] is the
596 atomic_long_t watched_objects[__FSNOTIFY_PRIO_NUM];
610 return &fsnotify_sb_info(sb)->watched_objects[0];
576 atomic_long_t watched_objects[__FSNOTIFY_PRIO_NUM]; global() member
H A Dfsnotify.h30 return atomic_long_read(&sbinfo->watched_objects[prio]); in fsnotify_sb_has_priority_watchers()