diff options
author | Amir Goldstein <amir73il@gmail.com> | 2020-03-19 17:10:09 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2020-03-23 18:00:47 +0100 |
commit | 6473ea760ca1707ade74de5b57e74189d14f8e10 (patch) | |
tree | 488ceb321e716f6c89b641cff29e2a92e2600afb /include/uapi/linux/fanotify.h | |
parent | f8788d86ab28f61f7b46eb6be375f8a726783636 (diff) | |
download | linux-next-6473ea760ca1707ade74de5b57e74189d14f8e10.tar.gz |
fsnotify: tidy up FS_ and FAN_ constants
Order by value, so the free value ranges are easier to find.
Link: https://lore.kernel.org/r/20200319151022.31456-2-amir73il@gmail.com
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include/uapi/linux/fanotify.h')
-rw-r--r-- | include/uapi/linux/fanotify.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/fanotify.h b/include/uapi/linux/fanotify.h index b9effa6f8503..2a1844edda47 100644 --- a/include/uapi/linux/fanotify.h +++ b/include/uapi/linux/fanotify.h @@ -25,9 +25,9 @@ #define FAN_ACCESS_PERM 0x00020000 /* File accessed in perm check */ #define FAN_OPEN_EXEC_PERM 0x00040000 /* File open/exec in perm check */ -#define FAN_ONDIR 0x40000000 /* event occurred against dir */ +#define FAN_EVENT_ON_CHILD 0x08000000 /* Interested in child events */ -#define FAN_EVENT_ON_CHILD 0x08000000 /* interested in child events */ +#define FAN_ONDIR 0x40000000 /* Event occurred against dir */ /* helper events */ #define FAN_CLOSE (FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */ |