diff options
author | Scott Mayhew <smayhew@redhat.com> | 2019-12-10 07:31:15 -0500 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2020-01-15 10:15:17 -0500 |
commit | ce8866f0913ff157edc098f06bad07763ad317e7 (patch) | |
tree | 58ff854f41cb7f7bd626a9d734f883c804488887 /fs/nfs/namespace.c | |
parent | 62a55d088cd87d480a6fd67b0d63b14ccae80838 (diff) | |
download | linux-stable-ce8866f0913ff157edc098f06bad07763ad317e7.tar.gz linux-stable-ce8866f0913ff157edc098f06bad07763ad317e7.tar.bz2 linux-stable-ce8866f0913ff157edc098f06bad07763ad317e7.zip |
NFS: Attach supplementary error information to fs_context.
Split out from commit "NFS: Add fs_context support."
Add wrappers nfs_errorf(), nfs_invalf(), and nfs_warnf() which log error
information to the fs_context. Convert some printk's to use these new
wrappers instead.
Signed-off-by: Scott Mayhew <smayhew@redhat.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/namespace.c')
-rw-r--r-- | fs/nfs/namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c index d537350c1fb7..4fd22c0d730c 100644 --- a/fs/nfs/namespace.c +++ b/fs/nfs/namespace.c @@ -281,7 +281,7 @@ int nfs_do_submount(struct fs_context *fc) p = nfs_devname(dentry, buffer, 4096); if (IS_ERR(p)) { - dprintk("NFS: Couldn't determine submount pathname\n"); + nfs_errorf(fc, "NFS: Couldn't determine submount pathname"); ret = PTR_ERR(p); } else { ret = vfs_parse_fs_string(fc, "source", p, buffer + 4096 - p); |