Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
e4bd1c1a
Commit
e4bd1c1a
authored
May 12, 2015
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
namei: move putname() call into filename_lookup()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
625b6d10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
23 deletions
+15
-23
fs/namei.c
fs/namei.c
+15
-23
No files found.
fs/namei.c
View file @
e4bd1c1a
...
...
@@ -2134,6 +2134,7 @@ static int filename_lookup(int dfd, struct filename *name, unsigned flags,
if
(
likely
(
!
retval
))
audit_inode
(
name
,
path
->
dentry
,
flags
&
LOOKUP_PARENT
);
restore_nameidata
(
saved_nd
);
putname
(
name
);
return
retval
;
}
...
...
@@ -2210,13 +2211,9 @@ int kern_path(const char *name, unsigned int flags, struct path *path)
{
struct
nameidata
nd
;
struct
filename
*
filename
=
getname_kernel
(
name
);
int
res
=
PTR_ERR
(
filename
);
if
(
!
IS_ERR
(
filename
))
{
res
=
filename_lookup
(
AT_FDCWD
,
filename
,
flags
,
&
nd
,
path
);
putname
(
filename
);
}
return
res
;
if
(
IS_ERR
(
filename
))
return
PTR_ERR
(
filename
);
return
filename_lookup
(
AT_FDCWD
,
filename
,
flags
,
&
nd
,
path
);
}
EXPORT_SYMBOL
(
kern_path
);
...
...
@@ -2232,21 +2229,19 @@ int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
const
char
*
name
,
unsigned
int
flags
,
struct
path
*
path
)
{
struct
nameidata
nd
;
struct
filename
*
filename
=
getname_kernel
(
name
);
int
err
=
PTR_ERR
(
filename
);
BUG_ON
(
flags
&
LOOKUP_PARENT
);
if
(
IS_ERR
(
filename
))
return
PTR_ERR
(
filename
);
nd
.
root
.
dentry
=
dentry
;
nd
.
root
.
mnt
=
mnt
;
/* the first argument of filename_lookup() is ignored with LOOKUP_ROOT */
if
(
!
IS_ERR
(
filename
))
{
struct
nameidata
nd
;
nd
.
root
.
dentry
=
dentry
;
nd
.
root
.
mnt
=
mnt
;
err
=
filename_lookup
(
AT_FDCWD
,
filename
,
return
filename_lookup
(
AT_FDCWD
,
filename
,
flags
|
LOOKUP_ROOT
,
&
nd
,
path
);
putname
(
filename
);
}
return
err
;
}
EXPORT_SYMBOL
(
vfs_path_lookup
);
...
...
@@ -2306,15 +2301,12 @@ int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
{
struct
nameidata
nd
;
struct
filename
*
tmp
=
getname_flags
(
name
,
flags
,
empty
);
i
nt
err
=
PTR_ERR
(
tmp
);
if
(
!
IS_ERR
(
tmp
))
{
i
f
(
IS_ERR
(
tmp
))
return
PTR_ERR
(
tmp
);
BUG_ON
(
flags
&
LOOKUP_PARENT
);
BUG_ON
(
flags
&
LOOKUP_PARENT
);
err
=
filename_lookup
(
dfd
,
tmp
,
flags
,
&
nd
,
path
);
putname
(
tmp
);
}
return
err
;
return
filename_lookup
(
dfd
,
tmp
,
flags
,
&
nd
,
path
);
}
int
user_path_at
(
int
dfd
,
const
char
__user
*
name
,
unsigned
flags
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment