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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/fsnotify_backend.h b/include/linux/fsnotify_backend.h
index 489c881ed4ec..018416ec5ce4 100644
--- a/include/linux/fsnotify_backend.h
+++ b/include/linux/fsnotify_backend.h
@@ -266,6 +266,7 @@ struct fsnotify_mark {
266 struct fsnotify_inode_mark i; 266 struct fsnotify_inode_mark i;
267 struct fsnotify_vfsmount_mark m; 267 struct fsnotify_vfsmount_mark m;
268 }; 268 };
269 __u32 ignored_mask; /* events types to ignore */
269 struct list_head free_g_list; /* tmp list used when freeing this mark */ 270 struct list_head free_g_list; /* tmp list used when freeing this mark */
270#define FSNOTIFY_MARK_FLAG_INODE 0x01 271#define FSNOTIFY_MARK_FLAG_INODE 0x01
271#define FSNOTIFY_MARK_FLAG_VFSMOUNT 0x02 272#define FSNOTIFY_MARK_FLAG_VFSMOUNT 0x02
@@ -373,6 +374,8 @@ extern struct fsnotify_mark *fsnotify_find_inode_mark(struct fsnotify_group *gro
373extern struct fsnotify_mark *fsnotify_find_vfsmount_mark(struct fsnotify_group *group, struct vfsmount *mnt); 374extern struct fsnotify_mark *fsnotify_find_vfsmount_mark(struct fsnotify_group *group, struct vfsmount *mnt);
374/* copy the values from old into new */ 375/* copy the values from old into new */
375extern void fsnotify_duplicate_mark(struct fsnotify_mark *new, struct fsnotify_mark *old); 376extern void fsnotify_duplicate_mark(struct fsnotify_mark *new, struct fsnotify_mark *old);
377/* set the ignored_mask of a mark */
378extern void fsnotify_set_mark_ignored_mask_locked(struct fsnotify_mark *mark, __u32 mask);
376/* set the mask of a mark (might pin the object into memory */ 379/* set the mask of a mark (might pin the object into memory */
377extern void fsnotify_set_mark_mask_locked(struct fsnotify_mark *mark, __u32 mask); 380extern void fsnotify_set_mark_mask_locked(struct fsnotify_mark *mark, __u32 mask);
378/* attach the mark to both the group and the inode */ 381/* attach the mark to both the group and the inode */