aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p
diff options
context:
space:
mode:
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>2011-03-24 23:04:41 +0530
committerEric Van Hensbergen <ericvh@gmail.com>2011-04-15 15:26:14 -0500
commit936bb2d7034165fd6ef7afea54057da65c329a27 (patch)
tree04f84ae7997497fe130ae721f83dd99eca398f67 /fs/9p
parentdf5d8c80f1871d9e79af4b0f3656a9528a7d4bab (diff)
downloadkernel_samsung_smdk4412-936bb2d7034165fd6ef7afea54057da65c329a27.zip
kernel_samsung_smdk4412-936bb2d7034165fd6ef7afea54057da65c329a27.tar.gz
kernel_samsung_smdk4412-936bb2d7034165fd6ef7afea54057da65c329a27.tar.bz2
fs/9p: Fix error reported by coccicheck
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p')
-rw-r--r--fs/9p/vfs_inode_dotl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
index ffbb113..82a7c38 100644
--- a/fs/9p/vfs_inode_dotl.c
+++ b/fs/9p/vfs_inode_dotl.c
@@ -811,7 +811,7 @@ v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
fid = v9fs_fid_lookup(dentry);
if (IS_ERR(fid)) {
__putname(link);
- link = ERR_PTR(PTR_ERR(fid));
+ link = ERR_CAST(fid);
goto ndset;
}
retval = p9_client_readlink(fid, &target);