blob: 6faaf710e563ee184e20204f80c63c2157cbb186 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Directory notifications for Linux.
3 *
4 * Copyright (C) 2000,2001,2002 Stephen Rothwell
5 *
Eric Paris3c5119c2009-05-21 17:01:33 -04006 * Copyright (C) 2009 Eric Paris <Red Hat Inc>
7 * dnotify was largly rewritten to use the new fsnotify infrastructure
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2, or (at your option) any
12 * later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 */
19#include <linux/fs.h>
20#include <linux/module.h>
21#include <linux/sched.h>
22#include <linux/dnotify.h>
23#include <linux/init.h>
24#include <linux/spinlock.h>
25#include <linux/slab.h>
Al Viro9f3acc32008-04-24 07:44:08 -040026#include <linux/fdtable.h>
Eric Paris3c5119c2009-05-21 17:01:33 -040027#include <linux/fsnotify_backend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Eric Dumazetfa3536c2006-03-26 01:37:24 -080029int dir_notify_enable __read_mostly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Eric Paris3c5119c2009-05-21 17:01:33 -040031static struct kmem_cache *dnotify_struct_cache __read_mostly;
Eric Parisef5e2b72009-12-17 21:24:24 -050032static struct kmem_cache *dnotify_mark_cache __read_mostly;
Eric Paris3c5119c2009-05-21 17:01:33 -040033static struct fsnotify_group *dnotify_group __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Eric Paris3c5119c2009-05-21 17:01:33 -040035/*
Eric Parise61ce862009-12-17 21:24:24 -050036 * dnotify will attach one of these to each inode (i_fsnotify_marks) which
Eric Paris3c5119c2009-05-21 17:01:33 -040037 * is being watched by dnotify. If multiple userspace applications are watching
38 * the same directory with dnotify their information is chained in dn
39 */
Eric Parisef5e2b72009-12-17 21:24:24 -050040struct dnotify_mark {
41 struct fsnotify_mark fsn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 struct dnotify_struct *dn;
Eric Paris3c5119c2009-05-21 17:01:33 -040043};
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Eric Paris3c5119c2009-05-21 17:01:33 -040045/*
46 * When a process starts or stops watching an inode the set of events which
47 * dnotify cares about for that inode may change. This function runs the
48 * list of everything receiving dnotify events about this directory and calculates
49 * the set of all those events. After it updates what dnotify is interested in
50 * it calls the fsnotify function so it can update the set of all events relevant
51 * to this inode.
52 */
Eric Parisef5e2b72009-12-17 21:24:24 -050053static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -040054{
55 __u32 new_mask, old_mask;
56 struct dnotify_struct *dn;
Eric Parisef5e2b72009-12-17 21:24:24 -050057 struct dnotify_mark *dn_mark = container_of(fsn_mark,
58 struct dnotify_mark,
59 fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -040060
Eric Parisef5e2b72009-12-17 21:24:24 -050061 assert_spin_locked(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -040062
Eric Parisef5e2b72009-12-17 21:24:24 -050063 old_mask = fsn_mark->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 new_mask = 0;
Eric Parisef5e2b72009-12-17 21:24:24 -050065 for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next)
Eric Paris3c5119c2009-05-21 17:01:33 -040066 new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
Eric Paris90b1e7a2009-12-17 21:24:33 -050067 fsnotify_set_mark_mask_locked(fsn_mark, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric Paris3c5119c2009-05-21 17:01:33 -040069 if (old_mask == new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 return;
Eric Paris3c5119c2009-05-21 17:01:33 -040071
Jan Kara0809ab62014-12-12 16:58:36 -080072 if (fsn_mark->inode)
73 fsnotify_recalc_inode_mask(fsn_mark->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Eric Paris3c5119c2009-05-21 17:01:33 -040076/*
77 * Mains fsnotify call where events are delivered to dnotify.
78 * Find the dnotify mark on the relevant inode, run the list of dnotify structs
79 * on that mark and determine which of them has expressed interest in receiving
80 * events of this type. When found send the correct process and signal and
81 * destroy the dnotify struct if it was not registered to receive multiple
82 * events.
83 */
84static int dnotify_handle_event(struct fsnotify_group *group,
Jan Kara7053aee2014-01-21 15:48:14 -080085 struct inode *inode,
Eric Parisce8f76f2010-07-28 10:18:39 -040086 struct fsnotify_mark *inode_mark,
87 struct fsnotify_mark *vfsmount_mark,
Jan Kara7053aee2014-01-21 15:48:14 -080088 u32 mask, void *data, int data_type,
Jan Kara45a22f42014-02-17 13:09:50 +010089 const unsigned char *file_name, u32 cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Eric Parisef5e2b72009-12-17 21:24:24 -050091 struct dnotify_mark *dn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct dnotify_struct *dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct dnotify_struct **prev;
Eric Paris3c5119c2009-05-21 17:01:33 -040094 struct fown_struct *fown;
Jan Kara7053aee2014-01-21 15:48:14 -080095 __u32 test_mask = mask & ~FS_EVENT_ON_CHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Jan Kara83c4c4b2014-01-21 15:48:15 -080097 /* not a dir, dnotify doesn't care */
98 if (!S_ISDIR(inode->i_mode))
99 return 0;
100
Eric Parisce8f76f2010-07-28 10:18:39 -0400101 BUG_ON(vfsmount_mark);
102
Eric Parisce8f76f2010-07-28 10:18:39 -0400103 dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Eric Parisce8f76f2010-07-28 10:18:39 -0400105 spin_lock(&inode_mark->lock);
Eric Parisef5e2b72009-12-17 21:24:24 -0500106 prev = &dn_mark->dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 while ((dn = *prev) != NULL) {
Andreas Gruenbacher94552682009-10-15 00:13:23 +0200108 if ((dn->dn_mask & test_mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 prev = &dn->dn_next;
110 continue;
111 }
112 fown = &dn->dn_filp->f_owner;
113 send_sigio(fown, dn->dn_fd, POLL_MSG);
Eric Paris3c5119c2009-05-21 17:01:33 -0400114 if (dn->dn_mask & FS_DN_MULTISHOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 prev = &dn->dn_next;
116 else {
117 *prev = dn->dn_next;
Eric Paris3c5119c2009-05-21 17:01:33 -0400118 kmem_cache_free(dnotify_struct_cache, dn);
Eric Parisce8f76f2010-07-28 10:18:39 -0400119 dnotify_recalc_inode_mask(inode_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Eric Parisce8f76f2010-07-28 10:18:39 -0400123 spin_unlock(&inode_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400124
125 return 0;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Eric Parisef5e2b72009-12-17 21:24:24 -0500128static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400129{
Eric Parisef5e2b72009-12-17 21:24:24 -0500130 struct dnotify_mark *dn_mark = container_of(fsn_mark,
131 struct dnotify_mark,
132 fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400133
Eric Parisef5e2b72009-12-17 21:24:24 -0500134 BUG_ON(dn_mark->dn);
Eric Paris3c5119c2009-05-21 17:01:33 -0400135
Eric Parisef5e2b72009-12-17 21:24:24 -0500136 kmem_cache_free(dnotify_mark_cache, dn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400137}
138
139static struct fsnotify_ops dnotify_fsnotify_ops = {
140 .handle_event = dnotify_handle_event,
Eric Paris3c5119c2009-05-21 17:01:33 -0400141};
142
143/*
144 * Called every time a file is closed. Looks first for a dnotify mark on the
Eric Parise61ce862009-12-17 21:24:24 -0500145 * inode. If one is found run all of the ->dn structures attached to that
Eric Paris3c5119c2009-05-21 17:01:33 -0400146 * mark for one relevant to this process closing the file and remove that
147 * dnotify_struct. If that was the last dnotify_struct also remove the
Eric Parise61ce862009-12-17 21:24:24 -0500148 * fsnotify_mark.
Eric Paris3c5119c2009-05-21 17:01:33 -0400149 */
150void dnotify_flush(struct file *filp, fl_owner_t id)
151{
Eric Parisef5e2b72009-12-17 21:24:24 -0500152 struct fsnotify_mark *fsn_mark;
153 struct dnotify_mark *dn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400154 struct dnotify_struct *dn;
155 struct dnotify_struct **prev;
156 struct inode *inode;
Jan Kara4712e7222015-09-04 15:43:12 -0700157 bool free = false;
Eric Paris3c5119c2009-05-21 17:01:33 -0400158
Al Viro496ad9a2013-01-23 17:07:38 -0500159 inode = file_inode(filp);
Eric Paris3c5119c2009-05-21 17:01:33 -0400160 if (!S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return;
162
Eric Paris5444e292009-12-17 21:24:27 -0500163 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500164 if (!fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400165 return;
Eric Parisef5e2b72009-12-17 21:24:24 -0500166 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400167
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700168 mutex_lock(&dnotify_group->mark_mutex);
Eric Paris3c5119c2009-05-21 17:01:33 -0400169
Eric Parisef5e2b72009-12-17 21:24:24 -0500170 spin_lock(&fsn_mark->lock);
171 prev = &dn_mark->dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400172 while ((dn = *prev) != NULL) {
173 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
174 *prev = dn->dn_next;
175 kmem_cache_free(dnotify_struct_cache, dn);
Eric Parisef5e2b72009-12-17 21:24:24 -0500176 dnotify_recalc_inode_mask(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400177 break;
178 }
179 prev = &dn->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Eric Paris3c5119c2009-05-21 17:01:33 -0400181
Eric Parisef5e2b72009-12-17 21:24:24 -0500182 spin_unlock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400183
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700184 /* nothing else could have found us thanks to the dnotify_groups
185 mark_mutex */
Jan Kara4712e7222015-09-04 15:43:12 -0700186 if (dn_mark->dn == NULL) {
187 fsnotify_detach_mark(fsn_mark);
188 free = true;
189 }
Eric Paris3c5119c2009-05-21 17:01:33 -0400190
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700191 mutex_unlock(&dnotify_group->mark_mutex);
Eric Paris3c5119c2009-05-21 17:01:33 -0400192
Jan Kara4712e7222015-09-04 15:43:12 -0700193 if (free)
194 fsnotify_free_mark(fsn_mark);
Eric Parisef5e2b72009-12-17 21:24:24 -0500195 fsnotify_put_mark(fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
Eric Paris3c5119c2009-05-21 17:01:33 -0400197
198/* this conversion is done only at watch creation */
199static __u32 convert_arg(unsigned long arg)
200{
201 __u32 new_mask = FS_EVENT_ON_CHILD;
202
203 if (arg & DN_MULTISHOT)
204 new_mask |= FS_DN_MULTISHOT;
205 if (arg & DN_DELETE)
206 new_mask |= (FS_DELETE | FS_MOVED_FROM);
207 if (arg & DN_MODIFY)
208 new_mask |= FS_MODIFY;
209 if (arg & DN_ACCESS)
210 new_mask |= FS_ACCESS;
211 if (arg & DN_ATTRIB)
212 new_mask |= FS_ATTRIB;
213 if (arg & DN_RENAME)
214 new_mask |= FS_DN_RENAME;
215 if (arg & DN_CREATE)
216 new_mask |= (FS_CREATE | FS_MOVED_TO);
217
218 return new_mask;
219}
220
221/*
222 * If multiple processes watch the same inode with dnotify there is only one
Eric Parise61ce862009-12-17 21:24:24 -0500223 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
Eric Paris3c5119c2009-05-21 17:01:33 -0400224 * onto that mark. This function either attaches the new dnotify_struct onto
225 * that list, or it |= the mask onto an existing dnofiy_struct.
226 */
Eric Parisef5e2b72009-12-17 21:24:24 -0500227static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
Eric Paris3c5119c2009-05-21 17:01:33 -0400228 fl_owner_t id, int fd, struct file *filp, __u32 mask)
229{
230 struct dnotify_struct *odn;
231
Eric Parisef5e2b72009-12-17 21:24:24 -0500232 odn = dn_mark->dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400233 while (odn != NULL) {
234 /* adding more events to existing dnofiy_struct? */
235 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
236 odn->dn_fd = fd;
237 odn->dn_mask |= mask;
238 return -EEXIST;
239 }
240 odn = odn->dn_next;
241 }
242
243 dn->dn_mask = mask;
244 dn->dn_fd = fd;
245 dn->dn_filp = filp;
246 dn->dn_owner = id;
Eric Parisef5e2b72009-12-17 21:24:24 -0500247 dn->dn_next = dn_mark->dn;
248 dn_mark->dn = dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400249
250 return 0;
251}
252
253/*
254 * When a process calls fcntl to attach a dnotify watch to a directory it ends
255 * up here. Allocate both a mark for fsnotify to add and a dnotify_struct to be
256 * attached to the fsnotify_mark.
257 */
258int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
259{
Eric Parisef5e2b72009-12-17 21:24:24 -0500260 struct dnotify_mark *new_dn_mark, *dn_mark;
261 struct fsnotify_mark *new_fsn_mark, *fsn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400262 struct dnotify_struct *dn;
263 struct inode *inode;
264 fl_owner_t id = current->files;
265 struct file *f;
266 int destroy = 0, error = 0;
267 __u32 mask;
268
269 /* we use these to tell if we need to kfree */
Eric Parisef5e2b72009-12-17 21:24:24 -0500270 new_fsn_mark = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400271 dn = NULL;
272
273 if (!dir_notify_enable) {
274 error = -EINVAL;
275 goto out_err;
276 }
277
278 /* a 0 mask means we are explicitly removing the watch */
279 if ((arg & ~DN_MULTISHOT) == 0) {
280 dnotify_flush(filp, id);
281 error = 0;
282 goto out_err;
283 }
284
285 /* dnotify only works on directories */
Al Viro496ad9a2013-01-23 17:07:38 -0500286 inode = file_inode(filp);
Eric Paris3c5119c2009-05-21 17:01:33 -0400287 if (!S_ISDIR(inode->i_mode)) {
288 error = -ENOTDIR;
289 goto out_err;
290 }
291
292 /* expect most fcntl to add new rather than augment old */
293 dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
294 if (!dn) {
295 error = -ENOMEM;
296 goto out_err;
297 }
298
299 /* new fsnotify mark, we expect most fcntl calls to add a new mark */
Eric Parisef5e2b72009-12-17 21:24:24 -0500300 new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
301 if (!new_dn_mark) {
Eric Paris3c5119c2009-05-21 17:01:33 -0400302 error = -ENOMEM;
303 goto out_err;
304 }
305
306 /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
307 mask = convert_arg(arg);
308
Eric Parisef5e2b72009-12-17 21:24:24 -0500309 /* set up the new_fsn_mark and new_dn_mark */
310 new_fsn_mark = &new_dn_mark->fsn_mark;
311 fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
312 new_fsn_mark->mask = mask;
313 new_dn_mark->dn = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400314
315 /* this is needed to prevent the fcntl/close race described below */
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700316 mutex_lock(&dnotify_group->mark_mutex);
Eric Paris3c5119c2009-05-21 17:01:33 -0400317
Eric Parisef5e2b72009-12-17 21:24:24 -0500318 /* add the new_fsn_mark or find an old one. */
Eric Paris5444e292009-12-17 21:24:27 -0500319 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500320 if (fsn_mark) {
321 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
322 spin_lock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400323 } else {
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700324 fsnotify_add_mark_locked(new_fsn_mark, dnotify_group, inode,
325 NULL, 0);
Eric Parisef5e2b72009-12-17 21:24:24 -0500326 spin_lock(&new_fsn_mark->lock);
327 fsn_mark = new_fsn_mark;
328 dn_mark = new_dn_mark;
329 /* we used new_fsn_mark, so don't free it */
330 new_fsn_mark = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400331 }
332
333 rcu_read_lock();
334 f = fcheck(fd);
335 rcu_read_unlock();
336
337 /* if (f != filp) means that we lost a race and another task/thread
338 * actually closed the fd we are still playing with before we grabbed
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700339 * the dnotify_groups mark_mutex and fsn_mark->lock. Since closing the
340 * fd is the only time we clean up the marks we need to get our mark
341 * off the list. */
Eric Paris3c5119c2009-05-21 17:01:33 -0400342 if (f != filp) {
343 /* if we added ourselves, shoot ourselves, it's possible that
Eric Parisef5e2b72009-12-17 21:24:24 -0500344 * the flush actually did shoot this fsn_mark. That's fine too
Eric Paris3c5119c2009-05-21 17:01:33 -0400345 * since multiple calls to destroy_mark is perfectly safe, if
Eric Parisef5e2b72009-12-17 21:24:24 -0500346 * we found a dn_mark already attached to the inode, just sod
Eric Paris3c5119c2009-05-21 17:01:33 -0400347 * off silently as the flush at close time dealt with it.
348 */
Eric Parisef5e2b72009-12-17 21:24:24 -0500349 if (dn_mark == new_dn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400350 destroy = 1;
351 goto out;
352 }
353
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400354 __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
Eric Paris3c5119c2009-05-21 17:01:33 -0400355
Eric Parisef5e2b72009-12-17 21:24:24 -0500356 error = attach_dn(dn, dn_mark, id, fd, filp, mask);
357 /* !error means that we attached the dn to the dn_mark, so don't free it */
Eric Paris3c5119c2009-05-21 17:01:33 -0400358 if (!error)
359 dn = NULL;
360 /* -EEXIST means that we didn't add this new dn and used an old one.
361 * that isn't an error (and the unused dn should be freed) */
362 else if (error == -EEXIST)
363 error = 0;
364
Eric Parisef5e2b72009-12-17 21:24:24 -0500365 dnotify_recalc_inode_mask(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400366out:
Eric Parisef5e2b72009-12-17 21:24:24 -0500367 spin_unlock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400368
369 if (destroy)
Jan Kara4712e7222015-09-04 15:43:12 -0700370 fsnotify_detach_mark(fsn_mark);
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700371 mutex_unlock(&dnotify_group->mark_mutex);
Jan Kara4712e7222015-09-04 15:43:12 -0700372 if (destroy)
373 fsnotify_free_mark(fsn_mark);
Eric Parisef5e2b72009-12-17 21:24:24 -0500374 fsnotify_put_mark(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400375out_err:
Eric Parisef5e2b72009-12-17 21:24:24 -0500376 if (new_fsn_mark)
377 fsnotify_put_mark(new_fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400378 if (dn)
379 kmem_cache_free(dnotify_struct_cache, dn);
380 return error;
381}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383static int __init dnotify_init(void)
384{
Eric Paris3c5119c2009-05-21 17:01:33 -0400385 dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
Eric Parisef5e2b72009-12-17 21:24:24 -0500386 dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
Eric Paris3c5119c2009-05-21 17:01:33 -0400387
Eric Paris0d2e2a12009-12-17 21:24:22 -0500388 dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
Eric Paris3c5119c2009-05-21 17:01:33 -0400389 if (IS_ERR(dnotify_group))
390 panic("unable to allocate fsnotify group for dnotify\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392}
393
394module_init(dnotify_init)