nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / inotify.h
CommitLineData
0eeca283
RL
1/*
2 * Inode based directory notification for Linux
3 *
4 * Copyright (C) 2005 John McCutchan
5 */
0eeca283
RL
6#ifndef _LINUX_INOTIFY_H
7#define _LINUX_INOTIFY_H
8
d14f1729 9#include <linux/sysctl.h>
607ca46e
DH
10#include <uapi/linux/inotify.h>
11
d14f1729 12extern struct ctl_table inotify_table[]; /* for sysctl */
f874e1ac
EP
13
14#define ALL_INOTIFY_BITS (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | \
15 IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | \
16 IN_MOVED_TO | IN_CREATE | IN_DELETE | \
17 IN_DELETE_SELF | IN_MOVE_SELF | IN_UNMOUNT | \
18 IN_Q_OVERFLOW | IN_IGNORED | IN_ONLYDIR | \
19 IN_DONT_FOLLOW | IN_EXCL_UNLINK | IN_MASK_ADD | \
20 IN_ISDIR | IN_ONESHOT)
21
0eeca283 22#endif /* _LINUX_INOTIFY_H */