diff options
author | Christian Brauner <[email protected]> | 2021-05-28 11:24:15 +0200 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2021-05-28 17:44:36 +0200 |
commit | 5c350aa11b441b32baf3bfe4018168cb8d10cef7 (patch) | |
tree | ae298e61f81665fc0c92a85c36ff4bb39a925a57 | |
parent | c4681547bcce777daf576925a966ffa824edd09d (diff) |
fcntl: remove unused VALID_UPGRADE_FLAGS
We currently do not maky use of this feature and should we implement
something like this in the future it's trivial to add it back.
Link: https://lore.kernel.org/r/[email protected]
Cc: Christoph Hellwig <[email protected]>
Cc: Aleksa Sarai <[email protected]>
Cc: Al Viro <[email protected]>
Cc: [email protected]
Suggested-by: Richard Guy Briggs <[email protected]>
Reviewed-by: Richard Guy Briggs <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | include/linux/fcntl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/fcntl.h b/include/linux/fcntl.h index 766fcd973beb..a332e79b3207 100644 --- a/include/linux/fcntl.h +++ b/include/linux/fcntl.h @@ -12,10 +12,6 @@ FASYNC | O_DIRECT | O_LARGEFILE | O_DIRECTORY | O_NOFOLLOW | \ O_NOATIME | O_CLOEXEC | O_PATH | __O_TMPFILE) -/* List of all valid flags for the how->upgrade_mask argument: */ -#define VALID_UPGRADE_FLAGS \ - (UPGRADE_NOWRITE | UPGRADE_NOREAD) - /* List of all valid flags for the how->resolve argument: */ #define VALID_RESOLVE_FLAGS \ (RESOLVE_NO_XDEV | RESOLVE_NO_MAGICLINKS | RESOLVE_NO_SYMLINKS | \ |