aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fsnotify_backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fsnotify_backend.h')
-rw-r--r--include/linux/fsnotify_backend.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/fsnotify_backend.h b/include/linux/fsnotify_backend.h
index 8ca19df8a171..be4a36ed2008 100644
--- a/include/linux/fsnotify_backend.h
+++ b/include/linux/fsnotify_backend.h
@@ -384,6 +384,12 @@ extern int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *
384 struct inode *inode, struct vfsmount *mnt, int allow_dups); 384 struct inode *inode, struct vfsmount *mnt, int allow_dups);
385/* given a mark, flag it to be freed when all references are dropped */ 385/* given a mark, flag it to be freed when all references are dropped */
386extern void fsnotify_destroy_mark(struct fsnotify_mark *mark); 386extern void fsnotify_destroy_mark(struct fsnotify_mark *mark);
387/* run all the marks in a group, and clear all of the vfsmount marks */
388extern void fsnotify_clear_vfsmount_marks_by_group(struct fsnotify_group *group);
389/* run all the marks in a group, and clear all of the inode marks */
390extern void fsnotify_clear_inode_marks_by_group(struct fsnotify_group *group);
391/* run all the marks in a group, and clear all of the marks where mark->flags & flags is true*/
392extern void fsnotify_clear_marks_by_group_flags(struct fsnotify_group *group, unsigned int flags);
387/* run all the marks in a group, and flag them to be freed */ 393/* run all the marks in a group, and flag them to be freed */
388extern void fsnotify_clear_marks_by_group(struct fsnotify_group *group); 394extern void fsnotify_clear_marks_by_group(struct fsnotify_group *group);
389extern void fsnotify_get_mark(struct fsnotify_mark *mark); 395extern void fsnotify_get_mark(struct fsnotify_mark *mark);