]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/inotify.h
mm/hotplug: invalid PFNs from pfn_to_online_page()
[mirror_ubuntu-bionic-kernel.git] / include / linux / inotify.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
0eeca283
RL
2/*
3 * Inode based directory notification for Linux
4 *
5 * Copyright (C) 2005 John McCutchan
6 */
0eeca283
RL
7#ifndef _LINUX_INOTIFY_H
8#define _LINUX_INOTIFY_H
9
d14f1729 10#include <linux/sysctl.h>
607ca46e
DH
11#include <uapi/linux/inotify.h>
12
d14f1729 13extern struct ctl_table inotify_table[]; /* for sysctl */
f874e1ac
EP
14
15#define ALL_INOTIFY_BITS (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | \
16 IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | \
17 IN_MOVED_TO | IN_CREATE | IN_DELETE | \
18 IN_DELETE_SELF | IN_MOVE_SELF | IN_UNMOUNT | \
19 IN_Q_OVERFLOW | IN_IGNORED | IN_ONLYDIR | \
20 IN_DONT_FOLLOW | IN_EXCL_UNLINK | IN_MASK_ADD | \
21 IN_ISDIR | IN_ONESHOT)
22
0eeca283 23#endif /* _LINUX_INOTIFY_H */