linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] NFSD: Remove setting unused variable in nfsd_vfs_read()
@ 2011-04-27 19:47 bjschuma
  2011-04-27 19:47 ` [PATCH 2/3] NFSD: Check status from nfsd4_map_bcts_dir() bjschuma
  2011-04-27 19:47 ` [PATCH 3/3] NFSD: Remove unused variable from nfsd4_decode_bind_conn_to_session() bjschuma
  0 siblings, 2 replies; 4+ messages in thread
From: bjschuma @ 2011-04-27 19:47 UTC (permalink / raw)
  To: bfields; +Cc: linux-nfs, Bryan Schumaker

From: Bryan Schumaker <bjschuma@netapp.com>

Compiling gave me this warning:
fs/nfsd/vfs.c: In function ‘nfsd_vfs_read’:
fs/nfsd/vfs.c:880:16: warning: variable ‘inode’ set but not used
[-Wunused-but-set-variable]

I discovered that a local variable "inode" was being set towards the
beginning of nfsd_vfs_read() and then ignored for the rest of the
function.

Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
---
 fs/nfsd/vfs.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index 129f3c9..07b1e58 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -877,13 +877,11 @@ static __be32
 nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
               loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
 {
-	struct inode *inode;
 	mm_segment_t	oldfs;
 	__be32		err;
 	int		host_err;
 
 	err = nfserr_perm;
-	inode = file->f_path.dentry->d_inode;
 
 	if (file->f_op->splice_read && rqstp->rq_splice_ok) {
 		struct splice_desc sd = {
-- 
1.7.4.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-04-28 21:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-27 19:47 [PATCH 1/3] NFSD: Remove setting unused variable in nfsd_vfs_read() bjschuma
2011-04-27 19:47 ` [PATCH 2/3] NFSD: Check status from nfsd4_map_bcts_dir() bjschuma
2011-04-27 19:47 ` [PATCH 3/3] NFSD: Remove unused variable from nfsd4_decode_bind_conn_to_session() bjschuma
2011-04-28 21:02   ` J. Bruce Fields

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).