diff options
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/namespace.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c index 8102391bb374..1807866bb3ab 100644 --- a/fs/nfs/namespace.c +++ b/fs/nfs/namespace.c | |||
@@ -276,7 +276,10 @@ out: | |||
276 | nfs_free_fattr(fattr); | 276 | nfs_free_fattr(fattr); |
277 | nfs_free_fhandle(fh); | 277 | nfs_free_fhandle(fh); |
278 | out_nofree: | 278 | out_nofree: |
279 | dprintk("<-- nfs_follow_mountpoint() = %p\n", mnt); | 279 | if (IS_ERR(mnt)) |
280 | dprintk("<-- %s(): error %ld\n", __func__, PTR_ERR(mnt)); | ||
281 | else | ||
282 | dprintk("<-- %s() = %p\n", __func__, mnt); | ||
280 | return mnt; | 283 | return mnt; |
281 | } | 284 | } |
282 | 285 | ||