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
Kirill Smelkov
linux
Commits
668696dc
Commit
668696dc
authored
Feb 22, 2015
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch path_mountpoint() to struct filename
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
5eb6b495
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
fs/namei.c
fs/namei.c
+11
-10
No files found.
fs/namei.c
View file @
668696dc
...
...
@@ -2337,12 +2337,13 @@ mountpoint_last(struct nameidata *nd, struct path *path)
* Returns 0 and "path" will be valid on success; Returns error otherwise.
*/
static
int
path_mountpoint
(
int
dfd
,
const
char
*
name
,
struct
path
*
path
,
unsigned
int
flags
)
path_mountpoint
(
int
dfd
,
const
struct
filename
*
name
,
struct
path
*
path
,
unsigned
int
flags
)
{
struct
nameidata
nd
;
int
err
;
err
=
path_init
(
dfd
,
name
,
flags
,
&
nd
);
err
=
path_init
(
dfd
,
name
->
name
,
flags
,
&
nd
);
if
(
unlikely
(
err
))
goto
out
;
...
...
@@ -2366,20 +2367,20 @@ path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags
}
static
int
filename_mountpoint
(
int
dfd
,
struct
filename
*
s
,
struct
path
*
path
,
filename_mountpoint
(
int
dfd
,
struct
filename
*
name
,
struct
path
*
path
,
unsigned
int
flags
)
{
int
error
;
if
(
IS_ERR
(
s
))
return
PTR_ERR
(
s
);
error
=
path_mountpoint
(
dfd
,
s
->
name
,
path
,
flags
|
LOOKUP_RCU
);
if
(
IS_ERR
(
name
))
return
PTR_ERR
(
name
);
error
=
path_mountpoint
(
dfd
,
name
,
path
,
flags
|
LOOKUP_RCU
);
if
(
unlikely
(
error
==
-
ECHILD
))
error
=
path_mountpoint
(
dfd
,
s
->
name
,
path
,
flags
);
error
=
path_mountpoint
(
dfd
,
name
,
path
,
flags
);
if
(
unlikely
(
error
==
-
ESTALE
))
error
=
path_mountpoint
(
dfd
,
s
->
name
,
path
,
flags
|
LOOKUP_REVAL
);
error
=
path_mountpoint
(
dfd
,
name
,
path
,
flags
|
LOOKUP_REVAL
);
if
(
likely
(
!
error
))
audit_inode
(
s
,
path
->
dentry
,
0
);
putname
(
s
);
audit_inode
(
name
,
path
->
dentry
,
0
);
putname
(
name
);
return
error
;
}
...
...
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