All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/6 v2]cifs Fix warnings variables set but not used
@ 2010-06-19 20:47 Justin P. Mattock
  2010-06-20 21:17 ` Jeff Layton
  0 siblings, 1 reply; 6+ messages in thread
From: Justin P. Mattock @ 2010-06-19 20:47 UTC (permalink / raw)
  To: linux-cifs-client; +Cc: linux-fsdevel, linux-kernel, Justin P. Mattock

This is a resend of the original, to fix whitespace issues
and to maybe do a better job with the issue.

The patch below fixes the warning messages from
gcc 4.6.0 and compiling the kernel.
  CC [M]  fs/cifs/cifssmb.o
fs/cifs/cifssmb.c: In function 'CIFSSMBSetFileSize':
fs/cifs/cifssmb.c:4855:8: warning: variable 'data_offset' set but not used
  CC [M]  fs/cifs/cifs_debug.o

  CC [M]  fs/cifs/dir.o
fs/cifs/dir.c: In function 'cifs_lookup':
fs/cifs/dir.c:641:15: warning: variable 'filp' set but not used

  CC [M]  fs/cifs/file.o
fs/cifs/file.c: In function 'cifs_partialpagewrite':
fs/cifs/file.c:1315:23: warning: variable 'pTcon' set but not used


 Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>

---
 fs/cifs/cifssmb.c |    2 +-
 fs/cifs/dir.c     |    3 +--
 fs/cifs/file.c    |    2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
index c65c341..197349c 100644
--- a/fs/cifs/cifssmb.c
+++ b/fs/cifs/cifssmb.c
@@ -4852,7 +4852,7 @@ CIFSSMBSetFileSize(const int xid, struct cifsTconInfo *tcon, __u64 size,
 		   __u16 fid, __u32 pid_of_opener, bool SetAllocation)
 {
 	struct smb_com_transaction2_sfi_req *pSMB  = NULL;
-	char *data_offset;
+	char *data_offset __attribute__((unused));
 	struct file_end_of_file_info *parm_data;
 	int rc = 0;
 	__u16 params, param_offset, offset, byte_count, count;
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index 391816b..b3d1be2 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -638,7 +638,6 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
 	struct cifsTconInfo *pTcon;
 	struct inode *newInode = NULL;
 	char *full_path = NULL;
-	struct file *filp;
 
 	xid = GetXid();
 
@@ -734,7 +733,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
 			direntry->d_op = &cifs_dentry_ops;
 		d_add(direntry, newInode);
 		if (posix_open)
-			filp = lookup_instantiate_filp(nd, direntry, NULL);
+			lookup_instantiate_filp(nd, direntry, NULL);
 		/* since paths are not looked up by component - the parent
 		   directories are presumed to be good here */
 		renew_parental_timestamps(direntry);
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 75541af..73e540b 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1312,7 +1312,7 @@ static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
 	int rc = -EFAULT;
 	int bytes_written = 0;
 	struct cifs_sb_info *cifs_sb;
-	struct cifsTconInfo *pTcon;
+	struct cifsTconInfo *pTcon __attribute__((unused));
 	struct inode *inode;
 	struct cifsFileInfo *open_file;
 
-- 
1.7.1.rc1.21.gf3bd6


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

* Re: [PATCH 3/6 v2]cifs Fix warnings variables set but not used
  2010-06-19 20:47 [PATCH 3/6 v2]cifs Fix warnings variables set but not used Justin P. Mattock
@ 2010-06-20 21:17 ` Jeff Layton
  2010-06-20 22:09   ` Justin P. Mattock
  2010-06-20 22:33   ` Justin P. Mattock
  0 siblings, 2 replies; 6+ messages in thread
From: Jeff Layton @ 2010-06-20 21:17 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: linux-cifs-client, linux-fsdevel, linux-kernel

On Sat, 19 Jun 2010 13:47:07 -0700
"Justin P. Mattock" <justinmattock@gmail.com> wrote:

