aboutsummaryrefslogtreecommitdiffstats
path: root/fs/notify/inotify/inotify_fsnotify.c
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2009-12-17 21:24:24 -0500
committerEric Paris <eparis@redhat.com>2010-07-28 09:58:53 -0400
commite61ce86737b4d60521e4e71f9892fe4bdcfb688b (patch)
treea1aba411504ac028d4ead6f28ca05bd024c74142 /fs/notify/inotify/inotify_fsnotify.c
parent72acc854427948efed7a83da27f7dc3239ac9afc (diff)
fsnotify: rename fsnotify_mark_entry to just fsnotify_mark
The name is long and it serves no real purpose. So rename fsnotify_mark_entry to just fsnotify_mark. Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'fs/notify/inotify/inotify_fsnotify.c')
-rw-r--r--fs/notify/inotify/inotify_fsnotify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/notify/inotify/inotify_fsnotify.c b/fs/notify/inotify/inotify_fsnotify.c
index 3edb51cfcfb..f33a9bd32e5 100644
--- a/fs/notify/inotify/inotify_fsnotify.c
+++ b/fs/notify/inotify/inotify_fsnotify.c
@@ -88,7 +88,7 @@ static int inotify_merge(struct list_head *list, struct fsnotify_event *event)
88 88
89static int inotify_handle_event(struct fsnotify_group *group, struct fsnotify_event *event) 89static int inotify_handle_event(struct fsnotify_group *group, struct fsnotify_event *event)
90{ 90{
91 struct fsnotify_mark_entry *entry; 91 struct fsnotify_mark *entry;
92 struct inotify_inode_mark_entry *ientry; 92 struct inotify_inode_mark_entry *ientry;
93 struct inode *to_tell; 93 struct inode *to_tell;
94 struct inotify_event_private_data *event_priv; 94 struct inotify_event_private_data *event_priv;
@@ -135,7 +135,7 @@ static int inotify_handle_event(struct fsnotify_group *group, struct fsnotify_ev
135 return ret; 135 return ret;
136} 136}
137 137
138static void inotify_freeing_mark(struct fsnotify_mark_entry *entry, struct fsnotify_group *group) 138static void inotify_freeing_mark(struct fsnotify_mark *entry, struct fsnotify_group *group)
139{ 139{
140 inotify_ignored_and_remove_idr(entry, group); 140 inotify_ignored_and_remove_idr(entry, group);
141} 141}
@@ -144,7 +144,7 @@ static bool inotify_should_send_event(struct fsnotify_group *group, struct inode
144 struct vfsmount *mnt, __u32 mask, void *data, 144 struct vfsmount *mnt, __u32 mask, void *data,
145 int data_type) 145 int data_type)
146{ 146{
147 struct fsnotify_mark_entry *entry; 147 struct fsnotify_mark *entry;
148 bool send; 148 bool send;
149 149
150 spin_lock(&inode->i_lock); 150 spin_lock(&inode->i_lock);
@@ -171,7 +171,7 @@ static bool inotify_should_send_event(struct fsnotify_group *group, struct inode
171 */ 171 */
172static int idr_callback(int id, void *p, void *data) 172static int idr_callback(int id, void *p, void *data)
173{ 173{
174 struct fsnotify_mark_entry *entry; 174 struct fsnotify_mark *entry;
175 struct inotify_inode_mark_entry *ientry; 175 struct inotify_inode_mark_entry *ientry;
176 static bool warned = false; 176 static bool warned = false;
177 177