mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
nfs: Clean up debugging in nfs_follow_mountpoint()
Clean up: Fix a debugging message which had an obsolete function name
in it (nfs_follow_mountpoint).
Introduced by commit 36d43a43
"NFS: Use d_automount() rather than
abusing follow_link()" (January 14, 2011)
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
dbb9c2a22d
commit
d7c3267502
1 changed files with 4 additions and 1 deletions
|
@ -276,7 +276,10 @@ out:
|
|||
nfs_free_fattr(fattr);
|
||||
nfs_free_fhandle(fh);
|
||||
out_nofree:
|
||||
dprintk("<-- nfs_follow_mountpoint() = %p\n", mnt);
|
||||
if (IS_ERR(mnt))
|
||||
dprintk("<-- %s(): error %ld\n", __func__, PTR_ERR(mnt));
|
||||
else
|
||||
dprintk("<-- %s() = %p\n", __func__, mnt);
|
||||
return mnt;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue