mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
autofs: small cleanup in autofs_getpath()
We don't set "*name" so it's slightly nicer to just pass "name" instead of "&name". Link: http://lkml.kernel.org/r/20180531064736.lnisb55eajwjynvk@kili.mountain Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: "Eric W. Biederman" <ebiederm@xmission.com> Acked-by: Ian Kent <raven@themaw.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
6471e93863
commit
016e92da03
@ -179,7 +179,7 @@ static void autofs_notify_daemon(struct autofs_sb_info *sbi,
|
||||
}
|
||||
|
||||
static int autofs_getpath(struct autofs_sb_info *sbi,
|
||||
struct dentry *dentry, char **name)
|
||||
struct dentry *dentry, char *name)
|
||||
{
|
||||
struct dentry *root = sbi->sb->s_root;
|
||||
struct dentry *tmp;
|
||||
@ -189,7 +189,7 @@ static int autofs_getpath(struct autofs_sb_info *sbi,
|
||||
unsigned seq;
|
||||
|
||||
rename_retry:
|
||||
buf = *name;
|
||||
buf = name;
|
||||
len = 0;
|
||||
|
||||
seq = read_seqbegin(&rename_lock);
|
||||
@ -395,7 +395,7 @@ int autofs_wait(struct autofs_sb_info *sbi,
|
||||
if (IS_ROOT(dentry) && autofs_type_trigger(sbi->type))
|
||||
qstr.len = sprintf(name, "%p", dentry);
|
||||
else {
|
||||
qstr.len = autofs_getpath(sbi, dentry, &name);
|
||||
qstr.len = autofs_getpath(sbi, dentry, name);
|
||||
if (!qstr.len) {
|
||||
kfree(name);
|
||||
return -ENOENT;
|
||||
|
Loading…
Reference in New Issue
Block a user