diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-07-14 13:24:54 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-08-30 21:29:32 -0400 |
commit | fbb7d9d56d167247f2eb7261038385cab1073c37 (patch) | |
tree | c489dc663aa9e3f94a37714ce533cc94fdb2e066 /include/linux/namei.h | |
parent | c9b07eab0c8760bdd4cf8624c482ee145a322a3b (diff) |
kill LOOKUP_NO_EVAL, don't bother including namei.h from audit.h
The former has no users left; the latter was only to get LOOKUP_...
values to remapper in audit_inode() and that's an ex-parrot now.
All places that use symbols from namei.h include it either directly
or (in a few cases) via a local header, like fs/autofs/autofs_i.h
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/namei.h')
-rw-r--r-- | include/linux/namei.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/namei.h b/include/linux/namei.h index 9138b4471dbf..ac665cbc659f 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h @@ -25,7 +25,6 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND}; * - dentry cache is untrusted; force a real lookup * - suppress terminal automount * - skip revalidation - * - don't fetch xattrs on audit_inode */ #define LOOKUP_FOLLOW 0x0001 #define LOOKUP_DIRECTORY 0x0002 @@ -35,7 +34,6 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND}; #define LOOKUP_REVAL 0x0020 #define LOOKUP_RCU 0x0040 #define LOOKUP_NO_REVAL 0x0080 -#define LOOKUP_NO_EVAL 0x0100 /* * Intent data |