All of lore.kernel.org
 help / color / mirror / Atom feed
* Subject: [PATCH] mount.cifs: remove redundant error assignment
@ 2010-08-04  7:01 Suresh Jayaraman
       [not found] ` <4C591054.1070007-l3A5Bk7waGM@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Suresh Jayaraman @ 2010-08-04  7:01 UTC (permalink / raw)
  To: Jeff Layton, Steve French; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA


... as it is done anyway at add_mtab_exit.

Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
---
 mount.cifs.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/mount.cifs.c b/mount.cifs.c
index 9f04261..49fdd08 100644
--- a/mount.cifs.c
+++ b/mount.cifs.c
@@ -1513,7 +1513,6 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
 	rc = lock_mtab();
 	if (rc) {
 		fprintf(stderr, "cannot lock mtab");
-		rc = EX_FILEIO;
 		goto add_mtab_exit;
 	}
 
@@ -1521,7 +1520,6 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
 	if (!pmntfile) {
 		fprintf(stderr, "could not update mount table\n");
 		unlock_mtab();
-		rc = EX_FILEIO;
 		goto add_mtab_exit;
 	}

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

* Re: Subject: [PATCH] mount.cifs: remove redundant error assignment
       [not found] ` <4C591054.1070007-l3A5Bk7waGM@public.gmane.org>
@ 2010-08-04 10:53   ` Jeff Layton
       [not found]     ` <20100804065338.6fa9d16b-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Jeff Layton @ 2010-08-04 10:53 UTC (permalink / raw)
  To: Suresh Jayaraman; +Cc: Steve French, linux-cifs-u79uwXL29TY76Z2rM5mHXA

On Wed, 04 Aug 2010 12:31:40 +0530
Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote:

> 
> ... as it is done anyway at add_mtab_exit.
> 
> Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
> ---
>  mount.cifs.c |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)
> 
> diff --git a/mount.cifs.c b/mount.cifs.c
> index 9f04261..49fdd08 100644
> --- a/mount.cifs.c
> +++ b/mount.cifs.c
> @@ -1513,7 +1513,6 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
>  	rc = lock_mtab();
>  	if (rc) {
>  		fprintf(stderr, "cannot lock mtab");
> -		rc = EX_FILEIO;
>  		goto add_mtab_exit;
>  	}
>  
		^^^^^^^^^^^
This seems to be fine.

> @@ -1521,7 +1520,6 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
>  	if (!pmntfile) {
>  		fprintf(stderr, "could not update mount table\n");
>  		unlock_mtab();
> -		rc = EX_FILEIO;
>  		goto add_mtab_exit;
>  	}
		^^^^^^^^^^^
This looks wrong. If we don't set rc here, then it'll still be 0 and
the code at add_mtab_exit won't set it to EX_FILEIO.

-- 
Jeff Layton <jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

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

* Re: Subject: [PATCH] mount.cifs: remove redundant error assignment
       [not found]     ` <20100804065338.6fa9d16b-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
@ 2010-08-04 11:25       ` Suresh Jayaraman
       [not found]         ` <4C594E3E.2000903-l3A5Bk7waGM@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Suresh Jayaraman @ 2010-08-04 11:25 UTC (permalink / raw)
  To: Jeff Layton; +Cc: Steve French, linux-cifs-u79uwXL29TY76Z2rM5mHXA

On 08/04/2010 04:23 PM, Jeff Layton wrote:
> On Wed, 04 Aug 2010 12:31:40 +0530
> Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote:
> 
>> @@ -1521,7 +1520,6 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
>>  	if (!pmntfile) {
>>  		fprintf(stderr, "could not update mount table\n");
>>  		unlock_mtab();
>> -		rc = EX_FILEIO;
>>  		goto add_mtab_exit;
>>  	}
> 		^^^^^^^^^^^
> This looks wrong. If we don't set rc here, then it'll still be 0 and
> the code at add_mtab_exit won't set it to EX_FILEIO.
> 

My bad.. I guess it's due to the effect of working with multiple code versions..

Here's another version which is slightly different.. 


From: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
Subject: [PATCH] mount.cifs: remove redundant error assignment

Avoid setting error code twice by moving error handling out of add_mtab_exit
block. We already set error code and report error in other places.

Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
---
 mount.cifs.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/mount.cifs.c b/mount.cifs.c
index 9f04261..3623e76 100644
--- a/mount.cifs.c
+++ b/mount.cifs.c
@@ -1554,16 +1554,16 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
 	mountent.mnt_freq = 0;
 	mountent.mnt_passno = 0;
 	rc = addmntent(pmntfile, &mountent);
+	if (rc) {
+		fprintf(stderr, "unable to add mount entry to mtab\n");
+		rc = EX_FILEIO;
+	}
 	endmntent(pmntfile);
 	unlock_mtab();
 	SAFE_FREE(mountent.mnt_opts);
 add_mtab_exit:
 	toggle_dac_capability(1, 0);
 	sigprocmask(SIG_SETMASK, &oldmask, NULL);
-	if (rc) {
-		fprintf(stderr, "unable to add mount entry to mtab\n");
-		rc = EX_FILEIO;
-	}
 
 	return rc;
 }

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

* Re: Subject: [PATCH] mount.cifs: remove redundant error assignment
       [not found]         ` <4C594E3E.2000903-l3A5Bk7waGM@public.gmane.org>
