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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/fsnotify_backend.h b/include/linux/fsnotify_backend.h
index 21079ade5620..dea48bee057d 100644
--- a/include/linux/fsnotify_backend.h
+++ b/include/linux/fsnotify_backend.h
@@ -99,6 +99,10 @@ struct fsnotify_group {
99 * or fsnotify_grp_srcu depending on write vs read. 99 * or fsnotify_grp_srcu depending on write vs read.
100 */ 100 */
101 struct list_head inode_group_list; 101 struct list_head inode_group_list;
102 /*
103 * same as above except anchored by fsnotify_vfsmount_groups
104 */
105 struct list_head vfsmount_group_list;
102 106
103 /* 107 /*
104 * Defines all of the event types in which this group is interested. 108 * Defines all of the event types in which this group is interested.
@@ -137,6 +141,7 @@ struct fsnotify_group {
137 141
138 /* prevents double list_del of group_list. protected by global fsnotify_grp_mutex */ 142 /* prevents double list_del of group_list. protected by global fsnotify_grp_mutex */
139 bool on_inode_group_list; 143 bool on_inode_group_list;
144 bool on_vfsmount_group_list;
140 145
141 /* groups can define private fields here or use the void *private */ 146 /* groups can define private fields here or use the void *private */
142 union { 147 union {