diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-07-14 22:42:44 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-08-31 03:30:13 +0200 |
commit | ce6595a28a15c874aee374757dcd08f537d7b24d (patch) | |
tree | 1634deb62c3a778ceb3f0ea0517bfbe0e3003590 /include | |
parent | namei.h: get the comments on LOOKUP_... in sync with reality (diff) | |
download | linux-ce6595a28a15c874aee374757dcd08f537d7b24d.tar.xz linux-ce6595a28a15c874aee374757dcd08f537d7b24d.zip |
kill the last users of user_{path,lpath,path_dir}()
old wrappers with few callers remaining; put them out of their misery...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/namei.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/linux/namei.h b/include/linux/namei.h index 1a504fc7994f..b7993980516e 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h @@ -48,22 +48,6 @@ static inline int user_path_at(int dfd, const char __user *name, unsigned flags, return user_path_at_empty(dfd, name, flags, path, NULL); } -static inline int user_path(const char __user *name, struct path *path) -{ - return user_path_at_empty(AT_FDCWD, name, LOOKUP_FOLLOW, path, NULL); -} - -static inline int user_lpath(const char __user *name, struct path *path) -{ - return user_path_at_empty(AT_FDCWD, name, 0, path, NULL); -} - -static inline int user_path_dir(const char __user *name, struct path *path) -{ - return user_path_at_empty(AT_FDCWD, name, - LOOKUP_FOLLOW | LOOKUP_DIRECTORY, path, NULL); -} - extern int kern_path(const char *, unsigned, struct path *); extern struct dentry *kern_path_create(int, const char *, struct path *, unsigned int); |