Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
5ffc2836
Commit
5ffc2836
authored
13 years ago
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
vfs: kill ->mnt_devname use in afs printks
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
e407699e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs/afs/mntpt.c
+2
-2
2 additions, 2 deletions
fs/afs/mntpt.c
with
2 additions
and
2 deletions
fs/afs/mntpt.c
+
2
−
2
View file @
5ffc2836
...
...
@@ -242,7 +242,7 @@ struct vfsmount *afs_d_automount(struct path *path)
{
struct
vfsmount
*
newmnt
;
_enter
(
"{%s
,%s}"
,
path
->
mnt
->
mnt_devname
,
path
->
dentry
->
d_name
.
name
);
_enter
(
"{%s
}"
,
path
->
dentry
->
d_name
.
name
);
newmnt
=
afs_mntpt_do_automount
(
path
->
dentry
);
if
(
IS_ERR
(
newmnt
))
...
...
@@ -252,7 +252,7 @@ struct vfsmount *afs_d_automount(struct path *path)
mnt_set_expiry
(
newmnt
,
&
afs_vfsmounts
);
queue_delayed_work
(
afs_wq
,
&
afs_mntpt_expiry_timer
,
afs_mntpt_expiry_timeout
*
HZ
);
_leave
(
" = %p
{%s}
"
,
newmnt
,
newmnt
->
mnt_devname
);
_leave
(
" = %p"
,
newmnt
);
return
newmnt
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment