diff options
author | YueHaibing <yuehaibing@huawei.com> | 2018-11-19 11:32:41 +0800 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-11-18 23:47:56 -0500 |
commit | 909e22e05353a783c526829427e9a8de122fba9c (patch) | |
tree | 40c9478aa149c9ad8d6fc151bf6f6ceba2edb0fb /fs/exportfs | |
parent | 53fffe29a9e664a999dd3787e4428da8c30533e0 (diff) | |
download | linux-909e22e05353a783c526829427e9a8de122fba9c.tar.bz2 |
exportfs: fix 'passing zero to ERR_PTR()' warning
Fix a static code checker warning:
fs/exportfs/expfs.c:171 reconnect_one() warn: passing zero to 'ERR_PTR'
The error path for lookup_one_len_unlocked failure
should set err to PTR_ERR.
Fixes: bbf7a8a3562f ("exportfs: move most of reconnect_path to helper function")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/exportfs')
-rw-r--r-- | fs/exportfs/expfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/exportfs/expfs.c b/fs/exportfs/expfs.c index 645158dc33f1..c8a3dfda1764 100644 --- a/fs/exportfs/expfs.c +++ b/fs/exportfs/expfs.c @@ -147,6 +147,7 @@ static struct dentry *reconnect_one(struct vfsmount *mnt, tmp = lookup_one_len_unlocked(nbuf, parent, strlen(nbuf)); if (IS_ERR(tmp)) { dprintk("%s: lookup failed: %d\n", __func__, PTR_ERR(tmp)); + err = PTR_ERR(tmp); goto out_err; } if (tmp != dentry) { |