diff options
author | Geyslan G. Bem <geyslan@gmail.com> | 2013-10-21 22:53:45 +0400 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2013-11-24 02:10:31 +0400 |
commit | dd2a0a35c3121a88af3c2228a0bc497b5e4a7f56 (patch) | |
tree | 020b668158cde3fc76b2090bee98a34fc836e659 /fs/9p/vfs_inode_dotl.c | |
parent | bdd5c28dcb8330b9074404cc92a0b83aae5606a9 (diff) | |
download | linux-dd2a0a35c3121a88af3c2228a0bc497b5e4a7f56.tar.xz |
9p: remove useless 'name' variable and assignment
There is no use of 'name' pointer. Get rid of its useless assignment.
Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p/vfs_inode_dotl.c')
-rw-r--r-- | fs/9p/vfs_inode_dotl.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c index ecacec098fbb..98013068f35b 100644 --- a/fs/9p/vfs_inode_dotl.c +++ b/fs/9p/vfs_inode_dotl.c @@ -763,7 +763,6 @@ v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry) { int err; - char *name; struct dentry *dir_dentry; struct p9_fid *dfid, *oldfid; struct v9fs_session_info *v9ses; @@ -781,8 +780,6 @@ v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir, if (IS_ERR(oldfid)) return PTR_ERR(oldfid); - name = (char *) dentry->d_name.name; - err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name); if (err < 0) { |