mirror of
https://github.com/torvalds/linux
synced 2024-11-02 18:48:59 +00:00
namei: Standardize callers of filename_create()
filename_create() has two variants, one which drops the caller's reference to filename (filename_create) and one which does not (__filename_create). This can be confusing as it's unusual to drop a caller's reference. Remove filename_create, rename __filename_create to filename_create, and convert all callers. Link: https://lore.kernel.org/linux-fsdevel/f6238254-35bd-7e97-5b27-21050c745874@oracle.com/ Cc: Christoph Hellwig <hch@infradead.org> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Stephen Brennan <stephen.s.brennan@oracle.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
794ebcea86
commit
b4a4f213a3
1 changed files with 16 additions and 18 deletions
34
fs/namei.c
34
fs/namei.c
|
@ -3620,8 +3620,8 @@ struct file *do_file_open_root(const struct path *root,
|
||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct dentry *__filename_create(int dfd, struct filename *name,
|
static struct dentry *filename_create(int dfd, struct filename *name,
|
||||||
struct path *path, unsigned int lookup_flags)
|
struct path *path, unsigned int lookup_flags)
|
||||||
{
|
{
|
||||||
struct dentry *dentry = ERR_PTR(-EEXIST);
|
struct dentry *dentry = ERR_PTR(-EEXIST);
|
||||||
struct qstr last;
|
struct qstr last;
|
||||||
|
@ -3689,20 +3689,14 @@ static struct dentry *__filename_create(int dfd, struct filename *name,
|
||||||
return dentry;
|
return dentry;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct dentry *filename_create(int dfd, struct filename *name,
|
|
||||||
struct path *path, unsigned int lookup_flags)
|
|
||||||
{
|
|
||||||
struct dentry *res = __filename_create(dfd, name, path, lookup_flags);
|
|
||||||
|
|
||||||
putname(name);
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct dentry *kern_path_create(int dfd, const char *pathname,
|
struct dentry *kern_path_create(int dfd, const char *pathname,
|
||||||
struct path *path, unsigned int lookup_flags)
|
struct path *path, unsigned int lookup_flags)
|
||||||
{
|
{
|
||||||
return filename_create(dfd, getname_kernel(pathname),
|
struct filename *filename = getname_kernel(pathname);
|
||||||
path, lookup_flags);
|
struct dentry *res = filename_create(dfd, filename, path, lookup_flags);
|
||||||
|
|
||||||
|
putname(filename);
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(kern_path_create);
|
EXPORT_SYMBOL(kern_path_create);
|
||||||
|
|
||||||
|
@ -3718,7 +3712,11 @@ EXPORT_SYMBOL(done_path_create);
|
||||||
inline struct dentry *user_path_create(int dfd, const char __user *pathname,
|
inline struct dentry *user_path_create(int dfd, const char __user *pathname,
|
||||||
struct path *path, unsigned int lookup_flags)
|
struct path *path, unsigned int lookup_flags)
|
||||||
{
|
{
|
||||||
return filename_create(dfd, getname(pathname), path, lookup_flags);
|
struct filename *filename = getname(pathname);
|
||||||
|
struct dentry *res = filename_create(dfd, filename, path, lookup_flags);
|
||||||
|
|
||||||
|
putname(filename);
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(user_path_create);
|
EXPORT_SYMBOL(user_path_create);
|
||||||
|
|
||||||
|
@ -3799,7 +3797,7 @@ static int do_mknodat(int dfd, struct filename *name, umode_t mode,
|
||||||
if (error)
|
if (error)
|
||||||
goto out1;
|
goto out1;
|
||||||
retry:
|
retry:
|
||||||
dentry = __filename_create(dfd, name, &path, lookup_flags);
|
dentry = filename_create(dfd, name, &path, lookup_flags);
|
||||||
error = PTR_ERR(dentry);
|
error = PTR_ERR(dentry);
|
||||||
if (IS_ERR(dentry))
|
if (IS_ERR(dentry))
|
||||||
goto out1;
|
goto out1;
|
||||||
|
@ -3899,7 +3897,7 @@ int do_mkdirat(int dfd, struct filename *name, umode_t mode)
|
||||||
unsigned int lookup_flags = LOOKUP_DIRECTORY;
|
unsigned int lookup_flags = LOOKUP_DIRECTORY;
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
dentry = __filename_create(dfd, name, &path, lookup_flags);
|
dentry = filename_create(dfd, name, &path, lookup_flags);
|
||||||
error = PTR_ERR(dentry);
|
error = PTR_ERR(dentry);
|
||||||
if (IS_ERR(dentry))
|
if (IS_ERR(dentry))
|
||||||
goto out_putname;
|
goto out_putname;
|
||||||
|
@ -4268,7 +4266,7 @@ int do_symlinkat(struct filename *from, int newdfd, struct filename *to)
|
||||||
goto out_putnames;
|
goto out_putnames;
|
||||||
}
|
}
|
||||||
retry:
|
retry:
|
||||||
dentry = __filename_create(newdfd, to, &path, lookup_flags);
|
dentry = filename_create(newdfd, to, &path, lookup_flags);
|
||||||
error = PTR_ERR(dentry);
|
error = PTR_ERR(dentry);
|
||||||
if (IS_ERR(dentry))
|
if (IS_ERR(dentry))
|
||||||
goto out_putnames;
|
goto out_putnames;
|
||||||
|
@ -4432,7 +4430,7 @@ int do_linkat(int olddfd, struct filename *old, int newdfd,
|
||||||
if (error)
|
if (error)
|
||||||
goto out_putnames;
|
goto out_putnames;
|
||||||
|
|
||||||
new_dentry = __filename_create(newdfd, new, &new_path,
|
new_dentry = filename_create(newdfd, new, &new_path,
|
||||||
(how & LOOKUP_REVAL));
|
(how & LOOKUP_REVAL));
|
||||||
error = PTR_ERR(new_dentry);
|
error = PTR_ERR(new_dentry);
|
||||||
if (IS_ERR(new_dentry))
|
if (IS_ERR(new_dentry))
|
||||||
|
|
Loading…
Reference in a new issue