Skip to content

Commit

Permalink
vfs: kill ->mnt_devname use in afs printks
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Jan 4, 2012
1 parent e407699 commit 5ffc283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/afs/mntpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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;
}

Expand Down

0 comments on commit 5ffc283

Please sign in to comment.