Blame view

fs/notify/fsnotify.h 2.99 KB
90586523e   Eric Paris   fsnotify: unified...
1
2
3
4
5
6
7
  #ifndef __FS_NOTIFY_FSNOTIFY_H_
  #define __FS_NOTIFY_FSNOTIFY_H_
  
  #include <linux/list.h>
  #include <linux/fsnotify.h>
  #include <linux/srcu.h>
  #include <linux/types.h>
925d1132a   Jan Kara   fsnotify: remove ...
8
  #include "../mount.h"
a2d8bc6cb   Eric Paris   fsnotify: generic...
9
10
  /* destroy all events sitting in this groups notification queue */
  extern void fsnotify_flush_notify(struct fsnotify_group *group);
75c1be487   Eric Paris   fsnotify: srcu to...
11
12
  /* protects reads of inode and vfsmount marks list */
  extern struct srcu_struct fsnotify_mark_srcu;
0809ab69a   Jan Kara   fsnotify: unify i...
13
14
  /* Calculate mask of events for a list of marks */
  extern u32 fsnotify_recalc_mask(struct hlist_head *head);
8edc6e168   Jan Kara   fanotify: fix not...
15
16
17
  /* compare two groups for sorting of marks lists */
  extern int fsnotify_compare_groups(struct fsnotify_group *a,
  				   struct fsnotify_group *b);
90b1e7a57   Eric Paris   fsnotify: allow m...
18
19
  extern void fsnotify_set_inode_mark_mask_locked(struct fsnotify_mark *fsn_mark,
  						__u32 mask);
0809ab69a   Jan Kara   fsnotify: unify i...
20
21
22
23
  /* Add mark to a proper place in mark list */
  extern int fsnotify_add_mark_list(struct hlist_head *head,
  				  struct fsnotify_mark *mark,
  				  int allow_dups);
5444e2981   Eric Paris   fsnotify: split g...
24
25
26
27
  /* add a mark to an inode */
  extern int fsnotify_add_inode_mark(struct fsnotify_mark *mark,
  				   struct fsnotify_group *group, struct inode *inode,
  				   int allow_dups);
0d48b7f01   Eric Paris   fsnotify: vfsmoun...
28
29
30
31
  /* add a mark to a vfsmount */
  extern int fsnotify_add_vfsmount_mark(struct fsnotify_mark *mark,
  				      struct fsnotify_group *group, struct vfsmount *mnt,
  				      int allow_dups);
5444e2981   Eric Paris   fsnotify: split g...
32

0d48b7f01   Eric Paris   fsnotify: vfsmoun...
33
34
  /* vfsmount specific destruction of a mark */
  extern void fsnotify_destroy_vfsmount_mark(struct fsnotify_mark *mark);
5444e2981   Eric Paris   fsnotify: split g...
35
36
  /* inode specific destruction of a mark */
  extern void fsnotify_destroy_inode_mark(struct fsnotify_mark *mark);
0809ab69a   Jan Kara   fsnotify: unify i...
37
38
39
  /* Find mark belonging to given group in the list of marks */
  extern struct fsnotify_mark *fsnotify_find_mark(struct hlist_head *head,
  						struct fsnotify_group *group);
925d1132a   Jan Kara   fsnotify: remove ...
40
41
42
43
44
45
46
47
48
49
50
51
52
  /* Destroy all marks in the given list protected by 'lock' */
  extern void fsnotify_destroy_marks(struct hlist_head *head, spinlock_t *lock);
  /* run the list of all marks associated with inode and destroy them */
  static inline void fsnotify_clear_marks_by_inode(struct inode *inode)
  {
  	fsnotify_destroy_marks(&inode->i_fsnotify_marks, &inode->i_lock);
  }
  /* run the list of all marks associated with vfsmount and destroy them */
  static inline void fsnotify_clear_marks_by_mount(struct vfsmount *mnt)
  {
  	fsnotify_destroy_marks(&real_mount(mnt)->mnt_fsnotify_marks,
  			       &mnt->mnt_root->d_lock);
  }
35e481761   Jan Kara   fsnotify: avoid s...
53
54
55
56
57
58
  /* prepare for freeing all marks associated with given group */
  extern void fsnotify_detach_group_marks(struct fsnotify_group *group);
  /*
   * wait for fsnotify_mark_srcu period to end and free all marks in destroy_list
   */
  extern void fsnotify_mark_destroy_list(void);
c28f7e56e   Eric Paris   fsnotify: parent ...
59
60
61
62
63
  /*
   * update the dentry->d_flags of all of inode's children to indicate if inode cares
   * about events that happen to its children.
   */
  extern void __fsnotify_update_child_dentry_flags(struct inode *inode);
a2d8bc6cb   Eric Paris   fsnotify: generic...
64
65
66
67
  
  /* allocate and destroy and event holder to attach events to notification/access queues */
  extern struct fsnotify_event_holder *fsnotify_alloc_event_holder(void);
  extern void fsnotify_destroy_event_holder(struct fsnotify_event_holder *holder);
90586523e   Eric Paris   fsnotify: unified...
68
  #endif	/* __FS_NOTIFY_FSNOTIFY_H_ */