aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p
diff options
context:
space:
mode:
authorGeyslan G. Bem <geyslan@gmail.com>2013-09-28 20:32:18 -0300
committerEric Van Hensbergen <ericvh@gmail.com>2013-11-23 16:10:31 -0600
commit5d62a378ffff85ac9e581c228a9b505fb486e697 (patch)
tree2ebf574fba1f4e5cfb2e22a2cfccb876a6595733 /fs/9p
parent9p: remove unused 'p9_fid' struct pointer (diff)
downloadlinux-dev-5d62a378ffff85ac9e581c228a9b505fb486e697.tar.xz
linux-dev-5d62a378ffff85ac9e581c228a9b505fb486e697.zip
9p: remove never used return variable
Get rid of the useless 'err' variable, since the return is treated farther down without the use of it. Signed-off-by: Geyslan G. Bem <geyslan@gmail.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, 0 insertions, 2 deletions
diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
index 4c10edec26a0..589ef6afc160 100644
--- a/fs/9p/vfs_inode_dotl.c
+++ b/fs/9p/vfs_inode_dotl.c
@@ -473,13 +473,11 @@ static int
v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
struct kstat *stat)
{
- int err;
struct v9fs_session_info *v9ses;
struct p9_fid *fid;
struct p9_stat_dotl *st;
p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
- err = -EPERM;
v9ses = v9fs_dentry2v9ses(dentry);
if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
generic_fillattr(dentry->d_inode, stat);