blob: 5940c75541a75dbf5098e945a89c1976a4c2e4fb [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{
Jan Kara66d2b812016-12-21 16:03:59 +010055 __u32 new_mask = 0;
Eric Paris3c5119c2009-05-21 17:01:33 -040056 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 for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next)
Eric Paris3c5119c2009-05-21 17:01:33 -040064 new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
Jan Kara66d2b812016-12-21 16:03:59 +010065 if (fsn_mark->mask == new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return;
Jan Kara66d2b812016-12-21 16:03:59 +010067 fsn_mark->mask = new_mask;
Eric Paris3c5119c2009-05-21 17:01:33 -040068
Jan Karaa2426772017-03-15 09:16:27 +010069 fsnotify_recalc_mask(fsn_mark->connector);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Eric Paris3c5119c2009-05-21 17:01:33 -040072/*
73 * Mains fsnotify call where events are delivered to dnotify.
74 * Find the dnotify mark on the relevant inode, run the list of dnotify structs
75 * on that mark and determine which of them has expressed interest in receiving
76 * events of this type. When found send the correct process and signal and
77 * destroy the dnotify struct if it was not registered to receive multiple
78 * events.
79 */
80static int dnotify_handle_event(struct fsnotify_group *group,
Jan Kara7053aee2014-01-21 15:48:14 -080081 struct inode *inode,
Eric Parisce8f76f2010-07-28 10:18:39 -040082 struct fsnotify_mark *inode_mark,
83 struct fsnotify_mark *vfsmount_mark,
Al Viro3cd5eca2016-11-20 20:19:09 -050084 u32 mask, const void *data, int data_type,
Jan Kara9385a842016-11-10 17:51:50 +010085 const unsigned char *file_name, u32 cookie,
86 struct fsnotify_iter_info *iter_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Eric Parisef5e2b72009-12-17 21:24:24 -050088 struct dnotify_mark *dn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct dnotify_struct *dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct dnotify_struct **prev;
Eric Paris3c5119c2009-05-21 17:01:33 -040091 struct fown_struct *fown;
Jan Kara7053aee2014-01-21 15:48:14 -080092 __u32 test_mask = mask & ~FS_EVENT_ON_CHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Jan Kara83c4c4b2014-01-21 15:48:15 -080094 /* not a dir, dnotify doesn't care */
95 if (!S_ISDIR(inode->i_mode))
96 return 0;
97
Eric Parisce8f76f2010-07-28 10:18:39 -040098 BUG_ON(vfsmount_mark);
99
Eric Parisce8f76f2010-07-28 10:18:39 -0400100 dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Eric Parisce8f76f2010-07-28 10:18:39 -0400102 spin_lock(&inode_mark->lock);
Eric Parisef5e2b72009-12-17 21:24:24 -0500103 prev = &dn_mark->dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 while ((dn = *prev) != NULL) {
Andreas Gruenbacher94552682009-10-15 00:13:23 +0200105 if ((dn->dn_mask & test_mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 prev = &dn->dn_next;
107 continue;
108 }
109 fown = &dn->dn_filp->f_owner;
110 send_sigio(fown, dn->dn_fd, POLL_MSG);
Eric Paris3c5119c2009-05-21 17:01:33 -0400111 if (dn->dn_mask & FS_DN_MULTISHOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 prev = &dn->dn_next;
113 else {
114 *prev = dn->dn_next;
Eric Paris3c5119c2009-05-21 17:01:33 -0400115 kmem_cache_free(dnotify_struct_cache, dn);
Eric Parisce8f76f2010-07-28 10:18:39 -0400116 dnotify_recalc_inode_mask(inode_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Eric Parisce8f76f2010-07-28 10:18:39 -0400120 spin_unlock(&inode_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400121
122 return 0;
123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Eric Parisef5e2b72009-12-17 21:24:24 -0500125static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400126{
Eric Parisef5e2b72009-12-17 21:24:24 -0500127 struct dnotify_mark *dn_mark = container_of(fsn_mark,
128 struct dnotify_mark,
129 fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400130
Eric Parisef5e2b72009-12-17 21:24:24 -0500131 BUG_ON(dn_mark->dn);
Eric Paris3c5119c2009-05-21 17:01:33 -0400132
Eric Parisef5e2b72009-12-17 21:24:24 -0500133 kmem_cache_free(dnotify_mark_cache, dn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400134}
135
136static struct fsnotify_ops dnotify_fsnotify_ops = {
137 .handle_event = dnotify_handle_event,
Eric Paris3c5119c2009-05-21 17:01:33 -0400138};
139
140/*
141 * Called every time a file is closed. Looks first for a dnotify mark on the
Eric Parise61ce862009-12-17 21:24:24 -0500142 * inode. If one is found run all of the ->dn structures attached to that
Eric Paris3c5119c2009-05-21 17:01:33 -0400143 * mark for one relevant to this process closing the file and remove that
144 * dnotify_struct. If that was the last dnotify_struct also remove the
Eric Parise61ce862009-12-17 21:24:24 -0500145 * fsnotify_mark.
Eric Paris3c5119c2009-05-21 17:01:33 -0400146 */
147void dnotify_flush(struct file *filp, fl_owner_t id)
148{
Eric Parisef5e2b72009-12-17 21:24:24 -0500149 struct fsnotify_mark *fsn_mark;
150 struct dnotify_mark *dn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400151 struct dnotify_struct *dn;
152 struct dnotify_struct **prev;
153 struct inode *inode;
Jan Kara4712e7222015-09-04 15:43:12 -0700154 bool free = false;
Eric Paris3c5119c2009-05-21 17:01:33 -0400155
Al Viro496ad9a2013-01-23 17:07:38 -0500156 inode = file_inode(filp);
Eric Paris3c5119c2009-05-21 17:01:33 -0400157 if (!S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return;
159
Eric Paris5444e292009-12-17 21:24:27 -0500160 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500161 if (!fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400162 return;
Eric Parisef5e2b72009-12-17 21:24:24 -0500163 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400164
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700165 mutex_lock(&dnotify_group->mark_mutex);
Eric Paris3c5119c2009-05-21 17:01:33 -0400166
Eric Parisef5e2b72009-12-17 21:24:24 -0500167 spin_lock(&fsn_mark->lock);
168 prev = &dn_mark->dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400169 while ((dn = *prev) != NULL) {
170 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
171 *prev = dn->dn_next;
172 kmem_cache_free(dnotify_struct_cache, dn);
Eric Parisef5e2b72009-12-17 21:24:24 -0500173 dnotify_recalc_inode_mask(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400174 break;
175 }
176 prev = &dn->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Eric Paris3c5119c2009-05-21 17:01:33 -0400178
Eric Parisef5e2b72009-12-17 21:24:24 -0500179 spin_unlock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400180
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700181 /* nothing else could have found us thanks to the dnotify_groups
182 mark_mutex */
Jan Kara4712e7222015-09-04 15:43:12 -0700183 if (dn_mark->dn == NULL) {
184 fsnotify_detach_mark(fsn_mark);
185 free = true;
186 }
Eric Paris3c5119c2009-05-21 17:01:33 -0400187
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700188 mutex_unlock(&dnotify_group->mark_mutex);
Eric Paris3c5119c2009-05-21 17:01:33 -0400189
Jan Kara4712e7222015-09-04 15:43:12 -0700190 if (free)
191 fsnotify_free_mark(fsn_mark);
Eric Parisef5e2b72009-12-17 21:24:24 -0500192 fsnotify_put_mark(fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
Eric Paris3c5119c2009-05-21 17:01:33 -0400194
195/* this conversion is done only at watch creation */
196static __u32 convert_arg(unsigned long arg)
197{
198 __u32 new_mask = FS_EVENT_ON_CHILD;
199
200 if (arg & DN_MULTISHOT)
201 new_mask |= FS_DN_MULTISHOT;
202 if (arg & DN_DELETE)
203 new_mask |= (FS_DELETE | FS_MOVED_FROM);
204 if (arg & DN_MODIFY)
205 new_mask |= FS_MODIFY;
206 if (arg & DN_ACCESS)
207 new_mask |= FS_ACCESS;
208 if (arg & DN_ATTRIB)
209 new_mask |= FS_ATTRIB;
210 if (arg & DN_RENAME)
211 new_mask |= FS_DN_RENAME;
212 if (arg & DN_CREATE)
213 new_mask |= (FS_CREATE | FS_MOVED_TO);
214
215 return new_mask;
216}
217
218/*
219 * If multiple processes watch the same inode with dnotify there is only one
Eric Parise61ce862009-12-17 21:24:24 -0500220 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
Eric Paris3c5119c2009-05-21 17:01:33 -0400221 * onto that mark. This function either attaches the new dnotify_struct onto
222 * that list, or it |= the mask onto an existing dnofiy_struct.
223 */
Eric Parisef5e2b72009-12-17 21:24:24 -0500224static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
Eric Paris3c5119c2009-05-21 17:01:33 -0400225 fl_owner_t id, int fd, struct file *filp, __u32 mask)
226{
227 struct dnotify_struct *odn;
228
Eric Parisef5e2b72009-12-17 21:24:24 -0500229 odn = dn_mark->dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400230 while (odn != NULL) {
231 /* adding more events to existing dnofiy_struct? */
232 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
233 odn->dn_fd = fd;
234 odn->dn_mask |= mask;
235 return -EEXIST;
236 }
237 odn = odn->dn_next;
238 }
239
240 dn->dn_mask = mask;
241 dn->dn_fd = fd;
242 dn->dn_filp = filp;
243 dn->dn_owner = id;
Eric Parisef5e2b72009-12-17 21:24:24 -0500244 dn->dn_next = dn_mark->dn;
245 dn_mark->dn = dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400246
247 return 0;
248}
249
250/*
251 * When a process calls fcntl to attach a dnotify watch to a directory it ends
252 * up here. Allocate both a mark for fsnotify to add and a dnotify_struct to be
253 * attached to the fsnotify_mark.
254 */
255int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
256{
Eric Parisef5e2b72009-12-17 21:24:24 -0500257 struct dnotify_mark *new_dn_mark, *dn_mark;
258 struct fsnotify_mark *new_fsn_mark, *fsn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400259 struct dnotify_struct *dn;
260 struct inode *inode;
261 fl_owner_t id = current->files;
262 struct file *f;
263 int destroy = 0, error = 0;
264 __u32 mask;
265
266 /* we use these to tell if we need to kfree */
Eric Parisef5e2b72009-12-17 21:24:24 -0500267 new_fsn_mark = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400268 dn = NULL;
269
270 if (!dir_notify_enable) {
271 error = -EINVAL;
272 goto out_err;
273 }
274
275 /* a 0 mask means we are explicitly removing the watch */
276 if ((arg & ~DN_MULTISHOT) == 0) {
277 dnotify_flush(filp, id);
278 error = 0;
279 goto out_err;
280 }
281
282 /* dnotify only works on directories */
Al Viro496ad9a2013-01-23 17:07:38 -0500283 inode = file_inode(filp);
Eric Paris3c5119c2009-05-21 17:01:33 -0400284 if (!S_ISDIR(inode->i_mode)) {
285 error = -ENOTDIR;
286 goto out_err;
287 }
288
289 /* expect most fcntl to add new rather than augment old */
290 dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
291 if (!dn) {
292 error = -ENOMEM;
293 goto out_err;
294 }
295
296 /* new fsnotify mark, we expect most fcntl calls to add a new mark */
Eric Parisef5e2b72009-12-17 21:24:24 -0500297 new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
298 if (!new_dn_mark) {
Eric Paris3c5119c2009-05-21 17:01:33 -0400299 error = -ENOMEM;
300 goto out_err;
301 }
302
303 /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
304 mask = convert_arg(arg);
305
Eric Parisef5e2b72009-12-17 21:24:24 -0500306 /* set up the new_fsn_mark and new_dn_mark */
307 new_fsn_mark = &new_dn_mark->fsn_mark;
308 fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
309 new_fsn_mark->mask = mask;
310 new_dn_mark->dn = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400311
312 /* this is needed to prevent the fcntl/close race described below */
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700313 mutex_lock(&dnotify_group->mark_mutex);
Eric Paris3c5119c2009-05-21 17:01:33 -0400314
Eric Parisef5e2b72009-12-17 21:24:24 -0500315 /* add the new_fsn_mark or find an old one. */
Eric Paris5444e292009-12-17 21:24:27 -0500316 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500317 if (fsn_mark) {
318 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
319 spin_lock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400320 } else {
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700321 fsnotify_add_mark_locked(new_fsn_mark, dnotify_group, inode,
322 NULL, 0);
Eric Parisef5e2b72009-12-17 21:24:24 -0500323 spin_lock(&new_fsn_mark->lock);
324 fsn_mark = new_fsn_mark;
325 dn_mark = new_dn_mark;
326 /* we used new_fsn_mark, so don't free it */
327 new_fsn_mark = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400328 }
329
330 rcu_read_lock();
331 f = fcheck(fd);
332 rcu_read_unlock();
333
334 /* if (f != filp) means that we lost a race and another task/thread
335 * actually closed the fd we are still playing with before we grabbed
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700336 * the dnotify_groups mark_mutex and fsn_mark->lock. Since closing the
337 * fd is the only time we clean up the marks we need to get our mark
338 * off the list. */
Eric Paris3c5119c2009-05-21 17:01:33 -0400339 if (f != filp) {
340 /* if we added ourselves, shoot ourselves, it's possible that
Eric Parisef5e2b72009-12-17 21:24:24 -0500341 * the flush actually did shoot this fsn_mark. That's fine too
Eric Paris3c5119c2009-05-21 17:01:33 -0400342 * since multiple calls to destroy_mark is perfectly safe, if
Eric Parisef5e2b72009-12-17 21:24:24 -0500343 * we found a dn_mark already attached to the inode, just sod
Eric Paris3c5119c2009-05-21 17:01:33 -0400344 * off silently as the flush at close time dealt with it.
345 */
Eric Parisef5e2b72009-12-17 21:24:24 -0500346 if (dn_mark == new_dn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400347 destroy = 1;
348 goto out;
349 }
350
Jeff Laytone0b93ed2014-08-22 11:27:32 -0400351 __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
Eric Paris3c5119c2009-05-21 17:01:33 -0400352
Eric Parisef5e2b72009-12-17 21:24:24 -0500353 error = attach_dn(dn, dn_mark, id, fd, filp, mask);
354 /* !error means that we attached the dn to the dn_mark, so don't free it */
Eric Paris3c5119c2009-05-21 17:01:33 -0400355 if (!error)
356 dn = NULL;
357 /* -EEXIST means that we didn't add this new dn and used an old one.
358 * that isn't an error (and the unused dn should be freed) */
359 else if (error == -EEXIST)
360 error = 0;
361
Eric Parisef5e2b72009-12-17 21:24:24 -0500362 dnotify_recalc_inode_mask(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400363out:
Eric Parisef5e2b72009-12-17 21:24:24 -0500364 spin_unlock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400365
366 if (destroy)
Jan Kara4712e7222015-09-04 15:43:12 -0700367 fsnotify_detach_mark(fsn_mark);
Lino Sanfilippo52f85722013-07-08 15:59:44 -0700368 mutex_unlock(&dnotify_group->mark_mutex);
Jan Kara4712e7222015-09-04 15:43:12 -0700369 if (destroy)
370 fsnotify_free_mark(fsn_mark);
Eric Parisef5e2b72009-12-17 21:24:24 -0500371 fsnotify_put_mark(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400372out_err:
Eric Parisef5e2b72009-12-17 21:24:24 -0500373 if (new_fsn_mark)
374 fsnotify_put_mark(new_fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400375 if (dn)
376 kmem_cache_free(dnotify_struct_cache, dn);
377 return error;
378}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380static int __init dnotify_init(void)
381{
Eric Paris3c5119c2009-05-21 17:01:33 -0400382 dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
Eric Parisef5e2b72009-12-17 21:24:24 -0500383 dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
Eric Paris3c5119c2009-05-21 17:01:33 -0400384
Eric Paris0d2e2a12009-12-17 21:24:22 -0500385 dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
Eric Paris3c5119c2009-05-21 17:01:33 -0400386 if (IS_ERR(dnotify_group))
387 panic("unable to allocate fsnotify group for dnotify\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 0;
389}
390
391module_init(dnotify_init)