diff options
Diffstat (limited to 'fs/notify/dnotify/dnotify.c')
-rw-r--r-- | fs/notify/dnotify/dnotify.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/fs/notify/dnotify/dnotify.c b/fs/notify/dnotify/dnotify.c index 98a751614c74..828a889be909 100644 --- a/fs/notify/dnotify/dnotify.c +++ b/fs/notify/dnotify/dnotify.c | |||
@@ -161,12 +161,6 @@ static bool dnotify_should_send_event(struct fsnotify_group *group, | |||
161 | return send; | 161 | return send; |
162 | } | 162 | } |
163 | 163 | ||
164 | static void dnotify_freeing_mark(struct fsnotify_mark_entry *entry, | ||
165 | struct fsnotify_group *group) | ||
166 | { | ||
167 | /* dnotify doesn't care than an inode is on the way out */ | ||
168 | } | ||
169 | |||
170 | static void dnotify_free_mark(struct fsnotify_mark_entry *entry) | 164 | static void dnotify_free_mark(struct fsnotify_mark_entry *entry) |
171 | { | 165 | { |
172 | struct dnotify_mark_entry *dnentry = container_of(entry, | 166 | struct dnotify_mark_entry *dnentry = container_of(entry, |
@@ -182,7 +176,7 @@ static struct fsnotify_ops dnotify_fsnotify_ops = { | |||
182 | .handle_event = dnotify_handle_event, | 176 | .handle_event = dnotify_handle_event, |
183 | .should_send_event = dnotify_should_send_event, | 177 | .should_send_event = dnotify_should_send_event, |
184 | .free_group_priv = NULL, | 178 | .free_group_priv = NULL, |
185 | .freeing_mark = dnotify_freeing_mark, | 179 | .freeing_mark = NULL, |
186 | .free_event_priv = NULL, | 180 | .free_event_priv = NULL, |
187 | }; | 181 | }; |
188 | 182 | ||