mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
ff0b16a985
fanotify is a novel file notification system which bases notification on giving userspace both an event type (open, close, read, write) and an open file descriptor to the object in question. This should address a number of races and problems with other notification systems like inotify and dnotify and should allow the future implementation of blocking or access controlled notification. These are useful for on access scanners or hierachical storage management schemes. This patch just implements the basics of the fsnotify functions. Signed-off-by: Eric Paris <eparis@redhat.com>
7 lines
135 B
Plaintext
7 lines
135 B
Plaintext
config FSNOTIFY
|
|
def_bool n
|
|
|
|
source "fs/notify/dnotify/Kconfig"
|
|
source "fs/notify/inotify/Kconfig"
|
|
source "fs/notify/fanotify/Kconfig"
|