projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df5d8c8
)
fs/9p: Fix error reported by coccicheck
author
Aneesh Kumar K.V
<aneesh.kumar@linux.vnet.ibm.com>
Thu, 24 Mar 2011 17:34:41 +0000
(23:04 +0530)
committer
Eric Van Hensbergen
<ericvh@gmail.com>
Fri, 15 Apr 2011 20:26:14 +0000
(15:26 -0500)
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>
fs/9p/vfs_inode_dotl.c
patch
|
blob
|
history
diff --git
a/fs/9p/vfs_inode_dotl.c
b/fs/9p/vfs_inode_dotl.c
index ffbb113d5f33537892fd001dd0d75af9e6d1fd69..82a7c38ddad0dec0c9ecded6fcc4d3eb93a50350 100644
(file)
--- 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);