> This is a resend of the original, to fix whitespace issues
> and to maybe do a better job with the issue.
> 
> The patch below fixes the warning messages from
> gcc 4.6.0 and compiling the kernel.
>   CC [M]  fs/cifs/cifssmb.o
> fs/cifs/cifssmb.c: In function 'CIFSSMBSetFileSize':
> fs/cifs/cifssmb.c:4855:8: warning: variable 'data_offset' set but not used
>   CC [M]  fs/cifs/cifs_debug.o
> 
>   CC [M]  fs/cifs/dir.o
> fs/cifs/dir.c: In function 'cifs_lookup':
> fs/cifs/dir.c:641:15: warning: variable 'filp' set but not used
> 
>   CC [M]  fs/cifs/file.o
> fs/cifs/file.c: In function 'cifs_partialpagewrite':
> fs/cifs/file.c:1315:23: warning: variable 'pTcon' set but not used
> 
> 
>  Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
> 
> ---
>  fs/cifs/cifssmb.c |    2 +-
>  fs/cifs/dir.c     |    3 +--
>  fs/cifs/file.c    |    2 +-
>  3 files changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
> index c65c341..197349c 100644
> --- a/fs/cifs/cifssmb.c
> +++ b/fs/cifs/cifssmb.c
> @@ -4852,7 +4852,7 @@ CIFSSMBSetFileSize(const int xid, struct cifsTconInfo *tcon, __u64 size,
>  		   __u16 fid, __u32 pid_of_opener, bool SetAllocation)
>  {
>  	struct smb_com_transaction2_sfi_req *pSMB  = NULL;
> -	char *data_offset;
> +	char *data_offset __attribute__((unused));

It would be better to just remove this variable and the place where it
gets set.

>  	struct file_end_of_file_info *parm_data;
>  	int rc = 0;
>  	__u16 params, param_offset, offset, byte_count, count;
> diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
> index 391816b..b3d1be2 100644
> --- a/fs/cifs/dir.c
> +++ b/fs/cifs/dir.c
> @@ -638,7 +638,6 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
>  	struct cifsTconInfo *pTcon;
>  	struct inode *newInode = NULL;
>  	char *full_path = NULL;
> -	struct file *filp;
>  
>  	xid = GetXid();
>  
> @@ -734,7 +733,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
>  			direntry->d_op = &cifs_dentry_ops;
>  		d_add(direntry, newInode);
>  		if (posix_open)
> -			filp = lookup_instantiate_filp(nd, direntry, NULL);
> +			lookup_instantiate_filp(nd, direntry, NULL);

This part of the patch will conflict with some changes that are coming
to this area. With those, "filp" will actually be used. You may want to
wait until Linus pulls the latest fixes from Steve F's tree (or just
base your patch on Steve's tree in the first place).


>  		/* since paths are not looked up by component - the parent
>  		   directories are presumed to be good here */
>  		renew_parental_timestamps(direntry);
> diff --git a/fs/cifs/file.c b/fs/cifs/file.c
> index 75541af..73e540b 100644
> --- a/fs/cifs/file.c
> +++ b/fs/cifs/file.c
> @@ -1312,7 +1312,7 @@ static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
>  	int rc = -EFAULT;
>  	int bytes_written = 0;
>  	struct cifs_sb_info *cifs_sb;
> -	struct cifsTconInfo *pTcon;
> +	struct cifsTconInfo *pTcon __attribute__((unused));

This variable can just be removed (along with the spot where it gets
set later).
 
>  	struct inode *inode;
>  	struct cifsFileInfo *open_file;
>  


-- 
Jeff Layton <jlayton@samba.org>

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

* Re: [PATCH 3/6 v2]cifs Fix warnings variables set but not used
  2010-06-20 21:17 ` Jeff Layton
@ 2010-06-20 22:09   ` Justin P. Mattock
  2010-06-20 22:33   ` Justin P. Mattock
  1 sibling, 0 replies; 6+ messages in thread
From: Justin P. Mattock @ 2010-06-20 22:09 UTC (permalink / raw)
  To: Jeff Layton; +Cc: linux-cifs-client, linux-fsdevel, linux-kernel

On 06/20/2010 02:17 PM, Jeff Layton wrote:
> On Sat, 19 Jun 2010 13:47:07 -0700
> "Justin P. Mattock"<justinmattock@gmail.com>  wrote:
>
>> This is a resend of the original, to fix whitespace issues
>> and to maybe do a better job with the issue.
>>
>> The patch below fixes the warning messages from
>> gcc 4.6.0 and compiling the kernel.
>>    CC [M]  fs/cifs/cifssmb.o
>> fs/cifs/cifssmb.c: In function 'CIFSSMBSetFileSize':
>> fs/cifs/cifssmb.c:4855:8: warning: variable 'data_offset' set but not used
>>    CC [M]  fs/cifs/cifs_debug.o
>>
>>    CC [M]  fs/cifs/dir.o
>> fs/cifs/dir.c: In function 'cifs_lookup':
>> fs/cifs/dir.c:641:15: warning: variable 'filp' set but not used
>>
>>    CC [M]  fs/cifs/file.o
>> fs/cifs/file.c: In function 'cifs_partialpagewrite':
>> fs/cifs/file.c:1315:23: warning: variable 'pTcon' set but not used
>>
>>
>>   Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
>>
>> ---
>>   fs/cifs/cifssmb.c |    2 +-
>>   fs/cifs/dir.c     |    3 +--
>>   fs/cifs/file.c    |    2 +-
>>   3 files changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
>> index c65c341..197349c 100644
>> --- a/fs/cifs/cifssmb.c
>> +++ b/fs/cifs/cifssmb.c
>> @@ -4852,7 +4852,7 @@ CIFSSMBSetFileSize(const int xid, struct cifsTconInfo *tcon, __u64 size,
>>   		   __u16 fid, __u32 pid_of_opener, bool SetAllocation)
>>   {
>>   	struct smb_com_transaction2_sfi_req *pSMB  = NULL;
>> -	char *data_offset;
>> +	char *data_offset __attribute__((unused));
>
> It would be better to just remove this variable and the place where it
> gets set.
>

I'll resend an update patch for cifssmb.c and file.c and just wait until 
dir.c get's updated with the new stuff..

>>   	struct file_end_of_file_info *parm_data;
>>   	int rc = 0;
>>   	__u16 params, param_offset, offset, byte_count, count;
>> diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
>> index 391816b..b3d1be2 100644
>> --- a/fs/cifs/dir.c
>> +++ b/fs/cifs/dir.c
>> @@ -638,7 +638,6 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
>>   	struct cifsTconInfo *pTcon;
>>   	struct inode *newInode = NULL;
>>   	char *full_path = NULL;
>> -	struct file *filp;
>>
>>   	xid = GetXid();
>>
>> @@ -734,7 +733,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
>>   			direntry->d_op =&cifs_dentry_ops;
>>   		d_add(direntry, newInode);
>>   		if (posix_open)
>> -			filp = lookup_instantiate_filp(nd, direntry, NULL);
>> +			lookup_instantiate_filp(nd, direntry, NULL);
>
> This part of the patch will conflict with some changes that are coming
> to this area. With those, "filp" will actually be used. You may want to
> wait until Linus pulls the latest fixes from Steve F's tree (or just
> base your patch on Steve's tree in the first place).
>

I'll just wait then..

>
>>   		/* since paths are not looked up by component - the parent
>>   		   directories are presumed to be good here */
>>   		renew_parental_timestamps(direntry);
>> diff --git a/fs/cifs/file.c b/fs/cifs/file.c
>> index 75541af..73e540b 100644
>> --- a/fs/cifs/file.c
>> +++ b/fs/cifs/file.c
>> @@ -1312,7 +1312,7 @@ static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
>>   	int rc = -EFAULT;
>>   	int bytes_written = 0;
>>   	struct cifs_sb_info *cifs_sb;
>> -	struct cifsTconInfo *pTcon;
>> +	struct cifsTconInfo *pTcon __attribute__((unused));
>
> This variable can just be removed (along with the spot where it gets
> set later).
>
>>   	struct inode *inode;
>>   	struct cifsFileInfo *open_file;
>>
>
>

cheers,

Justin P. Mattock

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

* Re: [PATCH 3/6 v2]cifs Fix warnings variables set but not used
  2010-06-20 21:17 ` Jeff Layton
  2010-06-20 22:09   ` Justin P. Mattock
@ 2010-06-20 22:33   ` Justin P. Mattock
  2010-06-21  0:28     ` Jeff Layton
  1 sibling, 1 reply; 6+ messages in thread
From: Justin P. Mattock @ 2010-06-20 22:33 UTC (permalink / raw)
  To: Jeff Layton; +Cc: linux-cifs-client, linux-fsdevel, linux-kernel


>>   		/* since paths are not looked up by component - the parent
>>   		   directories are presumed to be good here */
>>   		renew_parental_timestamps(direntry);
>> diff --git a/fs/cifs/file.c b/fs/cifs/file.c
>> index 75541af..73e540b 100644
>> --- a/fs/cifs/file.c
>> +++ b/fs/cifs/file.c
>> @@ -1312,7 +1312,7 @@ static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
>>   	int rc = -EFAULT;
>>   	int bytes_written = 0;
>>   	struct cifs_sb_info *cifs_sb;
>> -	struct cifsTconInfo *pTcon;
>> +	struct cifsTconInfo *pTcon __attribute__((unused));
>
> This variable can just be removed (along with the spot where it gets
> set later).
>
>>   	struct inode *inode;
>>   	struct cifsFileInfo *open_file;
>>
>
>

one thing I want to make sure of before sending this out, is with file.c
if I remove *pTcon another warning shows up:

   CC [M]  fs/cifs/file.o
fs/cifs/file.c: In function 'cifs_partialpagewrite':
fs/cifs/file.c:1314:23: warning: variable 'cifs_sb' set but not used

with the original patch I had removed this as well, should I do this or 
is this not a good idea?

Justin P. Mattock

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

* Re: [PATCH 3/6 v2]cifs Fix warnings variables set but not used
  2010-06-20 22:33   ` Justin P. Mattock
@ 2010-06-21  0:28     ` Jeff Layton
  2010-06-21  1:03       ` Justin P. Mattock
  0 siblings, 1 reply; 6+ messages in thread
From: Jeff Layton @ 2010-06-21  0:28 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: linux-cifs-client, linux-fsdevel, linux-kernel

On Sun, 20 Jun 2010 15:33:54 -0700
"Justin P. Mattock" <justinmattock@gmail.com> wrote:

> 
> >>   		/* since paths are not looked up by component - the parent
> >>   		   directories are presumed to be good here */
> >>   		renew_parental_timestamps(direntry);
> >> diff --git a/fs/cifs/file.c b/fs/cifs/file.c
> >> index 75541af..73e540b 100644
> >> --- a/fs/cifs/file.c
> >> +++ b/fs/cifs/file.c
> >> @@ -1312,7 +1312,7 @@ static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
> >>   	int rc = -EFAULT;
> >>   	int bytes_written = 0;
> >>   	struct cifs_sb_info *cifs_sb;
> >> -	struct cifsTconInfo *pTcon;
> >> +	struct cifsTconInfo *pTcon __attribute__((unused));
> >
> > This variable can just be removed (along with the spot where it gets
> > set later).
> >
> >>   	struct inode *inode;
> >>   	struct cifsFileInfo *open_file;
> >>
> >
> >
> 
> one thing I want to make sure of before sending this out, is with file.c
> if I remove *pTcon another warning shows up:
> 
>    CC [M]  fs/cifs/file.o
> fs/cifs/file.c: In function 'cifs_partialpagewrite':
> fs/cifs/file.c:1314:23: warning: variable 'cifs_sb' set but not used
> 
> with the original patch I had removed this as well, should I do this or 
> is this not a good idea?

If it's not used, remove it...

-- 
Jeff Layton <jlayton@samba.org>

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

* Re: [PATCH 3/6 v2]cifs Fix warnings variables set but not used
  2010-06-21  0:28     ` Jeff Layton
@ 2010-06-21  1:03       ` Justin P. Mattock
  0 siblings, 0 replies; 6+ messages in thread
From: Justin P. Mattock @ 2010-06-21  1:03 UTC (permalink / raw)
  To: Jeff Layton; +Cc: linux-cifs-client, linux-fsdevel, linux-kernel

On 06/20/2010 05:28 PM, Jeff Layton wrote:
> On Sun, 20 Jun 2010 15:33:54 -0700
> "Justin P. Mattock"<justinmattock@gmail.com>  wrote:
>
>>
>>>>    		/* since paths are not looked up by component - the parent
>>>>    		   directories are presumed to be good here */
>>>>    		renew_parental_timestamps(direntry);
>>>> diff --git a/fs/cifs/file.c b/fs/cifs/file.c
>>>> index 75541af..73e540b 100644
>>>> --- a/fs/cifs/file.c
>>>> +++ b/fs/cifs/file.c
>>>> @@ -1312,7 +1312,7 @@ static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to)
>>>>    	int rc = -EFAULT;
>>>>    	int bytes_written = 0;
>>>>    	struct cifs_sb_info *cifs_sb;
>>>> -	struct cifsTconInfo *pTcon;
>>>> +	struct cifsTconInfo *pTcon __attribute__((unused));
>>>
>>> This variable can just be removed (along with the spot where it gets
>>> set later).
>>>
>>>>    	struct inode *inode;
>>>>    	struct cifsFileInfo *open_file;
>>>>
>>>
>>>
>>
>> one thing I want to make sure of before sending this out, is with file.c
>> if I remove *pTcon another warning shows up:
>>
>>     CC [M]  fs/cifs/file.o
>> fs/cifs/file.c: In function 'cifs_partialpagewrite':
>> fs/cifs/file.c:1314:23: warning: variable 'cifs_sb' set but not used
>>
>> with the original patch I had removed this as well, should I do this or
>> is this not a good idea?
>
> If it's not used, remove it...
>

alright, I'll send those two, then go from there.

Justin P. Mttock

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

end of thread, other threads:[~2010-06-21  1:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-19 20:47 [PATCH 3/6 v2]cifs Fix warnings variables set but not used Justin P. Mattock
2010-06-20 21:17 ` Jeff Layton
2010-06-20 22:09   ` Justin P. Mattock
2010-06-20 22:33   ` Justin P. Mattock
2010-06-21  0:28     ` Jeff Layton
2010-06-21  1:03       ` Justin P. Mattock

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.