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
1c755af4
Commit
1c755af4
authored
Apr 18, 2009
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch lookup_mnt()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
79ed0226
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
fs/namei.c
fs/namei.c
+3
-3
fs/namespace.c
fs/namespace.c
+2
-2
include/linux/dcache.h
include/linux/dcache.h
+1
-1
No files found.
fs/namei.c
View file @
1c755af4
...
...
@@ -702,7 +702,7 @@ static int __follow_mount(struct path *path)
{
int
res
=
0
;
while
(
d_mountpoint
(
path
->
dentry
))
{
struct
vfsmount
*
mounted
=
lookup_mnt
(
path
->
mnt
,
path
->
dentry
);
struct
vfsmount
*
mounted
=
lookup_mnt
(
path
);
if
(
!
mounted
)
break
;
dput
(
path
->
dentry
);
...
...
@@ -718,7 +718,7 @@ static int __follow_mount(struct path *path)
static
void
follow_mount
(
struct
path
*
path
)
{
while
(
d_mountpoint
(
path
->
dentry
))
{
struct
vfsmount
*
mounted
=
lookup_mnt
(
path
->
mnt
,
path
->
dentry
);
struct
vfsmount
*
mounted
=
lookup_mnt
(
path
);
if
(
!
mounted
)
break
;
dput
(
path
->
dentry
);
...
...
@@ -735,7 +735,7 @@ int follow_down(struct path *path)
{
struct
vfsmount
*
mounted
;
mounted
=
lookup_mnt
(
path
->
mnt
,
path
->
dentry
);
mounted
=
lookup_mnt
(
path
);
if
(
mounted
)
{
dput
(
path
->
dentry
);
mntput
(
path
->
mnt
);
...
...
fs/namespace.c
View file @
1c755af4
...
...
@@ -442,11 +442,11 @@ struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
* lookup_mnt increments the ref count before returning
* the vfsmount struct.
*/
struct
vfsmount
*
lookup_mnt
(
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
)
struct
vfsmount
*
lookup_mnt
(
struct
path
*
path
)
{
struct
vfsmount
*
child_mnt
;
spin_lock
(
&
vfsmount_lock
);
if
((
child_mnt
=
__lookup_mnt
(
mnt
,
dentry
,
1
)))
if
((
child_mnt
=
__lookup_mnt
(
path
->
mnt
,
path
->
dentry
,
1
)))
mntget
(
child_mnt
);
spin_unlock
(
&
vfsmount_lock
);
return
child_mnt
;
...
...
include/linux/dcache.h
View file @
1c755af4
...
...
@@ -370,7 +370,7 @@ static inline int d_mountpoint(struct dentry *dentry)
return
dentry
->
d_mounted
;
}
extern
struct
vfsmount
*
lookup_mnt
(
struct
vfsmount
*
,
struct
dentry
*
);
extern
struct
vfsmount
*
lookup_mnt
(
struct
path
*
);
extern
struct
dentry
*
lookup_create
(
struct
nameidata
*
nd
,
int
is_dir
);
extern
int
sysctl_vfs_cache_pressure
;
...
...
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