diff options
author | Amir Goldstein <amir73il@gmail.com> | 2020-05-27 15:54:55 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2020-05-27 18:55:54 +0200 |
commit | f17936993af054b16725d0c54baa58115f9e052a (patch) | |
tree | 8c0900fd6d54e2e5482eddc9e79d9a236e3dc7be /include | |
parent | 444fc5cde64330661bf59944c43844e7d4c2ccd8 (diff) | |
download | linux-f17936993af054b16725d0c54baa58115f9e052a.tar.bz2 |
fanotify: turn off support for FAN_DIR_MODIFY
FAN_DIR_MODIFY has been enabled by commit 44d705b0370b ("fanotify:
report name info for FAN_DIR_MODIFY event") in 5.7-rc1. Now we are
planning further extensions to the fanotify API and during that we
realized that FAN_DIR_MODIFY may behave slightly differently to be more
consistent with extensions we plan. So until we finalize these
extensions, let's not bind our hands with exposing FAN_DIR_MODIFY to
userland.
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fanotify.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/fanotify.h b/include/linux/fanotify.h index 3049a6c06d9e..b79fa9bb7359 100644 --- a/include/linux/fanotify.h +++ b/include/linux/fanotify.h @@ -47,8 +47,7 @@ * Directory entry modification events - reported only to directory * where entry is modified and not to a watching parent. */ -#define FANOTIFY_DIRENT_EVENTS (FAN_MOVE | FAN_CREATE | FAN_DELETE | \ - FAN_DIR_MODIFY) +#define FANOTIFY_DIRENT_EVENTS (FAN_MOVE | FAN_CREATE | FAN_DELETE) /* Events that can only be reported with data type FSNOTIFY_EVENT_INODE */ #define FANOTIFY_INODE_EVENTS (FANOTIFY_DIRENT_EVENTS | \ |