@ 2010-08-04 11:59           ` Jeff Layton
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Layton @ 2010-08-04 11:59 UTC (permalink / raw)
  To: Suresh Jayaraman; +Cc: Steve French, linux-cifs-u79uwXL29TY76Z2rM5mHXA

On Wed, 04 Aug 2010 16:55:50 +0530
Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote:

> On 08/04/2010 04:23 PM, Jeff Layton wrote:
> > On Wed, 04 Aug 2010 12:31:40 +0530
> > Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote:
> > 
> >> @@ -1521,7 +1520,6 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
> >>  	if (!pmntfile) {
> >>  		fprintf(stderr, "could not update mount table\n");
> >>  		unlock_mtab();
> >> -		rc = EX_FILEIO;
> >>  		goto add_mtab_exit;
> >>  	}
> > 		^^^^^^^^^^^
> > This looks wrong. If we don't set rc here, then it'll still be 0 and
> > the code at add_mtab_exit won't set it to EX_FILEIO.
> > 
> 
> My bad.. I guess it's due to the effect of working with multiple code versions..
> 
> Here's another version which is slightly different.. 
> 
> 
> From: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
> Subject: [PATCH] mount.cifs: remove redundant error assignment
> 
> Avoid setting error code twice by moving error handling out of add_mtab_exit
> block. We already set error code and report error in other places.
> 
> Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
> ---
>  mount.cifs.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/mount.cifs.c b/mount.cifs.c
> index 9f04261..3623e76 100644
> --- a/mount.cifs.c
> +++ b/mount.cifs.c
> @@ -1554,16 +1554,16 @@ add_mtab(char *devname, char *mountpoint, unsigned long flags, const char *fstyp
>  	mountent.mnt_freq = 0;
>  	mountent.mnt_passno = 0;
>  	rc = addmntent(pmntfile, &mountent);
> +	if (rc) {
> +		fprintf(stderr, "unable to add mount entry to mtab\n");
> +		rc = EX_FILEIO;
> +	}
>  	endmntent(pmntfile);
>  	unlock_mtab();
>  	SAFE_FREE(mountent.mnt_opts);
>  add_mtab_exit:
>  	toggle_dac_capability(1, 0);
>  	sigprocmask(SIG_SETMASK, &oldmask, NULL);
> -	if (rc) {
> -		fprintf(stderr, "unable to add mount entry to mtab\n");
> -		rc = EX_FILEIO;
> -	}
>  
>  	return rc;
>  }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

That looks more reasonable...committed.

-- 
Jeff Layton <jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

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

end of thread, other threads:[~2010-08-04 11:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-04  7:01 Subject: [PATCH] mount.cifs: remove redundant error assignment Suresh Jayaraman
     [not found] ` <4C591054.1070007-l3A5Bk7waGM@public.gmane.org>
2010-08-04 10:53   ` Jeff Layton
     [not found]     ` <20100804065338.6fa9d16b-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
2010-08-04 11:25       ` Suresh Jayaraman
     [not found]         ` <4C594E3E.2000903-l3A5Bk7waGM@public.gmane.org>
2010-08-04 11:59           ` Jeff Layton

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.