This source file includes following definitions.
- fsnotify_get_cookie
- fsnotify_notify_queue_is_empty
- fsnotify_destroy_event
- fsnotify_add_event
- fsnotify_remove_queued_event
- fsnotify_remove_first_event
- fsnotify_peek_first_event
- fsnotify_flush_notify
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 
  14 
  15 
  16 
  17 
  18 
  19 
  20 
  21 #include <linux/fs.h>
  22 #include <linux/init.h>
  23 #include <linux/kernel.h>
  24 #include <linux/list.h>
  25 #include <linux/module.h>
  26 #include <linux/mount.h>
  27 #include <linux/mutex.h>
  28 #include <linux/namei.h>
  29 #include <linux/path.h>
  30 #include <linux/slab.h>
  31 #include <linux/spinlock.h>
  32 
  33 #include <linux/atomic.h>
  34 
  35 #include <linux/fsnotify_backend.h>
  36 #include "fsnotify.h"
  37 
  38 static atomic_t fsnotify_sync_cookie = ATOMIC_INIT(0);
  39 
  40 
  41 
  42 
  43 
  44 u32 fsnotify_get_cookie(void)
  45 {
  46         return atomic_inc_return(&fsnotify_sync_cookie);
  47 }
  48 EXPORT_SYMBOL_GPL(fsnotify_get_cookie);
  49 
  50 
  51 bool fsnotify_notify_queue_is_empty(struct fsnotify_group *group)
  52 {
  53         assert_spin_locked(&group->notification_lock);
  54         return list_empty(&group->notification_list) ? true : false;
  55 }
  56 
  57 void fsnotify_destroy_event(struct fsnotify_group *group,
  58                             struct fsnotify_event *event)
  59 {
  60         
  61         if (!event || event == group->overflow_event)
  62                 return;
  63         
  64 
  65 
  66 
  67 
  68 
  69         if (!list_empty(&event->list)) {
  70                 spin_lock(&group->notification_lock);
  71                 WARN_ON(!list_empty(&event->list));
  72                 spin_unlock(&group->notification_lock);
  73         }
  74         group->ops->free_event(event);
  75 }
  76 
  77 
  78 
  79 
  80 
  81 
  82 
  83 
  84 int fsnotify_add_event(struct fsnotify_group *group,
  85                        struct fsnotify_event *event,
  86                        int (*merge)(struct list_head *,
  87                                     struct fsnotify_event *))
  88 {
  89         int ret = 0;
  90         struct list_head *list = &group->notification_list;
  91 
  92         pr_debug("%s: group=%p event=%p\n", __func__, group, event);
  93 
  94         spin_lock(&group->notification_lock);
  95 
  96         if (group->shutdown) {
  97                 spin_unlock(&group->notification_lock);
  98                 return 2;
  99         }
 100 
 101         if (event == group->overflow_event ||
 102             group->q_len >= group->max_events) {
 103                 ret = 2;
 104                 
 105                 if (!list_empty(&group->overflow_event->list)) {
 106                         spin_unlock(&group->notification_lock);
 107                         return ret;
 108                 }
 109                 event = group->overflow_event;
 110                 goto queue;
 111         }
 112 
 113         if (!list_empty(list) && merge) {
 114                 ret = merge(list, event);
 115                 if (ret) {
 116                         spin_unlock(&group->notification_lock);
 117                         return ret;
 118                 }
 119         }
 120 
 121 queue:
 122         group->q_len++;
 123         list_add_tail(&event->list, list);
 124         spin_unlock(&group->notification_lock);
 125 
 126         wake_up(&group->notification_waitq);
 127         kill_fasync(&group->fsn_fa, SIGIO, POLL_IN);
 128         return ret;
 129 }
 130 
 131 void fsnotify_remove_queued_event(struct fsnotify_group *group,
 132                                   struct fsnotify_event *event)
 133 {
 134         assert_spin_locked(&group->notification_lock);
 135         
 136 
 137 
 138 
 139         list_del_init(&event->list);
 140         group->q_len--;
 141 }
 142 
 143 
 144 
 145 
 146 
 147 struct fsnotify_event *fsnotify_remove_first_event(struct fsnotify_group *group)
 148 {
 149         struct fsnotify_event *event;
 150 
 151         assert_spin_locked(&group->notification_lock);
 152 
 153         pr_debug("%s: group=%p\n", __func__, group);
 154 
 155         event = list_first_entry(&group->notification_list,
 156                                  struct fsnotify_event, list);
 157         fsnotify_remove_queued_event(group, event);
 158         return event;
 159 }
 160 
 161 
 162 
 163 
 164 
 165 struct fsnotify_event *fsnotify_peek_first_event(struct fsnotify_group *group)
 166 {
 167         assert_spin_locked(&group->notification_lock);
 168 
 169         return list_first_entry(&group->notification_list,
 170                                 struct fsnotify_event, list);
 171 }
 172 
 173 
 174 
 175 
 176 
 177 void fsnotify_flush_notify(struct fsnotify_group *group)
 178 {
 179         struct fsnotify_event *event;
 180 
 181         spin_lock(&group->notification_lock);
 182         while (!fsnotify_notify_queue_is_empty(group)) {
 183                 event = fsnotify_remove_first_event(group);
 184                 spin_unlock(&group->notification_lock);
 185                 fsnotify_destroy_event(group, event);
 186                 spin_lock(&group->notification_lock);
 187         }
 188         spin_unlock(&group->notification_lock);
 189 }