Browse Source

9p: remove unused 'p9_fid' struct pointer

Get rid of the useless '*fid' variable.

Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Geyslan G. Bem 12 years ago
parent
commit
bd126e5e58
1 changed files with 1 additions and 2 deletions
  1. 1 2
      fs/9p/cache.c

+ 1 - 2
fs/9p/cache.c

@@ -239,13 +239,12 @@ void v9fs_cache_inode_flush_cookie(struct inode *inode)
 void v9fs_cache_inode_set_cookie(struct inode *inode, struct file *filp)
 void v9fs_cache_inode_set_cookie(struct inode *inode, struct file *filp)
 {
 {
 	struct v9fs_inode *v9inode = V9FS_I(inode);
 	struct v9fs_inode *v9inode = V9FS_I(inode);
-	struct p9_fid *fid;
 
 
 	if (!v9inode->fscache)
 	if (!v9inode->fscache)
 		return;
 		return;
 
 
 	spin_lock(&v9inode->fscache_lock);
 	spin_lock(&v9inode->fscache_lock);
-	fid = filp->private_data;
+
 	if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
 	if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
 		v9fs_cache_inode_flush_cookie(inode);
 		v9fs_cache_inode_flush_cookie(inode);
 	else
 	else